From 074173b3750d28003a49725a9b3222d51a5577e6 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Fri, 6 Nov 2020 12:33:36 +0530
Subject: [PATCH 01/13] #10518-webapp: Support the new appservice Managed
certificates
---
.../ScenarioTests/CertificatesTests.cs | 57 +
.../ScenarioTests/CertificatesTests.ps1 | 142 +
.../TestNewAzWebAppManagedCertificate.json | 974 ++++++
...tNewAzWebAppManagedCertificateForSlot.json | 974 ++++++
...ebAppManagedCertificateWithSSLBinding.json | 2930 +++++++++++++++++
.../TestRemoveAzWebAppManagedCertificate.json | 1310 ++++++++
src/Websites/Websites.sln | 14 +-
src/Websites/Websites/Az.Websites.psd1 | 3 +-
src/Websites/Websites/ChangeLog.md | 4 +
.../NewAzWebAppManagedCertificate.cs | 110 +
.../RemoveAzWebAppManagedCertificate.cs | 90 +
.../RemoveAzureWebAppSSLBinding.cs | 4 +-
.../help/New-AzWebAppManagedCertificate.md | 163 +
.../help/Remove-AzWebAppManagedCertificate.md | 138 +
14 files changed, 6902 insertions(+), 11 deletions(-)
create mode 100644 src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs
create mode 100644 src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
create mode 100644 src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
create mode 100644 src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
create mode 100644 src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
create mode 100644 src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
create mode 100644 src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
create mode 100644 src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
create mode 100644 src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
create mode 100644 src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs
new file mode 100644
index 000000000000..073efdccb1b9
--- /dev/null
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs
@@ -0,0 +1,57 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.ServiceManagement.Common.Models;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Microsoft.WindowsAzure.Commands.Test.Utilities.Common;
+using Xunit;
+using Xunit.Abstractions;
+
+namespace Microsoft.Azure.Commands.Websites.Test.ScenarioTests
+{
+ public class CertificatesTests : RMTestBase
+ {
+ public XunitTracingInterceptor _logger;
+ public CertificatesTests(ITestOutputHelper output)
+ {
+ _logger = new XunitTracingInterceptor(output);
+ XunitTracingInterceptor.AddToContext(_logger);
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestNewAzWebAppManagedCertificate()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppManagedCertificate");
+ }
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestNewAzWebAppManagedCertificateWithSSLBinding()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppManagedCertificateWithSSLBinding");
+ }
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestNewAzWebAppManagedCertificateForSlot()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppManagedCertificateForSlot");
+ }
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRemoveAzWebAppManagedCertificate()
+ {
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-RemoveAzWebAppManagedCertificate");
+ }
+ }
+}
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
new file mode 100644
index 000000000000..6fc7a854f31f
--- /dev/null
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
@@ -0,0 +1,142 @@
+# ----------------------------------------------------------------------------------
+#
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+<#
+.SYNOPSIS
+Tests creating a new managed cert for app.
+#>
+function Test-NewAzWebAppManagedCertificate
+{
+ $rgname = "RG-W-CUS"
+ $appname = "managedcerts"
+ $slot = "testslot"
+ $prodHostname = "www.managedcerts.net"
+ $slotHostname = "testslot.adorenow.net"
+ $thumbprint=""
+
+ try{
+
+ $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
+ $thumbprint=$cert.ThumbPrint
+
+ # Assert
+ Assert-AreEqual $prodHostname $cert.SubjectName
+
+ }
+ finally{
+
+ # Cleanup
+ Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ }
+}
+
+<#
+.SYNOPSIS
+Tests creating a new managed cert for app with SSL binding.
+#>
+function Test-NewAzWebAppManagedCertificateWithSSLBinding
+{
+ $rgname = "RG-W-CUS"
+ $appname = "managedcerts"
+ $slot = "testslot"
+ $prodHostname = "www.managedcerts.net"
+ $slotHostname = "testslot.adorenow.net"
+ $thumbprint=""
+
+ try{
+
+ $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -AddCertBinding
+ $thumbprint=$cert.ThumbPrint
+
+ # Assert
+ Assert-AreEqual $prodHostname $cert.SubjectName
+
+ #Assert
+ $getResult = Get-AzWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname
+ Assert-AreEqual 1 $getResult.Count
+ $currentHostNames = $getResult | Select -expand Name
+ Assert-True { $currentHostNames -contains $prodHostname }
+ $getResult = Get-AzWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname
+ Assert-AreEqual $getResult.Name $prodHostname
+
+ }
+ finally{
+
+ # Cleanup
+ Remove-AzWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Force
+ Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ }
+}
+
+<#
+.SYNOPSIS
+Tests creating a new managed certfor slot.
+#>
+function Test-NewAzWebAppManagedCertificateForSlot
+{
+
+ $rgname = "RG-W-CUS"
+ $appname = "managedcerts"
+ $slot = "sit"
+ $slotHostname = "www.managedcerts1.org"
+ $thumbprint=""
+
+ try{
+
+ $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot
+ $thumbprint=$cert.ThumbPrint
+
+ # Assert
+ Assert-AreEqual $slotHostname $cert.SubjectName
+
+ }
+ finally{
+
+ # Cleanup
+ Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot -ThumbPrint $thumbprint
+ }
+}
+
+<#
+.SYNOPSIS
+Tests removing a managed cert.
+#>
+function Test-RemoveAzWebAppManagedCertificate
+{
+
+ $rgname = "RG-W-CUS"
+ $appname = "managedcerts"
+ $prodHostname = "www.managedcerts.net"
+ $thumbprint=""
+
+ try{
+
+ $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
+ $thumbprint=$cert.ThumbPrint
+
+ # Assert
+ Assert-AreEqual $prodHostname $cert.SubjectName
+
+ Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+
+ $certificate = Get-AzWebAppCertificate -Thumbprint $thumbprint
+
+ #Assert
+ $certificate.count -eq 0
+
+ }
+ finally{
+
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
new file mode 100644
index 000000000000..04c55bc23a8e
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
@@ -0,0 +1,974 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f2d8985-4a12-470a-aece-35e6af3d2e65"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B408765205F5\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1aeacab6-bb82-49b0-a273-87862b5bf3d7"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "85ecef0d-eb7a-4620-91c7-2476dccb6d99"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065537Z:85ecef0d-eb7a-4620-91c7-2476dccb6d99"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:55:37 GMT"
+ ],
+ "Content-Length": [
+ "5704"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8f059224-1fff-4c06-8481-9643f4b2bd81"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B408765205F5\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "214d1b2a-ed80-46bb-851d-a2c89286fbf7"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "e393334a-7875-4055-847c-b86261b031f9"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065609Z:e393334a-7875-4055-847c-b86261b031f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:08 GMT"
+ ],
+ "Content-Length": [
+ "5704"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6fffa2b9-4dde-427c-9ebc-9b981c5b2e19"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f6175474-93ea-47f8-ae34-6ad58de2d7e5"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa5e825d-d2ae-434d-b6ba-62a00f3c1f34"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065538Z:fa5e825d-d2ae-434d-b6ba-62a00f3c1f34"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:55:38 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "032a62c0-8395-453b-821f-f13f5f055b3d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "23aec2f4-7f74-4aee-bf4f-15d788cac78f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3f0d134-633b-4956-bd1f-fd0118ee30da"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065614Z:a3f0d134-633b-4956-bd1f-fd0118ee30da"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:14 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de4a5053-4cae-4f79-8f8a-8dff93c95922"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91def244-9fb5-4e8f-b630-72f592378e4f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e982364-69d6-431c-8c58-0f85ac60703a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065538Z:0e982364-69d6-431c-8c58-0f85ac60703a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:55:38 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "13a3e01e-70ca-4ec4-9c34-4f6c605f8a85"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f55d042-4f13-417a-8f8d-0c91933ca6e2"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ea84a0c-69a4-4db8-9338-deed9cb42e40"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065616Z:1ea84a0c-69a4-4db8-9338-deed9cb42e40"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:15 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f633e530-868f-4f3f-bfea-3775fcad8a0d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a94ad93e-5aa6-4750-bfc9-13c7e196da62"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3c8017a-1975-463e-af50-b4b987b2cfec"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065539Z:e3c8017a-1975-463e-af50-b4b987b2cfec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:55:39 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "330daaab-bd84-40db-86e9-0244c0cc1b51"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e38e08d0-362f-4a84-a682-a7678250c3d5"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "881f37eb-c8ee-436d-9862-abdc448f8d71"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065616Z:881f37eb-c8ee-436d-9862-abdc448f8d71"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:16 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "903d6acc-3ad1-4a57-9005-a65394195838"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "33fa1e7b-153c-4b03-8052-7069f185900c"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "930e3439-2b8a-4776-9a9e-a311a077125d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065540Z:930e3439-2b8a-4776-9a9e-a311a077125d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:55:40 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6a06c311-a140-4f32-904d-cbe579cf022d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "be779d9a-59dc-4c0d-aacb-d570d3344f9a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd617b3b-2606-48ab-9921-b126bbad3673"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065617Z:dd617b3b-2606-48ab-9921-b126bbad3673"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:16 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "54405c8d-8ac2-4ee1-b9c5-afb2bf4b4154"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "269"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "33969380-7555-45b6-87bb-3d0f9e31633c"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f1776b0-cac3-45c2-8acf-2730eb20cbd8"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065603Z:8f1776b0-cac3-45c2-8acf-2730eb20cbd8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:02 GMT"
+ ],
+ "Content-Length": [
+ "1006"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"38B2EC97EFBCEC8904EF6B624BC3BDA1109C1633\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"891de99f-e798-4fa3-aa72-f04066d35c10\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8ce28b1-1bae-4fb7-aefd-7816f64d751b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "800512ea-c754-4e82-b417-8372e4218f9b"
+ ],
+ "x-ms-correlation-request-id": [
+ "800512ea-c754-4e82-b417-8372e4218f9b"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065617Z:800512ea-c754-4e82-b417-8372e4218f9b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "243"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "954221e4-f235-4a46-a397-df4e4f14f7b0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "65cae3da-90bf-4615-9262-9010399d6474"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b78ae91-f957-4410-a60d-38ce9b5ec10d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065617Z:4b78ae91-f957-4410-a60d-38ce9b5ec10d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:17 GMT"
+ ],
+ "Content-Length": [
+ "909"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"38B2EC97EFBCEC8904EF6B624BC3BDA1109C1633\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "437c6ef1-de23-4fae-a93f-ed5cd4d44b9c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "95d469c3-8320-4239-95b9-710219d6f277"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "7dc63d11-5172-4f0a-8947-b7c3a4dc1e6d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065622Z:7dc63d11-5172-4f0a-8947-b7c3a4dc1e6d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:21 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
new file mode 100644
index 000000000000..d3313f2956e9
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
@@ -0,0 +1,974 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ab44b2a-1f53-43b4-8487-109e88f10cdb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6AC15FF39A42B\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e9d014a0-fe4d-4330-9c9d-6f4fbd0cd551"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "394f54b0-ee4f-47ea-b74e-a2e4c8fb0e86"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065725Z:394f54b0-ee4f-47ea-b74e-a2e4c8fb0e86"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:25 GMT"
+ ],
+ "Content-Length": [
+ "5500"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d439d5d5-a6d3-4574-b099-eed7d304cd58"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6AC15FF39A42B\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ffe69bb6-8eac-41e0-932c-4b048a1d1846"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf369ea1-b333-43b8-bf2e-2e649dfa5277"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065750Z:cf369ea1-b333-43b8-bf2e-2e649dfa5277"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:49 GMT"
+ ],
+ "Content-Length": [
+ "5500"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f0373740-5228-4b35-80e9-b766c6cae095"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f1acf326-3324-4467-8539-fc6eb1d1eb07"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0c359ca-1c4d-4d0c-ade4-db4de7ab5057"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065726Z:a0c359ca-1c4d-4d0c-ade4-db4de7ab5057"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:25 GMT"
+ ],
+ "Content-Length": [
+ "3559"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1ceacb69-3ab6-40b8-8fd1-e5d5a501f8c5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a7b7f6ed-dc15-48f3-83eb-3878fb5037cf"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "588ccbfa-b7c7-4da8-b306-fcb1558747d6"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065750Z:588ccbfa-b7c7-4da8-b306-fcb1558747d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:50 GMT"
+ ],
+ "Content-Length": [
+ "3559"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b8ea99bc-a9d8-4a51-88fc-1bf6f675d90a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f28b95da-d223-4caf-9b94-b88dfe60e172"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e8d8ed2-56f0-4c5c-8792-66e933a1d83f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065726Z:9e8d8ed2-56f0-4c5c-8792-66e933a1d83f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:26 GMT"
+ ],
+ "Content-Length": [
+ "711"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1abbf24b-8432-4b45-beac-cf55ffe0979d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c10028b2-51a0-4c0b-952e-aa28f88a83e5"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "6367c847-70fd-4300-a073-1c35444feba0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065751Z:6367c847-70fd-4300-a073-1c35444feba0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:50 GMT"
+ ],
+ "Content-Length": [
+ "711"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "76fd540e-6531-4a83-8106-f940be5166ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "40c863f8-93bf-40b6-9193-7ca8ec0f2e44"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf0d865a-9898-4ebf-bdde-fdc9b5d92539"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065727Z:cf0d865a-9898-4ebf-bdde-fdc9b5d92539"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:26 GMT"
+ ],
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "da09edf2-2034-4b1f-80c4-94a65419f926"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "579a793d-1c62-4462-90fe-3684d2548a96"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8ac2f7b-6e9e-4ad4-a886-545537ff6424"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065751Z:e8ac2f7b-6e9e-4ad4-a886-545537ff6424"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:50 GMT"
+ ],
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "62105d13-438f-476b-a317-76de07994b29"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a5983ce4-8d28-435d-aa6b-954b4f6df30a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "57419aa3-fab1-444c-b9b8-c2850ec9a65e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065727Z:57419aa3-fab1-444c-b9b8-c2850ec9a65e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:27 GMT"
+ ],
+ "Content-Length": [
+ "262"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03675fc8-cfe1-422f-a143-c3a47fd59e9e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "79d73d66-ea91-47e0-996b-d98f9261119a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "889f908f-510e-4df9-b35a-a9a2fecb9767"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065753Z:889f908f-510e-4df9-b35a-a9a2fecb9767"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:52 GMT"
+ ],
+ "Content-Length": [
+ "262"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts1.org\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6d7c7940-ce48-48ca-a5a7-d014a868e1b1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "270"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8bf50e57-6f86-4e35-bac7-e7dc203a3b85"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "be77e4b3-e164-4ca5-b5bf-1d106ab9f94a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065749Z:be77e4b3-e164-4ca5-b5bf-1d106ab9f94a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:48 GMT"
+ ],
+ "Content-Length": [
+ "1010"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"71D2E8CF38698FC02554CAF2730E6A7EC72EC4DA\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"d6f2588a-22b6-4a3c-bbf9-a4d4865f46fe\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6b00b353-005b-444b-ad11-b8f9085b7f94"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "7debe1a2-331c-401e-bc10-f352b2a46ed5"
+ ],
+ "x-ms-correlation-request-id": [
+ "7debe1a2-331c-401e-bc10-f352b2a46ed5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065753Z:7debe1a2-331c-401e-bc10-f352b2a46ed5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:52 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "245"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "eb08e00d-098b-4990-9531-b7db3ea9ee06"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5054d868-85b2-4577-8b62-3cc1f0a85d78"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c8801b2-9714-4e76-9542-caed49959f77"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065755Z:4c8801b2-9714-4e76-9542-caed49959f77"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:54 GMT"
+ ],
+ "Content-Length": [
+ "914"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"71D2E8CF38698FC02554CAF2730E6A7EC72EC4DA\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "feb3e9e4-c927-49ce-a7fd-b19f18c051e3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bf860105-4357-40f8-a537-048e6c944604"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "c597af42-2700-40e3-87ea-33590a883169"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065759Z:c597af42-2700-40e3-87ea-33590a883169"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:59 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
new file mode 100644
index 000000000000..966e9bdd567a
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
@@ -0,0 +1,2930 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ca829d4-cb2d-4c6d-b089-5e6a704422e5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B408765205F5\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0d92b9c6-0695-4157-b438-40e363f7beac"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "284dedd3-de5d-4c4e-9690-f420d1e271e1"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065627Z:284dedd3-de5d-4c4e-9690-f420d1e271e1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:26 GMT"
+ ],
+ "Content-Length": [
+ "5704"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a4f53b86-79ea-41e5-9366-e4ca9cf2d9a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B408765205F5\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ce7e4de4-5706-4499-af49-787c42b10d9a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "dcdbd4ce-325c-44ab-b014-da650d4866ef"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065652Z:dcdbd4ce-325c-44ab-b014-da650d4866ef"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:52 GMT"
+ ],
+ "Content-Length": [
+ "5704"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2f83d6e-0213-43c3-b90c-8293913a8520"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A03C5A9CB\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "80603377-a7b3-4035-9f36-eb25cf7262c9"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "29fc0666-ece6-4f0d-807f-102b14c7baf2"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065659Z:29fc0666-ece6-4f0d-807f-102b14c7baf2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:58 GMT"
+ ],
+ "Content-Length": [
+ "5744"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0b7122ee-6e00-4172-949b-6c256add4ba9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A03C5A9CB\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69a7d291-eb56-4a09-b992-e0fd0c32d364"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "32501195-2a5b-43ad-8bb8-35d54f889394"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065701Z:32501195-2a5b-43ad-8bb8-35d54f889394"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:01 GMT"
+ ],
+ "Content-Length": [
+ "5744"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aec057e3-ec70-47cb-b91f-fe19a3790596"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A03C5A9CB\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3e892615-bd75-4ec7-b75f-e5c840a979af"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbb143c7-e3fb-4953-8347-269135a1f972"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065703Z:cbb143c7-e3fb-4953-8347-269135a1f972"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:03 GMT"
+ ],
+ "Content-Length": [
+ "5744"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de11c6ea-c7b5-47ab-ac5a-bffbef5dd138"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A03C5A9CB\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "089ccabf-88f5-4330-87f9-3a73f6d29910"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "15072882-8feb-430d-9921-b09af84285d5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065706Z:15072882-8feb-430d-9921-b09af84285d5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:05 GMT"
+ ],
+ "Content-Length": [
+ "5744"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a105a87c-00d9-43bc-8789-3cbea81adef2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A0C725360\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "971b4664-c089-4ba2-b3fe-b98215fec8b3"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1d86043-9e4b-4e00-8535-8abd4ff0689a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065718Z:f1d86043-9e4b-4e00-8535-8abd4ff0689a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:18 GMT"
+ ],
+ "Content-Length": [
+ "5699"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "81c45d96-e7d8-4454-bc5c-41b4f06c8ec8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "73794f96-e3dd-4627-9887-6f0df9db8630"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ac4abfc-5d53-417e-9c77-efdbeac9a479"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065628Z:1ac4abfc-5d53-417e-9c77-efdbeac9a479"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:27 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6681a3e4-748d-4993-9d67-c5044ec4f441"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "280337ca-e04e-40d0-a885-9dea627b8cbc"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "c26dc375-9e73-4afc-83c4-a7d1862e80d3"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065653Z:c26dc375-9e73-4afc-83c4-a7d1862e80d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:52 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6c4d0f75-6c10-4222-9a8b-5bd6c4312317"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b0e531b8-60fc-4b6f-93be-39ec3d5e9723"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "35b555f8-bed2-4028-b5ce-caa37a8499ec"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065659Z:35b555f8-bed2-4028-b5ce-caa37a8499ec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:59 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dd2ab97f-1684-4f01-ae0c-170b9686a13b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8d75f273-7355-4732-a381-3ee6a66c408f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "18399c56-0559-4485-b4ca-fc58edac93f1"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065701Z:18399c56-0559-4485-b4ca-fc58edac93f1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:01 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a98b3ec4-f753-417c-9b6d-09323657d329"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e1c5a676-c3e1-436e-b47e-1dc36c55029e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "37f7a7b8-e7a5-4b43-9f7c-1f5c83f6f728"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065704Z:37f7a7b8-e7a5-4b43-9f7c-1f5c83f6f728"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:04 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5ed5c6f9-7b06-43ae-b2e6-8d6881190e84"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "133f58ea-cd32-4d2f-9447-0b83e1aa6d56"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ee722eb-1de4-4f31-8b18-b78b27d35c8b"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065706Z:8ee722eb-1de4-4f31-8b18-b78b27d35c8b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:06 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a062b04d-c79e-4d6e-85e2-f76e81e10770"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a35cc1ad-ade7-4f64-a7f1-04b4841678ff"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "27734d0e-5f39-46f2-9249-9b3c8a365bd5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065718Z:27734d0e-5f39-46f2-9249-9b3c8a365bd5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:18 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f2e1b6ad-f6ba-4200-ba64-29a3b3123a3c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e7ebfa28-de74-4cdf-9505-7af01486399c"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "f34e1c90-c87c-4f74-a92c-2f94440d0fcb"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065628Z:f34e1c90-c87c-4f74-a92c-2f94440d0fcb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:28 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4ad03b23-a419-416b-bdf3-d5f8b2df52e1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "62b1131a-7410-4b2d-ae2c-9d82dfc9cb5f"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "65a4460a-1fb6-48e4-9b00-9153b21534ed"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065653Z:65a4460a-1fb6-48e4-9b00-9153b21534ed"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:53 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1d76da12-bea0-453f-9ec7-c6f95b1b16a4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a71a4920-5335-4665-8f3d-ad4f82d0385e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c2b4332-9067-4eaa-a28d-386641e3154e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065700Z:7c2b4332-9067-4eaa-a28d-386641e3154e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:59 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1350fb13-d850-445c-8521-e6ded8ea8328"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "498a7014-e9ec-402f-90be-71696f740814"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "3616773a-f191-41b2-bfdf-066a28ce355d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065702Z:3616773a-f191-41b2-bfdf-066a28ce355d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:02 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ab1d4085-4468-44f8-8537-5eb83c212ade"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5e959f48-c7a7-4c01-9798-1f175ec44f33"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b031dbc-9491-4b0e-ba09-b10267f61193"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065705Z:1b031dbc-9491-4b0e-ba09-b10267f61193"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:04 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b1330ae-93e2-4dcb-992c-8892cdc985ba"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a95e5abd-1155-494a-8580-3af60801a3f7"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "214489c5-478d-4a96-bf10-70b6538a2a55"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065707Z:214489c5-478d-4a96-bf10-70b6538a2a55"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:06 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4ca18f5c-5bae-48d1-966e-a28c5bd4ac73"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a988d209-b8f5-40e4-8025-b6eadf0aa19a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "97995a7d-a551-4f1d-bdf0-960740d6f99b"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065719Z:97995a7d-a551-4f1d-bdf0-960740d6f99b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:19 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f66cb364-b3f0-4fd4-b094-e2910f0adaca"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fc9e627b-4e0d-4c49-97cc-0a0c898d299a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "20258233-550a-4220-917b-e4dd1a5a141b"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065629Z:20258233-550a-4220-917b-e4dd1a5a141b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:28 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "67d81f31-a912-4c13-812d-f259ea46e8ff"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "826c3b4d-bba1-49f2-8c50-2295643b2564"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1d78f85-69ff-4e91-8ed7-dd7ec8dd52eb"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065654Z:d1d78f85-69ff-4e91-8ed7-dd7ec8dd52eb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:54 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "63c50b52-5385-48c8-8a1d-8a9633652485"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2343a03e-9ded-4cd2-b032-6ee37e4ba256"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "a18b522a-d19e-4f1a-a3d1-15f812c61e94"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065700Z:a18b522a-d19e-4f1a-a3d1-15f812c61e94"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:00 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9c263e6-cd98-41bb-ab32-87f2e514caad"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "debdb780-ce76-492a-849d-96af3a2ec966"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "26eacfbd-e3a8-4f99-998b-c65cb0b82984"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065702Z:26eacfbd-e3a8-4f99-998b-c65cb0b82984"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:02 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a2808799-cd92-4cc0-8f2d-5d920ae180c3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c4d000e-a731-490f-a624-2ca721b4bf34"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea741b32-4fc6-4ba9-8c7c-af928309f73d"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065705Z:ea741b32-4fc6-4ba9-8c7c-af928309f73d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:05 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b1be745-391d-4c74-b147-12f484e2b847"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c58fe2e-98a2-4d17-87c6-880cc10d5eae"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "71d28d66-6b7a-48cb-b82c-23bbcca27c28"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065707Z:71d28d66-6b7a-48cb-b82c-23bbcca27c28"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:07 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "845c37f9-77bf-4b0b-9d97-6bf1f511b3be"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f7afe8c2-71c7-4df9-8e13-0f2f598b216e"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "539b8d2e-50b5-43fc-b807-606e3ab95e37"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065720Z:539b8d2e-50b5-43fc-b807-606e3ab95e37"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:19 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "695009db-3e71-4be0-9f17-397dd2b5faa8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d5e53003-a8f8-49ed-abd8-def81e2b5a53"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1077816-ea55-4ae4-b07f-8b4d0092382f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065629Z:f1077816-ea55-4ae4-b07f-8b4d0092382f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:29 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4a162692-69eb-43c9-9f0e-75e92a809068"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "517b6f97-fac7-427d-9f29-3480ab289f37"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ff691a3-1066-4ca6-ab9f-019c892a5b80"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065654Z:2ff691a3-1066-4ca6-ab9f-019c892a5b80"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:54 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3ece7e0-c6a7-4fe5-9583-29a3e888b7ab"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c7bad0bd-260c-4835-aa15-f84a5bbb9994"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3edff1a-2d73-4fb4-8891-cbd9d67533f6"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065700Z:f3edff1a-2d73-4fb4-8891-cbd9d67533f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:00 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "910208df-25aa-4de8-96ae-d15dc7ecf16c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9283bfe-0e98-48eb-a26d-aa8f8f3cb75a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c9c739e-57b4-42fd-b8e9-8eef48d06f86"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065703Z:3c9c739e-57b4-42fd-b8e9-8eef48d06f86"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:02 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "545578e2-6dd3-4e1f-9fb3-746b773c4ace"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "63307e47-e171-43af-af4d-6f7a47f0958b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "25f169ad-8092-4013-908c-8d2fbeef89b5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065705Z:25f169ad-8092-4013-908c-8d2fbeef89b5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:05 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "29e789ff-abf3-4ca8-be87-78fee6a5ff91"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "062322e9-4cb9-4bf8-b2ee-5693c34752e1"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b80012b-2db5-4434-9563-74e0e56b7e70"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065708Z:7b80012b-2db5-4434-9563-74e0e56b7e70"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:07 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "696eeebe-a8de-4f9a-ba09-0b5037497af9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b2dd64ac-dd0a-4d48-9e87-cbdd7ebffb78"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7f56ecf-3cd2-4265-bdfc-327bc1e1d8d5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065720Z:e7f56ecf-3cd2-4265-bdfc-327bc1e1d8d5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:20 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2f4acb9d-7e01-459c-8071-d4b6261a25c9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "269"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "98603c43-097f-421d-8433-c41b1c3f6888"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "a34281db-64dc-472d-ad20-c60616156616"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065652Z:a34281db-64dc-472d-ad20-c60616156616"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:51 GMT"
+ ],
+ "Content-Length": [
+ "1006"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"9a193235-22c5-46b0-a582-558618ef60bf\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "08b5b3ff-8820-4af1-b399-f8db8abf5695"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "279"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B408765205F5\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb7bf805-18a1-4e21-84cd-dc283b415a4b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2ee10e1-4e46-4361-976e-2eb40b0df830"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065658Z:b2ee10e1-4e46-4361-976e-2eb40b0df830"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:56:58 GMT"
+ ],
+ "Content-Length": [
+ "5944"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1378393d-3349-4b04-a051-32c3519b4cf9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "210"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A03C5A9CB\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bee2b87d-ee31-43de-94ac-b384fbc29d9d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "498"
+ ],
+ "x-ms-correlation-request-id": [
+ "14c4b868-4a0b-46db-a8b0-539bc2702625"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065713Z:14c4b868-4a0b-46db-a8b0-539bc2702625"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:13 GMT"
+ ],
+ "Content-Length": [
+ "5899"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d2755c1c-89ad-4701-a16d-28e7f7f53b3f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "82bb1382-0536-486f-b82d-defb4396649e"
+ ],
+ "x-ms-correlation-request-id": [
+ "82bb1382-0536-486f-b82d-defb4396649e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065714Z:82bb1382-0536-486f-b82d-defb4396649e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "243"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ace5d142-21dd-45a1-8b44-283666a8a5aa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "720f5e76-67bb-418e-9643-c2ff8804eb87"
+ ],
+ "x-ms-correlation-request-id": [
+ "720f5e76-67bb-418e-9643-c2ff8804eb87"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065720Z:720f5e76-67bb-418e-9643-c2ff8804eb87"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:19 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "12"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f42ce972-f5e0-44fb-a84f-5706f9940064"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76fc3ec1-c194-4163-ae5f-00720da95657"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b3832fb-2b9b-448a-8461-98d2851d239e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065714Z:3b3832fb-2b9b-448a-8461-98d2851d239e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:14 GMT"
+ ],
+ "Content-Length": [
+ "909"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad5e1e42-d2f1-42ac-a3f7-ff61646ed182"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a1e9eca5-d5f4-48e7-b7bf-7927b7b55196"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "02bae407-554d-4914-b00e-83bc8636e5fa"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065717Z:02bae407-554d-4914-b00e-83bc8636e5fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:57:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
new file mode 100644
index 000000000000..2442e26768f6
--- /dev/null
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
@@ -0,0 +1,1310 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c9fd9ac1-7df1-49a9-a7bf-53e3f171d962"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A0C725360\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "edb3e919-e6c3-449a-87bd-5eba3ab6afac"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "96dc322b-7b07-4ad0-b14c-1bb5d8f1c965"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065814Z:96dc322b-7b07-4ad0-b14c-1bb5d8f1c965"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:14 GMT"
+ ],
+ "Content-Length": [
+ "5699"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff2c7042-b6f8-4827-b9eb-59cc7d59c711"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"1D6B40A0C725360\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fb87ecc3-4188-40ee-a660-3a86a2963c69"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "0beddcc6-49b5-4391-ac4f-e68820039bb6"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065839Z:0beddcc6-49b5-4391-ac4f-e68820039bb6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:38 GMT"
+ ],
+ "Content-Length": [
+ "5699"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "026c53c0-9987-4d67-96b3-beff5973b9bb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f6208dbf-a4d8-4b19-b387-bb3e628648d0"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "cce2d838-db50-4bf6-95ad-3597dba70ef3"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065815Z:cce2d838-db50-4bf6-95ad-3597dba70ef3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:14 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd55d067-b29f-43d3-b35e-3d15de489bde"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "73bbdbf2-0a15-4441-995e-ff8df541a574"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d8d60bf-b416-4c8d-ab23-ba4e25210b91"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065839Z:5d8d60bf-b416-4c8d-ab23-ba4e25210b91"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:39 GMT"
+ ],
+ "Content-Length": [
+ "3544"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "20650cd3-7aee-40c9-b34d-4bcf442e1682"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5694bc6a-e81f-442a-abb2-bc3609ebee19"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ee9b9d3-e533-4cd9-af10-6b708cb9224f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065815Z:5ee9b9d3-e533-4cd9-af10-6b708cb9224f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:15 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7b3214df-a4cd-4c2c-b490-4ad2f63a1c96"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "25d99ab0-c1b7-4456-bd0d-f3f340d45792"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "601a14d4-9ba8-4c72-8a27-6743d527c56a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065840Z:601a14d4-9ba8-4c72-8a27-6743d527c56a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:39 GMT"
+ ],
+ "Content-Length": [
+ "701"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "331e9bcb-c43b-4637-9f0e-e55f2063c33d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "68008099-66fe-49e6-a7e2-c6e982b418b8"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "645b3918-2c3c-49cc-bfd5-7b1c3740b397"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065816Z:645b3918-2c3c-49cc-bfd5-7b1c3740b397"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:15 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "11967e29-e832-443e-868f-aa76ef34ab6b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "040bf0f1-beef-482e-af4f-d27e491d6737"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "a02cd217-9004-458f-bc9e-b2c856c24cff"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065840Z:a02cd217-9004-458f-bc9e-b2c856c24cff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:40 GMT"
+ ],
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "614c34ad-e7b0-4497-aea8-2e066dbd554c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1a1d8c2-0aa7-4388-bf05-b1447ea52732"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "df5aa127-7e19-4119-ac20-22d773d719e0"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065816Z:df5aa127-7e19-4119-ac20-22d773d719e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:16 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2fb9bc2c-442e-459d-bd51-4b824eb0aa60"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ff5ddc6f-de2f-4cbd-9dac-58062da54e28"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb686cde-aadb-4851-aec7-04e3743965a5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065841Z:cb686cde-aadb-4851-aec7-04e3743965a5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:41 GMT"
+ ],
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ea5467cb-b203-4813-b8da-b2fde41154b7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "269"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3336bc51-27b1-469f-bb7c-89fd6fd7a8f1"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "482ab8c8-dae9-4919-b428-dc7cd55de7d2"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065838Z:482ab8c8-dae9-4919-b428-dc7cd55de7d2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:38 GMT"
+ ],
+ "Content-Length": [
+ "1006"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"96682EC22E2A8B796AD5B02FBC246199436B8401\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"fdc2798d-c737-4700-9921-d2665336001e\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a9e45252-0f33-4d9e-981b-dfeee297dd8a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "a2e5ce5b-abd5-4f44-864d-84b40f2f44ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2e5ce5b-abd5-4f44-864d-84b40f2f44ff"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065842Z:a2e5ce5b-abd5-4f44-864d-84b40f2f44ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:42 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "243"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b18f861-173a-4148-86d9-a754abdac626"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "231db35d-bf18-4643-97c3-4301fc3786f3"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f70d309-97d1-47a2-97d1-66e4e8484047"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065842Z:9f70d309-97d1-47a2-97d1-66e4e8484047"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:42 GMT"
+ ],
+ "Content-Length": [
+ "909"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"96682EC22E2A8B796AD5B02FBC246199436B8401\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "115f1f7d-b2b2-48e2-ae26-e7ab6d31b9f1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "96afca71-240b-4fa7-b7cc-f21137797c4d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "8db75089-1704-4c6e-8fe3-fcb2982883b3"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065846Z:8db75089-1704-4c6e-8fe3-fcb2982883b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7b9e108c-536b-4bda-ae80-8baa24d91242"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "c26638e9-5b8f-4529-b522-ff2a7e69e663"
+ ],
+ "x-ms-correlation-request-id": [
+ "c26638e9-5b8f-4529-b522-ff2a7e69e663"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065846Z:c26638e9-5b8f-4529-b522-ff2a7e69e663"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:46 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1022"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzLy5ORVRTREtSRy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvYWRvcmVzbm93LS5ORVRTREtSRy1DZW50cmFsVVN3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5bdd7244-b01a-427b-9347-40401ddc33e4"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0a9adcce-b10f-44ef-b534-99fd8e285d93"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf7203d7-1d99-478c-b54c-c08915399ebe"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065846Z:cf7203d7-1d99-478c-b54c-c08915399ebe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:46 GMT"
+ ],
+ "Content-Length": [
+ "1106"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testfsrg1704/providers/microsoft.keyvault/vaults/testkvthek\",\r\n \"keyVaultSecretName\": \"adoresnow312c5e2c-add9-4faf-bb5b-744a87aff40e\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy90ZXN0a3YyODA5LXRlc3RjZXJ0MjgwOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "181c0968-eda2-487b-b5b4-511ddc980d5d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9838a967-cb25-4100-9fb8-cba21c456f08"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "603f739c-e8c4-4286-819f-de0be439bc8f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065847Z:603f739c-e8c4-4286-819f-de0be439bc8f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:46 GMT"
+ ],
+ "Content-Length": [
+ "1006"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/testresourcegrp2809/providers/microsoft.keyvault/vaults/testkv2809\",\r\n \"keyVaultSecretName\": \"testcert2809\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cudGVqYS10ZXN0LmNvbT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a1fb0269-dd86-4fed-9044-c37bdc42eece"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8f844e48-938d-4d86-a730-041c6edd22a1"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "10fbe8b5-defc-4719-a218-b5c0900a47ae"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065847Z:10fbe8b5-defc-4719-a218-b5c0900a47ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:47 GMT"
+ ],
+ "Content-Length": [
+ "904"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3Rhc3B0b2QxMDktdGVzdGt2aW16LXRlc3RjZXJ0MjgxMHo/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b12f5546-026a-474b-8e5d-07d5ee53dce0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4623978-94e4-4e11-9a7d-10a8b350cc6a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8e3fae2-6a70-4842-9e6d-7aef255d29a9"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201106T065848Z:c8e3fae2-6a70-4842-9e6d-7aef255d29a9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Fri, 06 Nov 2020 06:58:47 GMT"
+ ],
+ "Content-Length": [
+ "1217"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30"
+ }
+}
\ No newline at end of file
diff --git a/src/Websites/Websites.sln b/src/Websites/Websites.sln
index fc6c4a6e7afa..ae4fbfed57e2 100644
--- a/src/Websites/Websites.sln
+++ b/src/Websites/Websites.sln
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.30611.23
+# Visual Studio 15
+VisualStudioVersion = 15.0.28307.1231
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Websites", "Websites\Websites.csproj", "{80A92297-7C92-456B-8EE7-9FB6CE30149D}"
EndProject
@@ -20,8 +20,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScenarioTest.ResourceManage
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{31473C1B-1B34-4545-BF2D-50BEE84E7283}"
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -40,6 +38,10 @@ Global
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.Build.0 = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -56,10 +58,6 @@ Global
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU
- {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1
index 74729314434b..0bfb795db3a5 100644
--- a/src/Websites/Websites/Az.Websites.psd1
+++ b/src/Websites/Websites/Az.Websites.psd1
@@ -100,7 +100,8 @@ CmdletsToExport = 'Get-AzAppServicePlan', 'Set-AzAppServicePlan',
'Remove-AzWebAppAccessRestrictionRule',
'Update-AzWebAppAccessRestrictionConfig',
'Add-AzWebAppTrafficRouting', 'Remove-AzWebAppTrafficRouting',
- 'Get-AzWebAppTrafficRouting', 'Update-AzWebAppTrafficRouting'
+ 'Get-AzWebAppTrafficRouting', 'Update-AzWebAppTrafficRouting',
+ 'New-AzWebAppManagedCertificate','Remove-AzWebAppManagedCertificate'
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index 5150baa96064..482fd0e0140c 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -19,6 +19,10 @@
-->
## Upcoming Release
* Added support for new access restriction features: ServiceTag, multi-ip and http-headers
+* Added support for App Service Managed certificates
+ -New Cmdlets
+ -New-AzWebAppManagedCertificate
+ -Remove-AzWebAppManagedCertificate
## Version 2.0.0
* Added support for Premium V3 pricing tier
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
new file mode 100644
index 000000000000..0f0fd01b287f
--- /dev/null
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
@@ -0,0 +1,110 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.WebApps.Models;
+using Microsoft.Azure.Commands.WebApps.Models.WebApp;
+using Microsoft.Azure.Commands.WebApps.Utilities;
+using Microsoft.Azure.Management.WebSites.Models;
+using Microsoft.Rest.Azure;
+using System;
+using System.Management.Automation;
+using System.Net;
+using System.Threading.Tasks;
+
+namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
+{
+
+ ///
+ /// This commandlet will let you create a new managed certificate
+ ///
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppManagedCertificate"), OutputType(typeof(PSCertificate))]
+ public class NewAzWebAppManagedCertificate : WebAppBaseClientCmdLet
+ {
+ const string CertNamePostFixSeparator = "_";
+ const string ParameterSet1Name = "S1";
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")]
+ [ResourceNameCompleter("Microsoft.Web/sites", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string WebAppName { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
+ [ResourceNameCompleter("Microsoft.Web/sites/slots", "ResourceGroupName", "WebAppName")]
+ [ValidateNotNullOrEmpty]
+ public string Slot { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
+ [ValidateNotNullOrEmpty]
+ public string HostName { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 4, Mandatory = false, HelpMessage = "To add the created certificate to WebApp/slot.")]
+ [ValidateNotNullOrEmpty]
+ public SwitchParameter AddCertBinding { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 5, Mandatory = false, HelpMessage = "Ssl state option. Use either 'SniEnabled' or 'IpBasedEnabled'. Default option is 'SniEnabled'.")]
+ [ValidateNotNullOrEmpty]
+ public SslState? SslState { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
+ {
+ //PSSite webApp = null;
+ var webApp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, Slot));
+ var location = webApp.Location;
+
+ Certificate createdCertdetails = null;
+
+ var certificate = new Certificate(
+ webApp.Location,
+ canonicalName: HostName,
+ password: "",
+ serverFarmId: webApp.ServerFarmId);
+
+ try
+ {
+ createdCertdetails = WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
+ }
+ catch (DefaultErrorResponseException e)
+ {
+ // This exception is thrown when certificate already exists. Let's swallow it and continue.
+ if (e.Response.StatusCode != HttpStatusCode.Conflict)
+ {
+ throw;
+ }
+ }
+ //Add only when user is opted for Binding
+ if (AddCertBinding)
+ {
+ WebsitesClient.UpdateHostNameSslState(ResourceGroupName,
+ WebAppName,
+ Slot,
+ webApp.Location,
+ HostName, SslState.HasValue ? SslState.Value : Management.WebSites.Models.SslState.SniEnabled,
+ createdCertdetails.Thumbprint);
+ }
+ WriteObject(createdCertdetails);
+
+ }
+
+ }
+ }
+}
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
new file mode 100644
index 000000000000..6213bbeaddd3
--- /dev/null
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
@@ -0,0 +1,90 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+
+using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
+using Microsoft.Azure.Commands.WebApps.Models;
+using Microsoft.Azure.Commands.WebApps.Utilities;
+using Microsoft.Azure.Management.WebSites.Models;
+using System.Linq;
+using System.Management.Automation;
+using System.Net;
+
+namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
+{
+ ///
+ /// This commandlet will let you delete a managed certificate
+ ///
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppManagedCertificate"), OutputType(typeof(void))]
+ public class RemoveAzWebAppManagedCertificate : WebAppBaseClientCmdLet
+ {
+ const string ParameterSet1Name = "S1";
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
+ [ResourceGroupCompleter]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")]
+ [ResourceNameCompleter("Microsoft.Web/sites", "ResourceGroupName")]
+ [ValidateNotNullOrEmpty]
+ public string WebAppName { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
+ [ResourceNameCompleter("Microsoft.Web/sites/slots", "ResourceGroupName", "WebAppName")]
+ [ValidateNotNullOrEmpty]
+ public string Slot { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
+ [ValidateNotNullOrEmpty]
+ public string HostName { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space.")]
+ [ValidateNotNullOrEmpty]
+ public string ThumbPrint { get; set; }
+ public override void ExecuteCmdlet()
+ {
+ if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
+ {
+ if (this.ShouldProcess(this.HostName, string.Format("Deleting certificate - '{0}' from Web Application - {1}", this.HostName, this.WebAppName)))
+ {
+ var webapp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, Slot));
+ var hostNameSslStates = CmdletHelpers.GetHostNameSslStatesFromSiteResponse(webapp, HostName).ToList();
+ if (hostNameSslStates.Count > 0)
+ {
+ WebsitesClient.UpdateHostNameSslState(ResourceGroupName, WebAppName, Slot, webapp.Location, HostName, SslState.Disabled, null);
+ }
+ var certificateResourceGroup = CmdletHelpers.GetResourceGroupFromResourceId(webapp.ServerFarmId);
+ var certificates = CmdletHelpers.GetCertificates(this.ResourcesClient, this.WebsitesClient, certificateResourceGroup, ThumbPrint);
+ if (certificates.Length > 0)
+ {
+ try
+ {
+ WebsitesClient.RemoveCertificate(certificateResourceGroup, certificates[0].Name);
+ }
+ catch (DefaultErrorResponseException e)
+ {
+ // This exception is thrown when certificate already exists. Let's swallow it and continue.
+ if (e.Response.StatusCode != HttpStatusCode.Conflict)
+ {
+ throw;
+ }
+ }
+ }
+
+ }
+ }
+ }
+ }
+}
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs
index ce1f36d6522e..63fefff7e9bf 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs
@@ -62,10 +62,10 @@ protected override void ProcessRecord()
{
WebsitesClient.RemoveCertificate(certificateResourceGroup, certificates[0].Name);
}
- catch (System.Exception e)
+ catch (DefaultErrorResponseException e)
{
// This exception is thrown when there are other Ssl bindings using this certificate. Let's swallow it and continue.
- if (!e.Message.Contains("Conflict"))
+ if (e.Response.StatusCode != HttpStatusCode.Conflict)
{
throw e;
}
diff --git a/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md b/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
new file mode 100644
index 000000000000..9e0ac281e90a
--- /dev/null
+++ b/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
@@ -0,0 +1,163 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
+Module Name: Az.Websites
+online version:
+schema: 2.0.0
+---
+
+# New-AzWebAppManagedCertificate
+
+## SYNOPSIS
+Creates an App service managed certificate for an Azure Web App.
+
+## SYNTAX
+
+```
+New-AzWebAppManagedCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
+ [-HostName] [-AddCertBinding] [[-SslState] ] [-DefaultProfile ]
+ []
+```
+
+## DESCRIPTION
+The **New-AzWebAppManagedCertificate** cmdlet creates an Azure App Service Managed Certificate
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> New-AzWebAppManagedCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net"
+```
+
+This command create an App Service Managed Certificate for the given WebApp
+
+### Example 2
+```powershell
+PS C:\> New-AzWebAppManagedCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -AddCertBinding
+```
+
+This command create an App Service Managed Certificate and binds to the given WebApp.
+
+## PARAMETERS
+
+### -AddCertBinding
+To add the created certificate to WebApp/slot.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -HostName
+Custom hostnames associated with web app/slot.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The name of the resource group.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Slot
+The name of the web app slot.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -SslState
+Ssl state option.
+Use either 'SniEnabled' or 'IpBasedEnabled'.
+Default option is 'SniEnabled'.
+
+```yaml
+Type: SslState
+Parameter Sets: (All)
+Aliases:
+Accepted values: Disabled, SniEnabled, IpBasedEnabled
+
+Required: False
+Position: 5
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WebAppName
+The name of the web app.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.WebApps.Models.WebApp.PSCertificate
+
+## NOTES
+
+## RELATED LINKS
+[Remove-AzWebAppManagedCertificate](./Remove-AzWebAppManagedCertificate.md)
\ No newline at end of file
diff --git a/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md b/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
new file mode 100644
index 000000000000..9e4b9a2bb762
--- /dev/null
+++ b/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
@@ -0,0 +1,138 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
+Module Name: Az.Websites
+online version:
+schema: 2.0.0
+---
+
+# Remove-AzWebAppManagedCertificate
+
+## SYNOPSIS
+Creates an App service managed certificate for an Azure Web App.
+
+## SYNTAX
+
+```
+Remove-AzWebAppManagedCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
+ [-HostName] [-ThumbPrint] [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+The **Remove-AzWebAppManagedCertificate** cmdlet creates an Azure App Service Managed Certificate
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\>Remove-AzWebAppManagedCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"
+```
+
+This command removes App Service Managed certificate for the given web app.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -HostName
+Custom hostnames associated with web app/slot.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+The name of the resource group.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Slot
+The name of the web app slot.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ThumbPrint
+Thumbprint of the certificate that already exists in web space.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WebAppName
+The name of the web app.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### System.Void
+
+## NOTES
+
+## RELATED LINKS
+[New-AzWebAppManagedCertificate](./New-AzWebAppManagedCertificate.md)
From 49ff844e1a9a4315b6c05b1cc078764b5ba61ab4 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Fri, 6 Nov 2020 12:58:01 +0530
Subject: [PATCH 02/13] updated online version for help files
---
src/Websites/Websites/help/New-AzWebAppManagedCertificate.md | 2 +-
src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md b/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
index 9e0ac281e90a..de5895235845 100644
--- a/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
+++ b/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
Module Name: Az.Websites
-online version:
+online version:https://docs.microsoft.com/en-us/powershell/module/az.websites/new-azwebappmanagedcertificate
schema: 2.0.0
---
diff --git a/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md b/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
index 9e4b9a2bb762..b218c079603c 100644
--- a/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
+++ b/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
@@ -1,7 +1,7 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
Module Name: Az.Websites
-online version:
+online version:https://docs.microsoft.com/en-us/powershell/module/az.websites/remove-azwebappmanagedcertificate
schema: 2.0.0
---
From 7489435c10ae7301f1b5b805f1d261f1a1ae23c3 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Fri, 6 Nov 2020 23:15:05 +0530
Subject: [PATCH 03/13] fixed static analysis SignatureIssues.
---
.../TestNewAzWebAppManagedCertificate.json | 158 +++---
...tNewAzWebAppManagedCertificateForSlot.json | 158 +++---
...ebAppManagedCertificateWithSSLBinding.json | 470 +++++++++---------
.../TestRemoveAzWebAppManagedCertificate.json | 224 ++++-----
.../NewAzWebAppManagedCertificate.cs | 50 +-
.../RemoveAzWebAppManagedCertificate.cs | 19 +-
6 files changed, 542 insertions(+), 537 deletions(-)
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
index 04c55bc23a8e..1761f3e6c08c 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f2d8985-4a12-470a-aece-35e6af3d2e65"
+ "e8689c6d-b2d9-49a9-ba56-eb971bc318d1"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B408765205F5\""
+ "\"1D6B40A0C725360\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1aeacab6-bb82-49b0-a273-87862b5bf3d7"
+ "e9bf9b6a-a898-4816-b6fd-dc17c58be1a0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -48,19 +48,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "85ecef0d-eb7a-4620-91c7-2476dccb6d99"
+ "da8138dc-0e69-4e9a-bdee-81f0b18a6fb2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065537Z:85ecef0d-eb7a-4620-91c7-2476dccb6d99"
+ "SOUTHINDIA:20201106T173953Z:da8138dc-0e69-4e9a-bdee-81f0b18a6fb2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:55:37 GMT"
+ "Fri, 06 Nov 2020 17:39:53 GMT"
],
"Content-Length": [
- "5704"
+ "5699"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f059224-1fff-4c06-8481-9643f4b2bd81"
+ "d7a51ea5-41b4-4f2a-aead-894425d8fe2d"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B408765205F5\""
+ "\"1D6B40A0C725360\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "214d1b2a-ed80-46bb-851d-a2c89286fbf7"
+ "92e4a3b7-efa8-4ef4-aa1e-46ce3f304349"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -120,19 +120,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "e393334a-7875-4055-847c-b86261b031f9"
+ "9cee6a28-de12-4be2-8639-85d05f1e8f84"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065609Z:e393334a-7875-4055-847c-b86261b031f9"
+ "SOUTHINDIA:20201106T174030Z:9cee6a28-de12-4be2-8639-85d05f1e8f84"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:08 GMT"
+ "Fri, 06 Nov 2020 17:40:29 GMT"
],
"Content-Length": [
- "5704"
+ "5699"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fffa2b9-4dde-427c-9ebc-9b981c5b2e19"
+ "aef25e6c-70f3-44b6-9796-2699eb3fd373"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f6175474-93ea-47f8-ae34-6ad58de2d7e5"
+ "eeae6894-48e0-4935-af7b-e59ed40d0100"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,16 +189,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "fa5e825d-d2ae-434d-b6ba-62a00f3c1f34"
+ "9f80a6a3-250b-4d8c-9c15-5e46c2a9acd3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065538Z:fa5e825d-d2ae-434d-b6ba-62a00f3c1f34"
+ "SOUTHINDIA:20201106T173955Z:9f80a6a3-250b-4d8c-9c15-5e46c2a9acd3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:55:38 GMT"
+ "Fri, 06 Nov 2020 17:39:55 GMT"
],
"Content-Length": [
"3544"
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "032a62c0-8395-453b-821f-f13f5f055b3d"
+ "e1d52664-76ad-4ffa-b06c-0acbdc0f3770"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "23aec2f4-7f74-4aee-bf4f-15d788cac78f"
+ "a58c2880-f5f5-4961-89cd-133980613ead"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -258,16 +258,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "a3f0d134-633b-4956-bd1f-fd0118ee30da"
+ "eefb0ccd-7651-4263-9b3c-756c2255a245"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065614Z:a3f0d134-633b-4956-bd1f-fd0118ee30da"
+ "SOUTHINDIA:20201106T174031Z:eefb0ccd-7651-4263-9b3c-756c2255a245"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:14 GMT"
+ "Fri, 06 Nov 2020 17:40:30 GMT"
],
"Content-Length": [
"3544"
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de4a5053-4cae-4f79-8f8a-8dff93c95922"
+ "c7f97ad0-f1d4-4576-b382-12e2d80c8e28"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "91def244-9fb5-4e8f-b630-72f592378e4f"
+ "7e5cf894-1d3a-42cc-8115-76988f2b2ac5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,16 +327,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "0e982364-69d6-431c-8c58-0f85ac60703a"
+ "f685449c-8393-4f5b-928d-810f9bb1b228"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065538Z:0e982364-69d6-431c-8c58-0f85ac60703a"
+ "SOUTHINDIA:20201106T173956Z:f685449c-8393-4f5b-928d-810f9bb1b228"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:55:38 GMT"
+ "Fri, 06 Nov 2020 17:39:55 GMT"
],
"Content-Length": [
"701"
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13a3e01e-70ca-4ec4-9c34-4f6c605f8a85"
+ "95ac10c9-acb0-48d0-8a76-1f2e3abcff10"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0f55d042-4f13-417a-8f8d-0c91933ca6e2"
+ "86f90680-2f63-4876-8034-4924aa37ebf5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -396,16 +396,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "1ea84a0c-69a4-4db8-9338-deed9cb42e40"
+ "ca8912f4-8933-4c0b-adf9-b7d0eba1fb6e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065616Z:1ea84a0c-69a4-4db8-9338-deed9cb42e40"
+ "SOUTHINDIA:20201106T174031Z:ca8912f4-8933-4c0b-adf9-b7d0eba1fb6e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:15 GMT"
+ "Fri, 06 Nov 2020 17:40:30 GMT"
],
"Content-Length": [
"701"
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f633e530-868f-4f3f-bfea-3775fcad8a0d"
+ "169fae16-7a9e-42e3-81fe-d7de0bd6accf"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a94ad93e-5aa6-4750-bfc9-13c7e196da62"
+ "7b6b2012-5133-430c-85ce-cd586a15aa8f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,16 +465,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "e3c8017a-1975-463e-af50-b4b987b2cfec"
+ "8ac26f7f-d54e-4de2-9be8-97078e0d6d11"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065539Z:e3c8017a-1975-463e-af50-b4b987b2cfec"
+ "SOUTHINDIA:20201106T173956Z:8ac26f7f-d54e-4de2-9be8-97078e0d6d11"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:55:39 GMT"
+ "Fri, 06 Nov 2020 17:39:56 GMT"
],
"Content-Length": [
"255"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "330daaab-bd84-40db-86e9-0244c0cc1b51"
+ "592daf8a-9bd1-483a-8bd1-cb9ac2db5d53"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e38e08d0-362f-4a84-a682-a7678250c3d5"
+ "40984632-ecd4-45cd-b7ac-4887479f0426"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,16 +534,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "881f37eb-c8ee-436d-9862-abdc448f8d71"
+ "cb72fe2b-9086-4edf-ad0c-9582e66b3754"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065616Z:881f37eb-c8ee-436d-9862-abdc448f8d71"
+ "SOUTHINDIA:20201106T174032Z:cb72fe2b-9086-4edf-ad0c-9582e66b3754"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:16 GMT"
+ "Fri, 06 Nov 2020 17:40:31 GMT"
],
"Content-Length": [
"255"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "903d6acc-3ad1-4a57-9005-a65394195838"
+ "9df9fd94-e3a2-4c71-8d75-ac678977088e"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "33fa1e7b-153c-4b03-8052-7069f185900c"
+ "249e894f-9406-45a6-9b08-4c06a21f6c1f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,16 +603,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "930e3439-2b8a-4776-9a9e-a311a077125d"
+ "c7af7676-2179-426f-b29b-65a87d78a101"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065540Z:930e3439-2b8a-4776-9a9e-a311a077125d"
+ "SOUTHINDIA:20201106T173957Z:c7af7676-2179-426f-b29b-65a87d78a101"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:55:40 GMT"
+ "Fri, 06 Nov 2020 17:39:56 GMT"
],
"Content-Length": [
"252"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6a06c311-a140-4f32-904d-cbe579cf022d"
+ "a92b6f47-6bc8-4cd9-bee1-445d53b46137"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "be779d9a-59dc-4c0d-aacb-d570d3344f9a"
+ "c8fe6ae2-f567-457b-bca8-7f3dfb23cabf"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -672,16 +672,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "dd617b3b-2606-48ab-9921-b126bbad3673"
+ "52220373-5302-4aea-a8f4-10b7ddaeed18"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065617Z:dd617b3b-2606-48ab-9921-b126bbad3673"
+ "SOUTHINDIA:20201106T174032Z:52220373-5302-4aea-a8f4-10b7ddaeed18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:16 GMT"
+ "Fri, 06 Nov 2020 17:40:31 GMT"
],
"Content-Length": [
"252"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "54405c8d-8ac2-4ee1-b9c5-afb2bf4b4154"
+ "bed80edc-fea9-412b-96f4-e288c478145f"
],
"Accept-Language": [
"en-US"
@@ -732,7 +732,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "33969380-7555-45b6-87bb-3d0f9e31633c"
+ "f5eb2976-207c-4060-96ca-6fa29c6cb191"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -747,16 +747,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "8f1776b0-cac3-45c2-8acf-2730eb20cbd8"
+ "85c738e9-43c3-44ec-b67d-7bd6e9ba8e4a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065603Z:8f1776b0-cac3-45c2-8acf-2730eb20cbd8"
+ "SOUTHINDIA:20201106T174030Z:85c738e9-43c3-44ec-b67d-7bd6e9ba8e4a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:02 GMT"
+ "Fri, 06 Nov 2020 17:40:29 GMT"
],
"Content-Length": [
"1006"
@@ -768,7 +768,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"38B2EC97EFBCEC8904EF6B624BC3BDA1109C1633\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"891de99f-e798-4fa3-aa72-f04066d35c10\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FF607D3A2752115CCF4DE607E79C4B5F8B93A77\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"4a4a452f-ee30-4451-9e93-96bc6858bf88\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -778,7 +778,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8ce28b1-1bae-4fb7-aefd-7816f64d751b"
+ "c774dacd-b62d-43ee-92bf-9c1b0eac283f"
],
"Accept-Language": [
"en-US"
@@ -798,16 +798,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11999"
],
"x-ms-request-id": [
- "800512ea-c754-4e82-b417-8372e4218f9b"
+ "faaf5038-accb-4240-acd8-d2fe7938ed8c"
],
"x-ms-correlation-request-id": [
- "800512ea-c754-4e82-b417-8372e4218f9b"
+ "faaf5038-accb-4240-acd8-d2fe7938ed8c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065617Z:800512ea-c754-4e82-b417-8372e4218f9b"
+ "SOUTHINDIA:20201106T174032Z:faaf5038-accb-4240-acd8-d2fe7938ed8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -816,7 +816,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:16 GMT"
+ "Fri, 06 Nov 2020 17:40:32 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -838,7 +838,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "954221e4-f235-4a46-a397-df4e4f14f7b0"
+ "b6fbcd53-f6cf-4227-84f2-f1c462748acb"
],
"Accept-Language": [
"en-US"
@@ -861,7 +861,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "65cae3da-90bf-4615-9262-9010399d6474"
+ "d6bd3567-86c4-4b08-8f80-f55cfcf29a77"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -876,16 +876,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "4b78ae91-f957-4410-a60d-38ce9b5ec10d"
+ "f495be61-7d50-4631-9660-e29525da4505"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065617Z:4b78ae91-f957-4410-a60d-38ce9b5ec10d"
+ "SOUTHINDIA:20201106T174033Z:f495be61-7d50-4631-9660-e29525da4505"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:17 GMT"
+ "Fri, 06 Nov 2020 17:40:33 GMT"
],
"Content-Length": [
"909"
@@ -897,7 +897,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"38B2EC97EFBCEC8904EF6B624BC3BDA1109C1633\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FF607D3A2752115CCF4DE607E79C4B5F8B93A77\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -907,7 +907,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "437c6ef1-de23-4fae-a93f-ed5cd4d44b9c"
+ "5c1a3216-b595-492b-93ff-6755e110d39e"
],
"Accept-Language": [
"en-US"
@@ -930,7 +930,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "95d469c3-8320-4239-95b9-710219d6f277"
+ "4b191d13-7d16-4bcd-b556-9540af3384e3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -945,16 +945,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "7dc63d11-5172-4f0a-8947-b7c3a4dc1e6d"
+ "69020157-77b6-4c45-a2d5-0cfa36ce471a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065622Z:7dc63d11-5172-4f0a-8947-b7c3a4dc1e6d"
+ "SOUTHINDIA:20201106T174040Z:69020157-77b6-4c45-a2d5-0cfa36ce471a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:21 GMT"
+ "Fri, 06 Nov 2020 17:40:40 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
index d3313f2956e9..44cc64cf1b65 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ab44b2a-1f53-43b4-8487-109e88f10cdb"
+ "2ac7f064-1b72-436c-9205-e1a69f591f1b"
],
"Accept-Language": [
"en-US"
@@ -33,7 +33,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9d014a0-fe4d-4330-9c9d-6f4fbd0cd551"
+ "6cb95699-dd67-4f45-b62a-f9ed55ca6cf2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,19 +45,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11999"
],
"x-ms-correlation-request-id": [
- "394f54b0-ee4f-47ea-b74e-a2e4c8fb0e86"
+ "a09e1b7c-c01c-478b-96c8-98bb91065e69"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065725Z:394f54b0-ee4f-47ea-b74e-a2e4c8fb0e86"
+ "SOUTHINDIA:20201106T174145Z:a09e1b7c-c01c-478b-96c8-98bb91065e69"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:25 GMT"
+ "Fri, 06 Nov 2020 17:41:44 GMT"
],
"Content-Length": [
"5500"
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d439d5d5-a6d3-4574-b099-eed7d304cd58"
+ "f417cca9-b417-4578-8571-159deaede9f1"
],
"Accept-Language": [
"en-US"
@@ -105,7 +105,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ffe69bb6-8eac-41e0-932c-4b048a1d1846"
+ "e583f525-87e8-411f-a9ec-dbea54894918"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,19 +117,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11997"
],
"x-ms-correlation-request-id": [
- "cf369ea1-b333-43b8-bf2e-2e649dfa5277"
+ "44e96d0c-82e4-4779-aafa-39b4a290f95c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065750Z:cf369ea1-b333-43b8-bf2e-2e649dfa5277"
+ "SOUTHINDIA:20201106T174211Z:44e96d0c-82e4-4779-aafa-39b4a290f95c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:49 GMT"
+ "Fri, 06 Nov 2020 17:42:10 GMT"
],
"Content-Length": [
"5500"
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0373740-5228-4b35-80e9-b766c6cae095"
+ "0e3e8e30-89f7-4730-bfe4-54410e318d31"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f1acf326-3324-4467-8539-fc6eb1d1eb07"
+ "c14fbf3a-8711-4353-bd32-b85e06036087"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,19 +186,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11998"
],
"x-ms-correlation-request-id": [
- "a0c359ca-1c4d-4d0c-ade4-db4de7ab5057"
+ "50e5eac2-8ef6-4164-9acb-854f1d16ed06"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065726Z:a0c359ca-1c4d-4d0c-ade4-db4de7ab5057"
+ "SOUTHINDIA:20201106T174146Z:50e5eac2-8ef6-4164-9acb-854f1d16ed06"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:25 GMT"
+ "Fri, 06 Nov 2020 17:41:45 GMT"
],
"Content-Length": [
"3559"
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ceacb69-3ab6-40b8-8fd1-e5d5a501f8c5"
+ "e78e9bf0-6118-4ed1-8058-db753cc0bf92"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7b7f6ed-dc15-48f3-83eb-3878fb5037cf"
+ "41dd184e-16bd-40f3-bab8-a6f16da1710c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,19 +255,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11996"
],
"x-ms-correlation-request-id": [
- "588ccbfa-b7c7-4da8-b306-fcb1558747d6"
+ "cb14cc39-344c-4eee-a1fc-355acf6688b3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065750Z:588ccbfa-b7c7-4da8-b306-fcb1558747d6"
+ "SOUTHINDIA:20201106T174211Z:cb14cc39-344c-4eee-a1fc-355acf6688b3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:50 GMT"
+ "Fri, 06 Nov 2020 17:42:11 GMT"
],
"Content-Length": [
"3559"
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8ea99bc-a9d8-4a51-88fc-1bf6f675d90a"
+ "e59347a9-4daa-42f8-8f6e-b91a121bd32d"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f28b95da-d223-4caf-9b94-b88dfe60e172"
+ "70404fe4-d649-46c2-88a0-79bfdbb2728d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,16 +327,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "9e8d8ed2-56f0-4c5c-8792-66e933a1d83f"
+ "ed8cf59a-4c23-49a6-b46c-2fb096b3569e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065726Z:9e8d8ed2-56f0-4c5c-8792-66e933a1d83f"
+ "SOUTHINDIA:20201106T174146Z:ed8cf59a-4c23-49a6-b46c-2fb096b3569e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:26 GMT"
+ "Fri, 06 Nov 2020 17:41:45 GMT"
],
"Content-Length": [
"711"
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1abbf24b-8432-4b45-beac-cf55ffe0979d"
+ "8d1a1683-a0e8-49e9-8ae0-0dd14534eddf"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c10028b2-51a0-4c0b-952e-aa28f88a83e5"
+ "eb762c29-213c-4754-9b58-f7511b918291"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -396,16 +396,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "6367c847-70fd-4300-a073-1c35444feba0"
+ "32926a5d-4518-4aeb-b6a0-e7e94575f61f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065751Z:6367c847-70fd-4300-a073-1c35444feba0"
+ "SOUTHINDIA:20201106T174212Z:32926a5d-4518-4aeb-b6a0-e7e94575f61f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:50 GMT"
+ "Fri, 06 Nov 2020 17:42:11 GMT"
],
"Content-Length": [
"711"
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76fd540e-6531-4a83-8106-f940be5166ce"
+ "2273ce9c-f904-4c29-bbf4-fe909cc6a866"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "40c863f8-93bf-40b6-9193-7ca8ec0f2e44"
+ "c073a639-1ad2-4002-95ea-2b35f78dd2a0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,16 +465,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "cf0d865a-9898-4ebf-bdde-fdc9b5d92539"
+ "93c12f27-ca6f-4c95-9011-68ce439a6777"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065727Z:cf0d865a-9898-4ebf-bdde-fdc9b5d92539"
+ "SOUTHINDIA:20201106T174147Z:93c12f27-ca6f-4c95-9011-68ce439a6777"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:26 GMT"
+ "Fri, 06 Nov 2020 17:41:46 GMT"
],
"Content-Length": [
"265"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da09edf2-2034-4b1f-80c4-94a65419f926"
+ "1e5e572f-d434-46d9-af6c-8191ad28be9d"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "579a793d-1c62-4462-90fe-3684d2548a96"
+ "eaaa1e17-641d-4a3a-8015-d0893c869ef6"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,16 +534,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "e8ac2f7b-6e9e-4ad4-a886-545537ff6424"
+ "9358a834-3b89-4008-a9c4-5a1537b6f476"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065751Z:e8ac2f7b-6e9e-4ad4-a886-545537ff6424"
+ "SOUTHINDIA:20201106T174212Z:9358a834-3b89-4008-a9c4-5a1537b6f476"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:50 GMT"
+ "Fri, 06 Nov 2020 17:42:12 GMT"
],
"Content-Length": [
"265"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62105d13-438f-476b-a317-76de07994b29"
+ "3386eedc-7b9b-4775-84c3-6e267938415e"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a5983ce4-8d28-435d-aa6b-954b4f6df30a"
+ "ab312e54-4492-4a2a-ae45-75812c7c662c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,16 +603,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "57419aa3-fab1-444c-b9b8-c2850ec9a65e"
+ "d8ab9a9c-9cef-4ef2-97ff-5ebbcfe2ee1d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065727Z:57419aa3-fab1-444c-b9b8-c2850ec9a65e"
+ "SOUTHINDIA:20201106T174147Z:d8ab9a9c-9cef-4ef2-97ff-5ebbcfe2ee1d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:27 GMT"
+ "Fri, 06 Nov 2020 17:41:46 GMT"
],
"Content-Length": [
"262"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "03675fc8-cfe1-422f-a143-c3a47fd59e9e"
+ "fb2d8e28-10ac-48d0-afcf-0a96c06841b0"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "79d73d66-ea91-47e0-996b-d98f9261119a"
+ "95aab9dc-2242-4d17-954f-651647521618"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -672,16 +672,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "889f908f-510e-4df9-b35a-a9a2fecb9767"
+ "2d55946f-0276-445f-ad53-82db4e5ed883"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065753Z:889f908f-510e-4df9-b35a-a9a2fecb9767"
+ "SOUTHINDIA:20201106T174213Z:2d55946f-0276-445f-ad53-82db4e5ed883"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:52 GMT"
+ "Fri, 06 Nov 2020 17:42:12 GMT"
],
"Content-Length": [
"262"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts1.org\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d7c7940-ce48-48ca-a5a7-d014a868e1b1"
+ "3d326aac-6abe-4c71-9fc0-695b6676651f"
],
"Accept-Language": [
"en-US"
@@ -732,7 +732,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8bf50e57-6f86-4e35-bac7-e7dc203a3b85"
+ "7584827a-00b7-4430-87a5-8e69dccb68f2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -744,19 +744,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "be77e4b3-e164-4ca5-b5bf-1d106ab9f94a"
+ "9b8c6ae7-2d05-4417-8061-2e658c791ce8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065749Z:be77e4b3-e164-4ca5-b5bf-1d106ab9f94a"
+ "SOUTHINDIA:20201106T174210Z:9b8c6ae7-2d05-4417-8061-2e658c791ce8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:48 GMT"
+ "Fri, 06 Nov 2020 17:42:10 GMT"
],
"Content-Length": [
"1010"
@@ -768,7 +768,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"71D2E8CF38698FC02554CAF2730E6A7EC72EC4DA\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"d6f2588a-22b6-4a3c-bbf9-a4d4865f46fe\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"51FCF24295E5AB4932801BAA8544AD7AA3606F59\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"7434a9c0-a23e-4f66-b0e3-700016cc8e1e\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -778,7 +778,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6b00b353-005b-444b-ad11-b8f9085b7f94"
+ "055c4d7e-593a-4b98-856d-8174d60201f4"
],
"Accept-Language": [
"en-US"
@@ -801,13 +801,13 @@
"11999"
],
"x-ms-request-id": [
- "7debe1a2-331c-401e-bc10-f352b2a46ed5"
+ "c245892b-1184-4474-b630-fc858df08d41"
],
"x-ms-correlation-request-id": [
- "7debe1a2-331c-401e-bc10-f352b2a46ed5"
+ "c245892b-1184-4474-b630-fc858df08d41"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065753Z:7debe1a2-331c-401e-bc10-f352b2a46ed5"
+ "SOUTHINDIA:20201106T174213Z:c245892b-1184-4474-b630-fc858df08d41"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -816,7 +816,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:52 GMT"
+ "Fri, 06 Nov 2020 17:42:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -838,7 +838,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eb08e00d-098b-4990-9531-b7db3ea9ee06"
+ "93c02982-ae76-4c34-bee9-9bcc437f1c4f"
],
"Accept-Language": [
"en-US"
@@ -861,7 +861,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5054d868-85b2-4577-8b62-3cc1f0a85d78"
+ "f5ac7231-39b3-46fb-9fef-f30ba5b45858"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -873,19 +873,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11995"
],
"x-ms-correlation-request-id": [
- "4c8801b2-9714-4e76-9542-caed49959f77"
+ "438ef253-6f65-44aa-bd82-225e8445f1e2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065755Z:4c8801b2-9714-4e76-9542-caed49959f77"
+ "SOUTHINDIA:20201106T174213Z:438ef253-6f65-44aa-bd82-225e8445f1e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:54 GMT"
+ "Fri, 06 Nov 2020 17:42:13 GMT"
],
"Content-Length": [
"914"
@@ -897,7 +897,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"71D2E8CF38698FC02554CAF2730E6A7EC72EC4DA\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"51FCF24295E5AB4932801BAA8544AD7AA3606F59\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -907,7 +907,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "feb3e9e4-c927-49ce-a7fd-b19f18c051e3"
+ "75460ec1-d205-48fd-ba71-547be52d9b82"
],
"Accept-Language": [
"en-US"
@@ -930,7 +930,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bf860105-4357-40f8-a537-048e6c944604"
+ "4a01df76-fec8-4ed7-a344-b832a9e765ec"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -942,19 +942,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "c597af42-2700-40e3-87ea-33590a883169"
+ "ed9c15e3-104e-45f5-92b2-ad6f348d989e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065759Z:c597af42-2700-40e3-87ea-33590a883169"
+ "SOUTHINDIA:20201106T174217Z:ed9c15e3-104e-45f5-92b2-ad6f348d989e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:59 GMT"
+ "Fri, 06 Nov 2020 17:42:16 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
index 966e9bdd567a..3d80650c0015 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ca829d4-cb2d-4c6d-b089-5e6a704422e5"
+ "658e72b0-8db0-4121-9e5e-5e6b1da3dd82"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B408765205F5\""
+ "\"1D6B40A0C725360\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0d92b9c6-0695-4157-b438-40e363f7beac"
+ "e332c49c-e837-45a1-aae5-17d9e65542d0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -48,19 +48,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "284dedd3-de5d-4c4e-9690-f420d1e271e1"
+ "dbdc1350-0aff-4514-a4dd-ee9b77354382"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065627Z:284dedd3-de5d-4c4e-9690-f420d1e271e1"
+ "SOUTHINDIA:20201106T174045Z:dbdc1350-0aff-4514-a4dd-ee9b77354382"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:26 GMT"
+ "Fri, 06 Nov 2020 17:40:44 GMT"
],
"Content-Length": [
- "5704"
+ "5699"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a4f53b86-79ea-41e5-9366-e4ca9cf2d9a3"
+ "8d274530-98aa-42b2-854a-f7e334b76eb4"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B408765205F5\""
+ "\"1D6B40A0C725360\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ce7e4de4-5706-4499-af49-787c42b10d9a"
+ "2d87fe2a-6c5f-457e-858d-e6c9274b1a9e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -120,19 +120,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "dcdbd4ce-325c-44ab-b014-da650d4866ef"
+ "a73ef419-91b2-4928-aeeb-32c974f37cd8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065652Z:dcdbd4ce-325c-44ab-b014-da650d4866ef"
+ "SOUTHINDIA:20201106T174113Z:a73ef419-91b2-4928-aeeb-32c974f37cd8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:52 GMT"
+ "Fri, 06 Nov 2020 17:41:12 GMT"
],
"Content-Length": [
- "5704"
+ "5699"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:45:49.1833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2f83d6e-0213-43c3-b90c-8293913a8520"
+ "4691d7ba-68f8-4a2c-b7b3-ce8195dae6e0"
],
"Accept-Language": [
"en-US"
@@ -171,13 +171,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A03C5A9CB\""
+ "\"1D6B464079F88B5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "80603377-a7b3-4035-9f36-eb25cf7262c9"
+ "178ac032-9c75-47ff-b32d-7ffc17b20d40"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -192,16 +192,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "29fc0666-ece6-4f0d-807f-102b14c7baf2"
+ "076f14c7-6c60-4769-897e-1d71edcb0bf7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065659Z:29fc0666-ece6-4f0d-807f-102b14c7baf2"
+ "SOUTHINDIA:20201106T174120Z:076f14c7-6c60-4769-897e-1d71edcb0bf7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:58 GMT"
+ "Fri, 06 Nov 2020 17:41:20 GMT"
],
"Content-Length": [
"5744"
@@ -213,7 +213,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -223,7 +223,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b7122ee-6e00-4172-949b-6c256add4ba9"
+ "30333035-3909-434d-a75b-f38f3dbfe7a7"
],
"Accept-Language": [
"en-US"
@@ -243,13 +243,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A03C5A9CB\""
+ "\"1D6B464079F88B5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "69a7d291-eb56-4a09-b992-e0fd0c32d364"
+ "2f70bbe1-fb81-4d9f-9376-650ef3a3556a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -264,16 +264,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "32501195-2a5b-43ad-8bb8-35d54f889394"
+ "2c1dee24-d1a8-4851-ab2d-f1cf4d3897d0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065701Z:32501195-2a5b-43ad-8bb8-35d54f889394"
+ "SOUTHINDIA:20201106T174123Z:2c1dee24-d1a8-4851-ab2d-f1cf4d3897d0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:01 GMT"
+ "Fri, 06 Nov 2020 17:41:22 GMT"
],
"Content-Length": [
"5744"
@@ -285,7 +285,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -295,7 +295,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aec057e3-ec70-47cb-b91f-fe19a3790596"
+ "d4b79ec3-5811-4fb4-85ea-4a50e10b34ea"
],
"Accept-Language": [
"en-US"
@@ -315,13 +315,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A03C5A9CB\""
+ "\"1D6B464079F88B5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e892615-bd75-4ec7-b75f-e5c840a979af"
+ "e9d307c0-7599-4dee-88bc-75e930f053d0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -336,16 +336,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "cbb143c7-e3fb-4953-8347-269135a1f972"
+ "7d816064-ffa1-46b0-a2f8-68606308dcf2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065703Z:cbb143c7-e3fb-4953-8347-269135a1f972"
+ "SOUTHINDIA:20201106T174125Z:7d816064-ffa1-46b0-a2f8-68606308dcf2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:03 GMT"
+ "Fri, 06 Nov 2020 17:41:25 GMT"
],
"Content-Length": [
"5744"
@@ -357,7 +357,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -367,7 +367,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "de11c6ea-c7b5-47ab-ac5a-bffbef5dd138"
+ "4509ccae-dd11-40cb-bb32-df52b87019ef"
],
"Accept-Language": [
"en-US"
@@ -387,13 +387,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A03C5A9CB\""
+ "\"1D6B464079F88B5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "089ccabf-88f5-4330-87f9-3a73f6d29910"
+ "ead9f6c5-4308-4e42-932e-5a32f9268f54"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -408,16 +408,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "15072882-8feb-430d-9921-b09af84285d5"
+ "59ad3b0f-6452-4581-be27-3f245fcf631c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065706Z:15072882-8feb-430d-9921-b09af84285d5"
+ "SOUTHINDIA:20201106T174128Z:59ad3b0f-6452-4581-be27-3f245fcf631c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:05 GMT"
+ "Fri, 06 Nov 2020 17:41:28 GMT"
],
"Content-Length": [
"5744"
@@ -429,7 +429,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -439,7 +439,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a105a87c-00d9-43bc-8789-3cbea81adef2"
+ "9746bd32-8e96-49ac-a9df-9f1968452ad8"
],
"Accept-Language": [
"en-US"
@@ -459,13 +459,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6B4641078F4A0\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "971b4664-c089-4ba2-b3fe-b98215fec8b3"
+ "211cf80f-53e2-4fa5-a84b-f551555c9e40"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -480,16 +480,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "f1d86043-9e4b-4e00-8535-8abd4ff0689a"
+ "ed223698-c1c9-4c70-9887-ae60f58da900"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065718Z:f1d86043-9e4b-4e00-8535-8abd4ff0689a"
+ "SOUTHINDIA:20201106T174139Z:ed223698-c1c9-4c70-9887-ae60f58da900"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:18 GMT"
+ "Fri, 06 Nov 2020 17:41:39 GMT"
],
"Content-Length": [
"5699"
@@ -501,7 +501,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -511,7 +511,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "81c45d96-e7d8-4454-bc5c-41b4f06c8ec8"
+ "acce11f2-eae1-4bc0-88f5-a4a8a040bfcb"
],
"Accept-Language": [
"en-US"
@@ -534,7 +534,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73794f96-e3dd-4627-9887-6f0df9db8630"
+ "00d82547-9b77-49bf-955b-1daaf197fe19"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -549,16 +549,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "1ac4abfc-5d53-417e-9c77-efdbeac9a479"
+ "08e1e4bc-8c42-4ead-8ede-41a005dc5f18"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065628Z:1ac4abfc-5d53-417e-9c77-efdbeac9a479"
+ "SOUTHINDIA:20201106T174045Z:08e1e4bc-8c42-4ead-8ede-41a005dc5f18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:27 GMT"
+ "Fri, 06 Nov 2020 17:40:45 GMT"
],
"Content-Length": [
"3544"
@@ -580,7 +580,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6681a3e4-748d-4993-9d67-c5044ec4f441"
+ "be473a1b-f417-4a50-bcfa-59f96048ce4c"
],
"Accept-Language": [
"en-US"
@@ -603,7 +603,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "280337ca-e04e-40d0-a885-9dea627b8cbc"
+ "2ad034b9-ca48-4a84-81d4-8b947809b965"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -618,16 +618,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "c26dc375-9e73-4afc-83c4-a7d1862e80d3"
+ "3233d1bf-7309-447e-9eb9-c89a60f0cc86"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065653Z:c26dc375-9e73-4afc-83c4-a7d1862e80d3"
+ "SOUTHINDIA:20201106T174113Z:3233d1bf-7309-447e-9eb9-c89a60f0cc86"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:52 GMT"
+ "Fri, 06 Nov 2020 17:41:12 GMT"
],
"Content-Length": [
"3544"
@@ -649,7 +649,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c4d0f75-6c10-4222-9a8b-5bd6c4312317"
+ "66471a33-ae92-4df5-9a63-c4e722d927f1"
],
"Accept-Language": [
"en-US"
@@ -672,7 +672,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b0e531b8-60fc-4b6f-93be-39ec3d5e9723"
+ "49480883-10bd-4d35-aa34-3269849cc1a4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -687,16 +687,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "35b555f8-bed2-4028-b5ce-caa37a8499ec"
+ "97dde245-44cb-403b-8227-6617ab0d9e95"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065659Z:35b555f8-bed2-4028-b5ce-caa37a8499ec"
+ "SOUTHINDIA:20201106T174121Z:97dde245-44cb-403b-8227-6617ab0d9e95"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:59 GMT"
+ "Fri, 06 Nov 2020 17:41:20 GMT"
],
"Content-Length": [
"3544"
@@ -718,7 +718,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd2ab97f-1684-4f01-ae0c-170b9686a13b"
+ "2e0d7b0c-7697-457a-8409-7f082ac99f7c"
],
"Accept-Language": [
"en-US"
@@ -741,7 +741,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8d75f273-7355-4732-a381-3ee6a66c408f"
+ "384426d4-a510-4700-b237-48d6bc706443"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -756,16 +756,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "18399c56-0559-4485-b4ca-fc58edac93f1"
+ "961da71f-93d7-48f8-a15b-4dbe53a59a00"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065701Z:18399c56-0559-4485-b4ca-fc58edac93f1"
+ "SOUTHINDIA:20201106T174123Z:961da71f-93d7-48f8-a15b-4dbe53a59a00"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:01 GMT"
+ "Fri, 06 Nov 2020 17:41:22 GMT"
],
"Content-Length": [
"3544"
@@ -787,7 +787,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a98b3ec4-f753-417c-9b6d-09323657d329"
+ "0513fb46-c6e4-4a5f-88de-5270d7312e52"
],
"Accept-Language": [
"en-US"
@@ -810,7 +810,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e1c5a676-c3e1-436e-b47e-1dc36c55029e"
+ "aa8731c9-6187-4c4d-b3dd-b5c602d5c3ab"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -825,16 +825,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "37f7a7b8-e7a5-4b43-9f7c-1f5c83f6f728"
+ "e7b2403a-29ea-4c07-b813-68273623cc42"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065704Z:37f7a7b8-e7a5-4b43-9f7c-1f5c83f6f728"
+ "SOUTHINDIA:20201106T174126Z:e7b2403a-29ea-4c07-b813-68273623cc42"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:04 GMT"
+ "Fri, 06 Nov 2020 17:41:26 GMT"
],
"Content-Length": [
"3544"
@@ -856,7 +856,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ed5c6f9-7b06-43ae-b2e6-8d6881190e84"
+ "77072fbf-f567-4357-a713-bcaa39768d49"
],
"Accept-Language": [
"en-US"
@@ -879,7 +879,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "133f58ea-cd32-4d2f-9447-0b83e1aa6d56"
+ "94c5d868-b984-4360-8952-05c535817a6d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -894,16 +894,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "8ee722eb-1de4-4f31-8b18-b78b27d35c8b"
+ "1439de8e-e718-48f7-b150-478e460347b4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065706Z:8ee722eb-1de4-4f31-8b18-b78b27d35c8b"
+ "SOUTHINDIA:20201106T174129Z:1439de8e-e718-48f7-b150-478e460347b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:06 GMT"
+ "Fri, 06 Nov 2020 17:41:29 GMT"
],
"Content-Length": [
"3544"
@@ -925,7 +925,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a062b04d-c79e-4d6e-85e2-f76e81e10770"
+ "832024ca-adc1-4426-a888-8e5ec7a993c2"
],
"Accept-Language": [
"en-US"
@@ -948,7 +948,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a35cc1ad-ade7-4f64-a7f1-04b4841678ff"
+ "f9f4d419-e3b9-4bfa-8160-fb8a1096779c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -963,16 +963,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "27734d0e-5f39-46f2-9249-9b3c8a365bd5"
+ "b6559e6d-b6d9-46c5-8a20-8355901ed803"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065718Z:27734d0e-5f39-46f2-9249-9b3c8a365bd5"
+ "SOUTHINDIA:20201106T174139Z:b6559e6d-b6d9-46c5-8a20-8355901ed803"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:18 GMT"
+ "Fri, 06 Nov 2020 17:41:39 GMT"
],
"Content-Length": [
"3544"
@@ -994,7 +994,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2e1b6ad-f6ba-4200-ba64-29a3b3123a3c"
+ "79048795-5dec-410c-bf70-09d1c3f26f0d"
],
"Accept-Language": [
"en-US"
@@ -1017,7 +1017,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e7ebfa28-de74-4cdf-9505-7af01486399c"
+ "1506601e-23a3-47ba-92fc-fa027a6f6d8d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1032,16 +1032,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "f34e1c90-c87c-4f74-a92c-2f94440d0fcb"
+ "3b6a28de-0194-4065-8dd6-18482042e518"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065628Z:f34e1c90-c87c-4f74-a92c-2f94440d0fcb"
+ "SOUTHINDIA:20201106T174047Z:3b6a28de-0194-4065-8dd6-18482042e518"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:28 GMT"
+ "Fri, 06 Nov 2020 17:40:46 GMT"
],
"Content-Length": [
"701"
@@ -1063,7 +1063,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ad03b23-a419-416b-bdf3-d5f8b2df52e1"
+ "ae8f8a37-e37d-474d-9459-b67142580b8a"
],
"Accept-Language": [
"en-US"
@@ -1086,7 +1086,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "62b1131a-7410-4b2d-ae2c-9d82dfc9cb5f"
+ "bbdb9b8a-0f13-40fa-ab5c-daca84d5aa94"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1101,16 +1101,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "65a4460a-1fb6-48e4-9b00-9153b21534ed"
+ "1c09e456-3931-4456-8ae1-5b5d93ef4ec9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065653Z:65a4460a-1fb6-48e4-9b00-9153b21534ed"
+ "SOUTHINDIA:20201106T174113Z:1c09e456-3931-4456-8ae1-5b5d93ef4ec9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:53 GMT"
+ "Fri, 06 Nov 2020 17:41:13 GMT"
],
"Content-Length": [
"701"
@@ -1132,7 +1132,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d76da12-bea0-453f-9ec7-c6f95b1b16a4"
+ "486554a1-35e1-433a-b1b0-191e9092c75a"
],
"Accept-Language": [
"en-US"
@@ -1155,7 +1155,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a71a4920-5335-4665-8f3d-ad4f82d0385e"
+ "7bb5e1b7-9580-465e-9ca3-14bd2e5cc2cb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1170,16 +1170,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "7c2b4332-9067-4eaa-a28d-386641e3154e"
+ "043e3491-dc59-470f-8d78-993e23f3fef0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065700Z:7c2b4332-9067-4eaa-a28d-386641e3154e"
+ "SOUTHINDIA:20201106T174121Z:043e3491-dc59-470f-8d78-993e23f3fef0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:59 GMT"
+ "Fri, 06 Nov 2020 17:41:21 GMT"
],
"Content-Length": [
"701"
@@ -1201,7 +1201,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1350fb13-d850-445c-8521-e6ded8ea8328"
+ "f57f4835-73f6-496a-9fde-97841a12fcd2"
],
"Accept-Language": [
"en-US"
@@ -1224,7 +1224,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "498a7014-e9ec-402f-90be-71696f740814"
+ "379612ec-a496-45da-b4a9-1d0d093c5e05"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1239,16 +1239,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "3616773a-f191-41b2-bfdf-066a28ce355d"
+ "c39dd05c-b069-4fec-8bf6-c3adad4aa7df"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065702Z:3616773a-f191-41b2-bfdf-066a28ce355d"
+ "SOUTHINDIA:20201106T174124Z:c39dd05c-b069-4fec-8bf6-c3adad4aa7df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:02 GMT"
+ "Fri, 06 Nov 2020 17:41:23 GMT"
],
"Content-Length": [
"701"
@@ -1270,7 +1270,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab1d4085-4468-44f8-8537-5eb83c212ade"
+ "57e155f3-d940-4807-beca-ea73bf7a4481"
],
"Accept-Language": [
"en-US"
@@ -1293,7 +1293,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5e959f48-c7a7-4c01-9798-1f175ec44f33"
+ "ea001269-ccce-4968-837d-467bd09a8402"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1308,16 +1308,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "1b031dbc-9491-4b0e-ba09-b10267f61193"
+ "6a4da036-b096-4f1f-bce4-3e6f9c7b5c1c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065705Z:1b031dbc-9491-4b0e-ba09-b10267f61193"
+ "SOUTHINDIA:20201106T174126Z:6a4da036-b096-4f1f-bce4-3e6f9c7b5c1c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:04 GMT"
+ "Fri, 06 Nov 2020 17:41:26 GMT"
],
"Content-Length": [
"701"
@@ -1339,7 +1339,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b1330ae-93e2-4dcb-992c-8892cdc985ba"
+ "495d9692-397f-4045-ae31-0d944380c7db"
],
"Accept-Language": [
"en-US"
@@ -1362,7 +1362,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a95e5abd-1155-494a-8580-3af60801a3f7"
+ "55df3d16-f23c-441d-9af0-54c38495ccfa"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1377,16 +1377,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "214489c5-478d-4a96-bf10-70b6538a2a55"
+ "f710cbbb-a289-485e-8545-24b40c2a466a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065707Z:214489c5-478d-4a96-bf10-70b6538a2a55"
+ "SOUTHINDIA:20201106T174129Z:f710cbbb-a289-485e-8545-24b40c2a466a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:06 GMT"
+ "Fri, 06 Nov 2020 17:41:29 GMT"
],
"Content-Length": [
"701"
@@ -1408,7 +1408,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ca18f5c-5bae-48d1-966e-a28c5bd4ac73"
+ "2428d1ad-f8f2-4717-bdb5-d3475de887ef"
],
"Accept-Language": [
"en-US"
@@ -1431,7 +1431,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a988d209-b8f5-40e4-8025-b6eadf0aa19a"
+ "48a92a51-b8c3-455f-96f0-4509ce1ff483"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1446,16 +1446,16 @@
"11981"
],
"x-ms-correlation-request-id": [
- "97995a7d-a551-4f1d-bdf0-960740d6f99b"
+ "f5a258bf-9d44-4fea-a321-79c20b67b370"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065719Z:97995a7d-a551-4f1d-bdf0-960740d6f99b"
+ "SOUTHINDIA:20201106T174140Z:f5a258bf-9d44-4fea-a321-79c20b67b370"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:19 GMT"
+ "Fri, 06 Nov 2020 17:41:39 GMT"
],
"Content-Length": [
"701"
@@ -1477,7 +1477,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f66cb364-b3f0-4fd4-b094-e2910f0adaca"
+ "c941915a-af83-4f1b-8c8b-30e7f7240e20"
],
"Accept-Language": [
"en-US"
@@ -1500,7 +1500,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fc9e627b-4e0d-4c49-97cc-0a0c898d299a"
+ "341b4dd7-f60c-4253-8742-f2609db623b0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1515,16 +1515,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "20258233-550a-4220-917b-e4dd1a5a141b"
+ "9c00bf64-f8cf-4b06-a731-17eb24e30412"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065629Z:20258233-550a-4220-917b-e4dd1a5a141b"
+ "SOUTHINDIA:20201106T174048Z:9c00bf64-f8cf-4b06-a731-17eb24e30412"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:28 GMT"
+ "Fri, 06 Nov 2020 17:40:47 GMT"
],
"Content-Length": [
"255"
@@ -1546,7 +1546,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67d81f31-a912-4c13-812d-f259ea46e8ff"
+ "3764d8cf-06a0-40a9-8bd8-fdf41f0cc64f"
],
"Accept-Language": [
"en-US"
@@ -1569,7 +1569,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "826c3b4d-bba1-49f2-8c50-2295643b2564"
+ "56be335a-2958-495f-b8a5-aab96bb4f7c7"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1584,16 +1584,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "d1d78f85-69ff-4e91-8ed7-dd7ec8dd52eb"
+ "b8bd0494-7298-44ea-a068-8500ad899245"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065654Z:d1d78f85-69ff-4e91-8ed7-dd7ec8dd52eb"
+ "SOUTHINDIA:20201106T174114Z:b8bd0494-7298-44ea-a068-8500ad899245"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:54 GMT"
+ "Fri, 06 Nov 2020 17:41:13 GMT"
],
"Content-Length": [
"255"
@@ -1615,7 +1615,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63c50b52-5385-48c8-8a1d-8a9633652485"
+ "c5756caa-defb-4904-b73d-2707fa55f1e3"
],
"Accept-Language": [
"en-US"
@@ -1638,7 +1638,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2343a03e-9ded-4cd2-b032-6ee37e4ba256"
+ "90a2e35e-a3f4-4ac4-a170-0926d86337a0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1653,16 +1653,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "a18b522a-d19e-4f1a-a3d1-15f812c61e94"
+ "f13e707a-0e17-4ac0-aa4e-645b4127b4c9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065700Z:a18b522a-d19e-4f1a-a3d1-15f812c61e94"
+ "SOUTHINDIA:20201106T174122Z:f13e707a-0e17-4ac0-aa4e-645b4127b4c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:00 GMT"
+ "Fri, 06 Nov 2020 17:41:21 GMT"
],
"Content-Length": [
"255"
@@ -1684,7 +1684,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9c263e6-cd98-41bb-ab32-87f2e514caad"
+ "3b04fa16-a72a-4c24-a865-46483a836eb2"
],
"Accept-Language": [
"en-US"
@@ -1707,7 +1707,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "debdb780-ce76-492a-849d-96af3a2ec966"
+ "a7e7002d-f8fb-459e-915e-8e431939d4b9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1722,16 +1722,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "26eacfbd-e3a8-4f99-998b-c65cb0b82984"
+ "31299f07-ba34-4f92-8eeb-bb8d529adb2a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065702Z:26eacfbd-e3a8-4f99-998b-c65cb0b82984"
+ "SOUTHINDIA:20201106T174124Z:31299f07-ba34-4f92-8eeb-bb8d529adb2a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:02 GMT"
+ "Fri, 06 Nov 2020 17:41:23 GMT"
],
"Content-Length": [
"255"
@@ -1753,7 +1753,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2808799-cd92-4cc0-8f2d-5d920ae180c3"
+ "e3780739-47d4-4621-9f73-e32268757721"
],
"Accept-Language": [
"en-US"
@@ -1776,7 +1776,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6c4d000e-a731-490f-a624-2ca721b4bf34"
+ "fd69a23b-c9eb-4bc2-91e0-36e7d10b0dd1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1791,16 +1791,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "ea741b32-4fc6-4ba9-8c7c-af928309f73d"
+ "3e85651a-9c64-4c43-ae51-2dd5f33d6aa0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065705Z:ea741b32-4fc6-4ba9-8c7c-af928309f73d"
+ "SOUTHINDIA:20201106T174127Z:3e85651a-9c64-4c43-ae51-2dd5f33d6aa0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:05 GMT"
+ "Fri, 06 Nov 2020 17:41:27 GMT"
],
"Content-Length": [
"255"
@@ -1822,7 +1822,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b1be745-391d-4c74-b147-12f484e2b847"
+ "a0397b48-8838-4b52-9fbe-644811d9db0f"
],
"Accept-Language": [
"en-US"
@@ -1845,7 +1845,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4c58fe2e-98a2-4d17-87c6-880cc10d5eae"
+ "a0623cb2-0ff9-470d-a065-d13aefa4052e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1860,16 +1860,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "71d28d66-6b7a-48cb-b82c-23bbcca27c28"
+ "d9dccb4a-50dd-4b77-ba18-181451bdd344"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065707Z:71d28d66-6b7a-48cb-b82c-23bbcca27c28"
+ "SOUTHINDIA:20201106T174130Z:d9dccb4a-50dd-4b77-ba18-181451bdd344"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:07 GMT"
+ "Fri, 06 Nov 2020 17:41:29 GMT"
],
"Content-Length": [
"255"
@@ -1891,7 +1891,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "845c37f9-77bf-4b0b-9d97-6bf1f511b3be"
+ "ba2e1c4f-0552-4146-b7fb-c478cdf67e13"
],
"Accept-Language": [
"en-US"
@@ -1914,7 +1914,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f7afe8c2-71c7-4df9-8e13-0f2f598b216e"
+ "eaf26528-76e5-4233-a84d-14a7a123fca2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1929,16 +1929,16 @@
"11980"
],
"x-ms-correlation-request-id": [
- "539b8d2e-50b5-43fc-b807-606e3ab95e37"
+ "d2e2402e-3125-4f0c-b863-e7091d6253bd"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065720Z:539b8d2e-50b5-43fc-b807-606e3ab95e37"
+ "SOUTHINDIA:20201106T174140Z:d2e2402e-3125-4f0c-b863-e7091d6253bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:19 GMT"
+ "Fri, 06 Nov 2020 17:41:40 GMT"
],
"Content-Length": [
"255"
@@ -1960,7 +1960,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "695009db-3e71-4be0-9f17-397dd2b5faa8"
+ "11c47b3a-80a2-4302-861d-ff29201aef29"
],
"Accept-Language": [
"en-US"
@@ -1983,7 +1983,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d5e53003-a8f8-49ed-abd8-def81e2b5a53"
+ "ea0c210b-5a04-4a60-a17b-0df451b5a8ab"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1998,16 +1998,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "f1077816-ea55-4ae4-b07f-8b4d0092382f"
+ "d0da52b8-d7e7-44de-b57c-ecef657f5b2a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065629Z:f1077816-ea55-4ae4-b07f-8b4d0092382f"
+ "SOUTHINDIA:20201106T174048Z:d0da52b8-d7e7-44de-b57c-ecef657f5b2a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:29 GMT"
+ "Fri, 06 Nov 2020 17:40:48 GMT"
],
"Content-Length": [
"252"
@@ -2029,7 +2029,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a162692-69eb-43c9-9f0e-75e92a809068"
+ "78461d88-bcaf-44a5-b2b0-eb1a32a37d8c"
],
"Accept-Language": [
"en-US"
@@ -2052,7 +2052,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "517b6f97-fac7-427d-9f29-3480ab289f37"
+ "3bef015f-4524-462b-bf7d-ece564f9d0fb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2067,16 +2067,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "2ff691a3-1066-4ca6-ab9f-019c892a5b80"
+ "6ff2bd3b-4e17-49af-9e8e-3f81532f610e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065654Z:2ff691a3-1066-4ca6-ab9f-019c892a5b80"
+ "SOUTHINDIA:20201106T174114Z:6ff2bd3b-4e17-49af-9e8e-3f81532f610e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:54 GMT"
+ "Fri, 06 Nov 2020 17:41:14 GMT"
],
"Content-Length": [
"252"
@@ -2098,7 +2098,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3ece7e0-c6a7-4fe5-9583-29a3e888b7ab"
+ "52124565-829a-4396-bf89-1a90276fef32"
],
"Accept-Language": [
"en-US"
@@ -2121,7 +2121,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c7bad0bd-260c-4835-aa15-f84a5bbb9994"
+ "014cb9e9-653a-4854-97c4-142bc57759d9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2136,16 +2136,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "f3edff1a-2d73-4fb4-8891-cbd9d67533f6"
+ "f61669e6-8bdc-42d4-bc04-928a82ac4831"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065700Z:f3edff1a-2d73-4fb4-8891-cbd9d67533f6"
+ "SOUTHINDIA:20201106T174122Z:f61669e6-8bdc-42d4-bc04-928a82ac4831"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:00 GMT"
+ "Fri, 06 Nov 2020 17:41:21 GMT"
],
"Content-Length": [
"252"
@@ -2167,7 +2167,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "910208df-25aa-4de8-96ae-d15dc7ecf16c"
+ "62e896b4-f851-40c5-91e8-3e6b2c06536f"
],
"Accept-Language": [
"en-US"
@@ -2190,7 +2190,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c9283bfe-0e98-48eb-a26d-aa8f8f3cb75a"
+ "64820dfc-e7b1-4bc5-a911-98ac82bd6eac"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2205,16 +2205,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "3c9c739e-57b4-42fd-b8e9-8eef48d06f86"
+ "3ca46aee-c04c-414e-859d-e23fbf8020aa"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065703Z:3c9c739e-57b4-42fd-b8e9-8eef48d06f86"
+ "SOUTHINDIA:20201106T174125Z:3ca46aee-c04c-414e-859d-e23fbf8020aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:02 GMT"
+ "Fri, 06 Nov 2020 17:41:25 GMT"
],
"Content-Length": [
"252"
@@ -2236,7 +2236,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "545578e2-6dd3-4e1f-9fb3-746b773c4ace"
+ "7c614f66-fbd0-4699-a7e5-36b8929a8059"
],
"Accept-Language": [
"en-US"
@@ -2259,7 +2259,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "63307e47-e171-43af-af4d-6f7a47f0958b"
+ "553a2221-b8c1-49fb-82f3-665589f4c6de"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2274,16 +2274,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "25f169ad-8092-4013-908c-8d2fbeef89b5"
+ "293bb670-356b-4ada-8f33-6a9592adea58"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065705Z:25f169ad-8092-4013-908c-8d2fbeef89b5"
+ "SOUTHINDIA:20201106T174127Z:293bb670-356b-4ada-8f33-6a9592adea58"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:05 GMT"
+ "Fri, 06 Nov 2020 17:41:27 GMT"
],
"Content-Length": [
"252"
@@ -2305,7 +2305,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29e789ff-abf3-4ca8-be87-78fee6a5ff91"
+ "6e908b89-8357-408f-9f00-c7946dac034f"
],
"Accept-Language": [
"en-US"
@@ -2328,7 +2328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "062322e9-4cb9-4bf8-b2ee-5693c34752e1"
+ "c3a5c688-97c5-4504-b2be-1c664f968621"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2343,16 +2343,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "7b80012b-2db5-4434-9563-74e0e56b7e70"
+ "bf84efbf-60cf-4676-a6d3-8d4b707dce10"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065708Z:7b80012b-2db5-4434-9563-74e0e56b7e70"
+ "SOUTHINDIA:20201106T174130Z:bf84efbf-60cf-4676-a6d3-8d4b707dce10"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:07 GMT"
+ "Fri, 06 Nov 2020 17:41:30 GMT"
],
"Content-Length": [
"252"
@@ -2374,7 +2374,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "696eeebe-a8de-4f9a-ba09-0b5037497af9"
+ "15290955-68ab-4397-9725-3c101a094166"
],
"Accept-Language": [
"en-US"
@@ -2397,7 +2397,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b2dd64ac-dd0a-4d48-9e87-cbdd7ebffb78"
+ "d2d780c4-d778-47b8-957d-0ee078821782"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2412,16 +2412,16 @@
"11979"
],
"x-ms-correlation-request-id": [
- "e7f56ecf-3cd2-4265-bdfc-327bc1e1d8d5"
+ "0b0010c1-8ea7-46db-a486-b16c5670ddd2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065720Z:e7f56ecf-3cd2-4265-bdfc-327bc1e1d8d5"
+ "SOUTHINDIA:20201106T174141Z:0b0010c1-8ea7-46db-a486-b16c5670ddd2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:20 GMT"
+ "Fri, 06 Nov 2020 17:41:40 GMT"
],
"Content-Length": [
"252"
@@ -2443,7 +2443,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2f4acb9d-7e01-459c-8071-d4b6261a25c9"
+ "49a954bb-4625-4592-91cb-592c40ce2b6d"
],
"Accept-Language": [
"en-US"
@@ -2472,7 +2472,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98603c43-097f-421d-8433-c41b1c3f6888"
+ "23bb28ae-88dd-4b46-8fb1-04fa3be10204"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2487,16 +2487,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "a34281db-64dc-472d-ad20-c60616156616"
+ "737cdb99-9e7c-4bd2-b7c3-ebe114d000ae"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065652Z:a34281db-64dc-472d-ad20-c60616156616"
+ "SOUTHINDIA:20201106T174112Z:737cdb99-9e7c-4bd2-b7c3-ebe114d000ae"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:51 GMT"
+ "Fri, 06 Nov 2020 17:41:11 GMT"
],
"Content-Length": [
"1006"
@@ -2508,17 +2508,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"9a193235-22c5-46b0-a582-558618ef60bf\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"133507a7-35d9-48d1-a8b7-827c8cad2d6d\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "08b5b3ff-8820-4af1-b399-f8db8abf5695"
+ "4f1a99e7-55d1-41a8-acee-4f0e2466c3ce"
],
"Accept-Language": [
"en-US"
@@ -2544,13 +2544,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B408765205F5\""
+ "\"1D6B40A0C725360\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cb7bf805-18a1-4e21-84cd-dc283b415a4b"
+ "9fd2301d-b0e9-4fec-8f2a-62fc567aa497"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2565,16 +2565,16 @@
"499"
],
"x-ms-correlation-request-id": [
- "b2ee10e1-4e46-4361-976e-2eb40b0df830"
+ "929f954b-e6ae-4d97-aabe-81d2ce02c27b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065658Z:b2ee10e1-4e46-4361-976e-2eb40b0df830"
+ "SOUTHINDIA:20201106T174120Z:929f954b-e6ae-4d97-aabe-81d2ce02c27b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:56:58 GMT"
+ "Fri, 06 Nov 2020 17:41:19 GMT"
],
"Content-Length": [
"5944"
@@ -2586,7 +2586,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:56:55.9966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2596,7 +2596,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1378393d-3349-4b04-a051-32c3519b4cf9"
+ "2007e3c1-ad15-44e3-a736-901cb3ff4897"
],
"Accept-Language": [
"en-US"
@@ -2622,13 +2622,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A03C5A9CB\""
+ "\"1D6B464079F88B5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bee2b87d-ee31-43de-94ac-b384fbc29d9d"
+ "38b93325-455f-4692-923e-994870b56356"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2643,16 +2643,16 @@
"498"
],
"x-ms-correlation-request-id": [
- "14c4b868-4a0b-46db-a8b0-539bc2702625"
+ "6a6278f1-f963-46a0-a6d4-bc09a691fc23"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065713Z:14c4b868-4a0b-46db-a8b0-539bc2702625"
+ "SOUTHINDIA:20201106T174134Z:6a6278f1-f963-46a0-a6d4-bc09a691fc23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:13 GMT"
+ "Fri, 06 Nov 2020 17:41:34 GMT"
],
"Content-Length": [
"5899"
@@ -2664,7 +2664,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2674,7 +2674,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d2755c1c-89ad-4701-a16d-28e7f7f53b3f"
+ "373bdc52-56f8-4068-b443-58025f0d3a49"
],
"Accept-Language": [
"en-US"
@@ -2694,16 +2694,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-request-id": [
- "82bb1382-0536-486f-b82d-defb4396649e"
+ "e6cb6091-803b-4078-b97e-21c0d21d42ae"
],
"x-ms-correlation-request-id": [
- "82bb1382-0536-486f-b82d-defb4396649e"
+ "e6cb6091-803b-4078-b97e-21c0d21d42ae"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065714Z:82bb1382-0536-486f-b82d-defb4396649e"
+ "SOUTHINDIA:20201106T174134Z:e6cb6091-803b-4078-b97e-21c0d21d42ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2712,7 +2712,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:13 GMT"
+ "Fri, 06 Nov 2020 17:41:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2734,7 +2734,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ace5d142-21dd-45a1-8b44-283666a8a5aa"
+ "30c4c371-4ac7-4299-a93f-3e52dc3f048b"
],
"Accept-Language": [
"en-US"
@@ -2754,16 +2754,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-request-id": [
- "720f5e76-67bb-418e-9643-c2ff8804eb87"
+ "84f85b16-b53f-43da-bed5-fda528817998"
],
"x-ms-correlation-request-id": [
- "720f5e76-67bb-418e-9643-c2ff8804eb87"
+ "84f85b16-b53f-43da-bed5-fda528817998"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065720Z:720f5e76-67bb-418e-9643-c2ff8804eb87"
+ "SOUTHINDIA:20201106T174141Z:84f85b16-b53f-43da-bed5-fda528817998"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2772,7 +2772,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:19 GMT"
+ "Fri, 06 Nov 2020 17:41:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2794,7 +2794,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f42ce972-f5e0-44fb-a84f-5706f9940064"
+ "43032a73-2813-4bb4-99c4-2904ea21cb74"
],
"Accept-Language": [
"en-US"
@@ -2817,7 +2817,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "76fc3ec1-c194-4163-ae5f-00720da95657"
+ "f6026f0d-f3fc-4777-9de8-e58deb7cd478"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2832,16 +2832,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "3b3832fb-2b9b-448a-8461-98d2851d239e"
+ "dd00fb6b-8a85-47dd-b12c-14d14e4b70cd"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065714Z:3b3832fb-2b9b-448a-8461-98d2851d239e"
+ "SOUTHINDIA:20201106T174135Z:dd00fb6b-8a85-47dd-b12c-14d14e4b70cd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:14 GMT"
+ "Fri, 06 Nov 2020 17:41:35 GMT"
],
"Content-Length": [
"909"
@@ -2853,7 +2853,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"E77F2E33977F3DBCD5234407814DDB0234AED9CF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -2863,7 +2863,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ad5e1e42-d2f1-42ac-a3f7-ff61646ed182"
+ "c0eb9c4c-dad5-41ac-9769-99a2e90a0730"
],
"Accept-Language": [
"en-US"
@@ -2886,7 +2886,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a1e9eca5-d5f4-48e7-b7bf-7927b7b55196"
+ "7db4f5f4-89b4-4276-8c66-ef56d3d6433e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2901,16 +2901,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "02bae407-554d-4914-b00e-83bc8636e5fa"
+ "e8e0a489-c72b-432a-8dfe-bad2d15c6092"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065717Z:02bae407-554d-4914-b00e-83bc8636e5fa"
+ "SOUTHINDIA:20201106T174138Z:e8e0a489-c72b-432a-8dfe-bad2d15c6092"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:57:17 GMT"
+ "Fri, 06 Nov 2020 17:41:38 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
index 2442e26768f6..76c3dabe0e75 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c9fd9ac1-7df1-49a9-a7bf-53e3f171d962"
+ "cca52882-ea25-45d2-b63d-e46540569792"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6B4641078F4A0\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "edb3e919-e6c3-449a-87bd-5eba3ab6afac"
+ "ae813831-786d-4cda-8174-087913406fb2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,19 +45,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-correlation-request-id": [
- "96dc322b-7b07-4ad0-b14c-1bb5d8f1c965"
+ "6a56e118-dd7e-499b-9d37-e17267017049"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065814Z:96dc322b-7b07-4ad0-b14c-1bb5d8f1c965"
+ "SOUTHINDIA:20201106T174221Z:6a56e118-dd7e-499b-9d37-e17267017049"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:14 GMT"
+ "Fri, 06 Nov 2020 17:42:21 GMT"
],
"Content-Length": [
"5699"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff2c7042-b6f8-4827-b9eb-59cc7d59c711"
+ "4c6ca382-8a66-4239-b4c2-8758b01821cd"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6B4641078F4A0\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fb87ecc3-4188-40ee-a660-3a86a2963c69"
+ "31f83fa5-d4c0-4f6d-a5ff-635986b81938"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,19 +117,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-correlation-request-id": [
- "0beddcc6-49b5-4391-ac4f-e68820039bb6"
+ "18f8a27a-f435-45e4-bd64-9ca7f0b6f41c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065839Z:0beddcc6-49b5-4391-ac4f-e68820039bb6"
+ "SOUTHINDIA:20201106T174248Z:18f8a27a-f435-45e4-bd64-9ca7f0b6f41c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:38 GMT"
+ "Fri, 06 Nov 2020 17:42:48 GMT"
],
"Content-Length": [
"5699"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "026c53c0-9987-4d67-96b3-beff5973b9bb"
+ "c6ee7cd0-7b30-4cd1-9c6c-c994a0f0a670"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f6208dbf-a4d8-4b19-b387-bb3e628648d0"
+ "a50441d2-16dc-4c8d-a1a5-349e6f558097"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,19 +186,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-correlation-request-id": [
- "cce2d838-db50-4bf6-95ad-3597dba70ef3"
+ "621d83c3-32da-4ef1-ba0f-b7c91ac106d5"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065815Z:cce2d838-db50-4bf6-95ad-3597dba70ef3"
+ "SOUTHINDIA:20201106T174222Z:621d83c3-32da-4ef1-ba0f-b7c91ac106d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:14 GMT"
+ "Fri, 06 Nov 2020 17:42:21 GMT"
],
"Content-Length": [
"3544"
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cd55d067-b29f-43d3-b35e-3d15de489bde"
+ "a42462a1-f913-4ed8-84e4-3cc1599a7356"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "73bbdbf2-0a15-4441-995e-ff8df541a574"
+ "7e406e1b-a21c-4fa2-81cc-e32a9efc54ee"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,19 +255,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11996"
],
"x-ms-correlation-request-id": [
- "5d8d60bf-b416-4c8d-ab23-ba4e25210b91"
+ "6a760d45-9099-4051-ba02-0a4a2faa9d23"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065839Z:5d8d60bf-b416-4c8d-ab23-ba4e25210b91"
+ "SOUTHINDIA:20201106T174248Z:6a760d45-9099-4051-ba02-0a4a2faa9d23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:39 GMT"
+ "Fri, 06 Nov 2020 17:42:48 GMT"
],
"Content-Length": [
"3544"
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20650cd3-7aee-40c9-b34d-4bcf442e1682"
+ "3c0d8c58-5020-42e7-83a0-238dfb11406d"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5694bc6a-e81f-442a-abb2-bc3609ebee19"
+ "8e550c30-5ff8-4b1b-838d-bfedb479cc67"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,16 +327,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "5ee9b9d3-e533-4cd9-af10-6b708cb9224f"
+ "ec56fb39-6543-4fa0-bd01-909d08a5e547"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065815Z:5ee9b9d3-e533-4cd9-af10-6b708cb9224f"
+ "SOUTHINDIA:20201106T174222Z:ec56fb39-6543-4fa0-bd01-909d08a5e547"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:15 GMT"
+ "Fri, 06 Nov 2020 17:42:22 GMT"
],
"Content-Length": [
"701"
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b3214df-a4cd-4c2c-b490-4ad2f63a1c96"
+ "111a3f11-7f4e-4de9-9c0f-571eee469fab"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "25d99ab0-c1b7-4456-bd0d-f3f340d45792"
+ "4e2c1227-afcc-4150-ac2c-e81bca95a6ae"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -396,16 +396,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "601a14d4-9ba8-4c72-8a27-6743d527c56a"
+ "875c5a15-4848-49d6-83b4-7448c1eb3368"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065840Z:601a14d4-9ba8-4c72-8a27-6743d527c56a"
+ "SOUTHINDIA:20201106T174249Z:875c5a15-4848-49d6-83b4-7448c1eb3368"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:39 GMT"
+ "Fri, 06 Nov 2020 17:42:49 GMT"
],
"Content-Length": [
"701"
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "331e9bcb-c43b-4637-9f0e-e55f2063c33d"
+ "0f60db1b-3001-44d6-b022-54d4c8342c6a"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "68008099-66fe-49e6-a7e2-c6e982b418b8"
+ "f4fe9ab7-e332-4d91-b4cb-0ff12763a701"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,16 +465,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "645b3918-2c3c-49cc-bfd5-7b1c3740b397"
+ "f5e852a0-9b8c-4343-ae40-68535ed09cc8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065816Z:645b3918-2c3c-49cc-bfd5-7b1c3740b397"
+ "SOUTHINDIA:20201106T174223Z:f5e852a0-9b8c-4343-ae40-68535ed09cc8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:15 GMT"
+ "Fri, 06 Nov 2020 17:42:22 GMT"
],
"Content-Length": [
"255"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11967e29-e832-443e-868f-aa76ef34ab6b"
+ "410486a1-ad4f-47f7-b6ea-0f510ec534fa"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "040bf0f1-beef-482e-af4f-d27e491d6737"
+ "2af478e6-3f58-47b0-9166-d1c83cc5418e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,16 +534,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "a02cd217-9004-458f-bc9e-b2c856c24cff"
+ "b85e4b7b-b3d5-420c-a8f0-e436c7ca204d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065840Z:a02cd217-9004-458f-bc9e-b2c856c24cff"
+ "SOUTHINDIA:20201106T174250Z:b85e4b7b-b3d5-420c-a8f0-e436c7ca204d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:40 GMT"
+ "Fri, 06 Nov 2020 17:42:49 GMT"
],
"Content-Length": [
"255"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "614c34ad-e7b0-4497-aea8-2e066dbd554c"
+ "0562b097-c61a-4975-9ff4-a4fa5b0c9a26"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c1a1d8c2-0aa7-4388-bf05-b1447ea52732"
+ "77716933-fec1-452e-9c22-df863924a356"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,16 +603,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "df5aa127-7e19-4119-ac20-22d773d719e0"
+ "5ccab622-b48f-4427-a2dd-11475ed1b519"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065816Z:df5aa127-7e19-4119-ac20-22d773d719e0"
+ "SOUTHINDIA:20201106T174223Z:5ccab622-b48f-4427-a2dd-11475ed1b519"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:16 GMT"
+ "Fri, 06 Nov 2020 17:42:23 GMT"
],
"Content-Length": [
"252"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2fb9bc2c-442e-459d-bd51-4b824eb0aa60"
+ "3a1a81e7-39ea-4fa9-8106-9c9e25c9cf50"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ff5ddc6f-de2f-4cbd-9dac-58062da54e28"
+ "06e2dc0e-8d3b-4fd1-9d68-7acdcd27c92d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -672,16 +672,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "cb686cde-aadb-4851-aec7-04e3743965a5"
+ "832feaa3-7cb0-4512-93ed-9348f594d68e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065841Z:cb686cde-aadb-4851-aec7-04e3743965a5"
+ "SOUTHINDIA:20201106T174250Z:832feaa3-7cb0-4512-93ed-9348f594d68e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:41 GMT"
+ "Fri, 06 Nov 2020 17:42:50 GMT"
],
"Content-Length": [
"252"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ea5467cb-b203-4813-b8da-b2fde41154b7"
+ "24d3ea53-fd5c-439e-a887-8961ee889bd9"
],
"Accept-Language": [
"en-US"
@@ -732,7 +732,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3336bc51-27b1-469f-bb7c-89fd6fd7a8f1"
+ "456ebbcc-a765-4f3a-9c4b-3fdc8c140b1e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -747,16 +747,16 @@
"1199"
],
"x-ms-correlation-request-id": [
- "482ab8c8-dae9-4919-b428-dc7cd55de7d2"
+ "27e4d75f-45e2-4b29-ae5f-3739a7050fd3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065838Z:482ab8c8-dae9-4919-b428-dc7cd55de7d2"
+ "SOUTHINDIA:20201106T174247Z:27e4d75f-45e2-4b29-ae5f-3739a7050fd3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:38 GMT"
+ "Fri, 06 Nov 2020 17:42:47 GMT"
],
"Content-Length": [
"1006"
@@ -768,7 +768,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"96682EC22E2A8B796AD5B02FBC246199436B8401\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"fdc2798d-c737-4700-9921-d2665336001e\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3428697094691AE6C6D829C8D3352DB5BA059273\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"cb3cb8d1-5b20-4252-abcc-753b485e0671\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -778,7 +778,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a9e45252-0f33-4d9e-981b-dfeee297dd8a"
+ "53cf31ee-1f52-48c3-8eb2-4051840a7c60"
],
"Accept-Language": [
"en-US"
@@ -798,16 +798,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11999"
],
"x-ms-request-id": [
- "a2e5ce5b-abd5-4f44-864d-84b40f2f44ff"
+ "cdc6fb9b-b10e-47b2-a00d-5b3be4349c49"
],
"x-ms-correlation-request-id": [
- "a2e5ce5b-abd5-4f44-864d-84b40f2f44ff"
+ "cdc6fb9b-b10e-47b2-a00d-5b3be4349c49"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065842Z:a2e5ce5b-abd5-4f44-864d-84b40f2f44ff"
+ "SOUTHINDIA:20201106T174250Z:cdc6fb9b-b10e-47b2-a00d-5b3be4349c49"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -816,7 +816,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:42 GMT"
+ "Fri, 06 Nov 2020 17:42:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -838,7 +838,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b18f861-173a-4148-86d9-a754abdac626"
+ "fd6e08ba-3358-454b-a365-2c4110e571fc"
],
"Accept-Language": [
"en-US"
@@ -861,7 +861,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "231db35d-bf18-4643-97c3-4301fc3786f3"
+ "aca542c7-2b26-403b-9ae2-0caf26a3205f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -873,19 +873,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11995"
],
"x-ms-correlation-request-id": [
- "9f70d309-97d1-47a2-97d1-66e4e8484047"
+ "6f3a9a5f-2537-4c09-aa41-999eade6621b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065842Z:9f70d309-97d1-47a2-97d1-66e4e8484047"
+ "SOUTHINDIA:20201106T174251Z:6f3a9a5f-2537-4c09-aa41-999eade6621b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:42 GMT"
+ "Fri, 06 Nov 2020 17:42:51 GMT"
],
"Content-Length": [
"909"
@@ -897,7 +897,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"96682EC22E2A8B796AD5B02FBC246199436B8401\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3428697094691AE6C6D829C8D3352DB5BA059273\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -907,7 +907,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "115f1f7d-b2b2-48e2-ae26-e7ab6d31b9f1"
+ "57c7a68d-a8e4-49eb-877b-d7ac0a294714"
],
"Accept-Language": [
"en-US"
@@ -930,7 +930,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "96afca71-240b-4fa7-b7cc-f21137797c4d"
+ "30842508-844d-4336-8704-9a7c522490dd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -945,16 +945,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "8db75089-1704-4c6e-8fe3-fcb2982883b3"
+ "7ecef8a0-5de3-4643-8e4d-7e79dc31712c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065846Z:8db75089-1704-4c6e-8fe3-fcb2982883b3"
+ "SOUTHINDIA:20201106T174255Z:7ecef8a0-5de3-4643-8e4d-7e79dc31712c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:45 GMT"
+ "Fri, 06 Nov 2020 17:42:54 GMT"
],
"Expires": [
"-1"
@@ -973,7 +973,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b9e108c-536b-4bda-ae80-8baa24d91242"
+ "3ada7973-9255-4f86-8559-2f8c7f2b79cb"
],
"Accept-Language": [
"en-US"
@@ -993,16 +993,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11998"
],
"x-ms-request-id": [
- "c26638e9-5b8f-4529-b522-ff2a7e69e663"
+ "32a5087f-33df-4a05-a832-d4cb8e4a8aaa"
],
"x-ms-correlation-request-id": [
- "c26638e9-5b8f-4529-b522-ff2a7e69e663"
+ "32a5087f-33df-4a05-a832-d4cb8e4a8aaa"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065846Z:c26638e9-5b8f-4529-b522-ff2a7e69e663"
+ "SOUTHINDIA:20201106T174255Z:32a5087f-33df-4a05-a832-d4cb8e4a8aaa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1011,7 +1011,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:46 GMT"
+ "Fri, 06 Nov 2020 17:42:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1033,7 +1033,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5bdd7244-b01a-427b-9347-40401ddc33e4"
+ "596608b1-a599-4dea-b83b-ed0bbd9b36ac"
],
"Accept-Language": [
"en-US"
@@ -1056,7 +1056,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a9adcce-b10f-44ef-b534-99fd8e285d93"
+ "bdbd5978-9cfd-40ca-823b-643820a49608"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1068,19 +1068,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11994"
],
"x-ms-correlation-request-id": [
- "cf7203d7-1d99-478c-b54c-c08915399ebe"
+ "418cbeed-6cb0-4d34-a893-03c1a2b91f5b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065846Z:cf7203d7-1d99-478c-b54c-c08915399ebe"
+ "SOUTHINDIA:20201106T174255Z:418cbeed-6cb0-4d34-a893-03c1a2b91f5b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:46 GMT"
+ "Fri, 06 Nov 2020 17:42:55 GMT"
],
"Content-Length": [
"1106"
@@ -1102,7 +1102,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "181c0968-eda2-487b-b5b4-511ddc980d5d"
+ "3ffe142b-067f-4c97-8716-d241e130be77"
],
"Accept-Language": [
"en-US"
@@ -1125,7 +1125,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9838a967-cb25-4100-9fb8-cba21c456f08"
+ "19c22522-fb2a-4d20-b7f4-ebe8e00d5268"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1137,19 +1137,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11993"
],
"x-ms-correlation-request-id": [
- "603f739c-e8c4-4286-819f-de0be439bc8f"
+ "3552940a-14a8-449d-b206-8352baf1f850"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065847Z:603f739c-e8c4-4286-819f-de0be439bc8f"
+ "SOUTHINDIA:20201106T174256Z:3552940a-14a8-449d-b206-8352baf1f850"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:46 GMT"
+ "Fri, 06 Nov 2020 17:42:55 GMT"
],
"Content-Length": [
"1006"
@@ -1171,7 +1171,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1fb0269-dd86-4fed-9044-c37bdc42eece"
+ "c3a00e15-f14d-4847-8d50-b054c0dd00b5"
],
"Accept-Language": [
"en-US"
@@ -1194,7 +1194,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8f844e48-938d-4d86-a730-041c6edd22a1"
+ "3bad760b-b6c1-4dce-9102-624bd2a006c6"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1206,19 +1206,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-correlation-request-id": [
- "10fbe8b5-defc-4719-a218-b5c0900a47ae"
+ "03c48c69-b1e7-4702-b1da-6b08ae61136b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065847Z:10fbe8b5-defc-4719-a218-b5c0900a47ae"
+ "SOUTHINDIA:20201106T174256Z:03c48c69-b1e7-4702-b1da-6b08ae61136b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:47 GMT"
+ "Fri, 06 Nov 2020 17:42:56 GMT"
],
"Content-Length": [
"904"
@@ -1240,7 +1240,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b12f5546-026a-474b-8e5d-07d5ee53dce0"
+ "9a4f82c0-52b2-400f-a547-378476e32a86"
],
"Accept-Language": [
"en-US"
@@ -1263,7 +1263,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d4623978-94e4-4e11-9a7d-10a8b350cc6a"
+ "4903e8c7-7338-49cb-b9d4-cf2e7b560f3a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1275,19 +1275,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11991"
],
"x-ms-correlation-request-id": [
- "c8e3fae2-6a70-4842-9e6d-7aef255d29a9"
+ "9f851faf-9366-425b-a15d-a12e65f7a926"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T065848Z:c8e3fae2-6a70-4842-9e6d-7aef255d29a9"
+ "SOUTHINDIA:20201106T174257Z:9f851faf-9366-425b-a15d-a12e65f7a926"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 06:58:47 GMT"
+ "Fri, 06 Nov 2020 17:42:56 GMT"
],
"Content-Length": [
"1217"
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
index 0f0fd01b287f..5ca023589946 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
@@ -55,11 +55,11 @@ public class NewAzWebAppManagedCertificate : WebAppBaseClientCmdLet
[ValidateNotNullOrEmpty]
public string HostName { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 4, Mandatory = false, HelpMessage = "To add the created certificate to WebApp/slot.")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "To add the created certificate to WebApp/slot.")]
[ValidateNotNullOrEmpty]
public SwitchParameter AddCertBinding { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 5, Mandatory = false, HelpMessage = "Ssl state option. Use either 'SniEnabled' or 'IpBasedEnabled'. Default option is 'SniEnabled'.")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Ssl state option. Use either 'SniEnabled' or 'IpBasedEnabled'. Default option is 'SniEnabled'.")]
[ValidateNotNullOrEmpty]
public SslState? SslState { get; set; }
@@ -72,36 +72,38 @@ public override void ExecuteCmdlet()
var location = webApp.Location;
Certificate createdCertdetails = null;
-
+
var certificate = new Certificate(
webApp.Location,
canonicalName: HostName,
- password: "",
+ password: "",
serverFarmId: webApp.ServerFarmId);
-
- try
+ if (this.ShouldProcess(this.WebAppName, string.Format($"Creating an App service managed certificate for Web App '{WebAppName}'")))
{
- createdCertdetails = WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
- }
- catch (DefaultErrorResponseException e)
- {
- // This exception is thrown when certificate already exists. Let's swallow it and continue.
- if (e.Response.StatusCode != HttpStatusCode.Conflict)
+ try
{
- throw;
+ createdCertdetails = WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
}
+ catch (DefaultErrorResponseException e)
+ {
+ // This exception is thrown when certificate already exists. Let's swallow it and continue.
+ if (e.Response.StatusCode != HttpStatusCode.Conflict)
+ {
+ throw;
+ }
+ }
+ //Add only when user is opted for Binding
+ if (AddCertBinding)
+ {
+ WebsitesClient.UpdateHostNameSslState(ResourceGroupName,
+ WebAppName,
+ Slot,
+ webApp.Location,
+ HostName, SslState.HasValue ? SslState.Value : Management.WebSites.Models.SslState.SniEnabled,
+ createdCertdetails.Thumbprint);
+ }
+ WriteObject(createdCertdetails);
}
- //Add only when user is opted for Binding
- if (AddCertBinding)
- {
- WebsitesClient.UpdateHostNameSslState(ResourceGroupName,
- WebAppName,
- Slot,
- webApp.Location,
- HostName, SslState.HasValue ? SslState.Value : Management.WebSites.Models.SslState.SniEnabled,
- createdCertdetails.Thumbprint);
- }
- WriteObject(createdCertdetails);
}
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
index 6213bbeaddd3..be14338b2231 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
@@ -69,16 +69,19 @@ public override void ExecuteCmdlet()
var certificates = CmdletHelpers.GetCertificates(this.ResourcesClient, this.WebsitesClient, certificateResourceGroup, ThumbPrint);
if (certificates.Length > 0)
{
- try
+ if (this.ShouldProcess(this.WebAppName, string.Format($"Removing an App service managed certificate for Web App '{WebAppName}'")))
{
- WebsitesClient.RemoveCertificate(certificateResourceGroup, certificates[0].Name);
- }
- catch (DefaultErrorResponseException e)
- {
- // This exception is thrown when certificate already exists. Let's swallow it and continue.
- if (e.Response.StatusCode != HttpStatusCode.Conflict)
+ try
+ {
+ WebsitesClient.RemoveCertificate(certificateResourceGroup, certificates[0].Name);
+ }
+ catch (DefaultErrorResponseException e)
{
- throw;
+ // This exception is thrown when certificate already exists. Let's swallow it and continue.
+ if (e.Response.StatusCode != HttpStatusCode.Conflict)
+ {
+ throw;
+ }
}
}
}
From be7c7c76badca3cae995a5ccdab06fd59787abe8 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Mon, 16 Nov 2020 19:21:39 +0530
Subject: [PATCH 04/13] Review comments
---
.../ScenarioTests/CertificatesTests.cs | 16 +-
.../ScenarioTests/CertificatesTests.ps1 | 27 +-
...e.json => TestNewAzWebAppCertificate.json} | 313 +++++--
...=> TestNewAzWebAppCertificateForSlot.json} | 255 +++---
...NewAzWebAppCertificateWithSSLBinding.json} | 826 +++++++++++-------
...son => TestRemoveAzWebAppCertificate.json} | 465 ++++++----
src/Websites/Websites.sln | 16 +-
src/Websites/Websites/Az.Websites.psd1 | 2 +-
src/Websites/Websites/ChangeLog.md | 4 +-
...ficate.cs => NewAzureWebAppCertificate.cs} | 23 +-
.../Certificates/NewAzureWebAppSSLBinding.cs | 2 +-
...ate.cs => RemoveAzureWebAppCertificate.cs} | 7 +-
.../Websites/Utilities/WebsitesClient.cs | 4 +
...tificate.md => New-AzWebAppCertificate.md} | 14 +-
...icate.md => Remove-AzWebAppCertificate.md} | 12 +-
15 files changed, 1241 insertions(+), 745 deletions(-)
rename src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/{TestNewAzWebAppManagedCertificate.json => TestNewAzWebAppCertificate.json} (51%)
rename src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/{TestNewAzWebAppManagedCertificateForSlot.json => TestNewAzWebAppCertificateForSlot.json} (59%)
rename src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/{TestNewAzWebAppManagedCertificateWithSSLBinding.json => TestNewAzWebAppCertificateWithSSLBinding.json} (65%)
rename src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/{TestRemoveAzWebAppManagedCertificate.json => TestRemoveAzWebAppCertificate.json} (55%)
rename src/Websites/Websites/Cmdlets/Certificates/{NewAzWebAppManagedCertificate.cs => NewAzureWebAppCertificate.cs} (82%)
rename src/Websites/Websites/Cmdlets/Certificates/{RemoveAzWebAppManagedCertificate.cs => RemoveAzureWebAppCertificate.cs} (93%)
rename src/Websites/Websites/help/{New-AzWebAppManagedCertificate.md => New-AzWebAppCertificate.md} (82%)
rename src/Websites/Websites/help/{Remove-AzWebAppManagedCertificate.md => Remove-AzWebAppCertificate.md} (81%)
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs
index 073efdccb1b9..f35af4680d5f 100644
--- a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.cs
@@ -31,27 +31,27 @@ public CertificatesTests(ITestOutputHelper output)
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void TestNewAzWebAppManagedCertificate()
+ public void TestNewAzWebAppCertificate()
{
- WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppManagedCertificate");
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppCertificate");
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void TestNewAzWebAppManagedCertificateWithSSLBinding()
+ public void TestNewAzWebAppCertificateWithSSLBinding()
{
- WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppManagedCertificateWithSSLBinding");
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppCertificateWithSSLBinding");
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void TestNewAzWebAppManagedCertificateForSlot()
+ public void TestNewAzWebAppCertificateForSlot()
{
- WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppManagedCertificateForSlot");
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-NewAzWebAppCertificateForSlot");
}
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
- public void TestRemoveAzWebAppManagedCertificate()
+ public void TestRemoveAzWebAppCertificate()
{
- WebsitesController.NewInstance.RunPsTest(_logger, "Test-RemoveAzWebAppManagedCertificate");
+ WebsitesController.NewInstance.RunPsTest(_logger, "Test-RemoveAzWebAppCertificate");
}
}
}
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
index 6fc7a854f31f..ba47c343798d 100644
--- a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
@@ -16,18 +16,17 @@
.SYNOPSIS
Tests creating a new managed cert for app.
#>
-function Test-NewAzWebAppManagedCertificate
+function Test-NewAzWebAppCertificate
{
$rgname = "RG-W-CUS"
$appname = "managedcerts"
$slot = "testslot"
- $prodHostname = "www.managedcerts.net"
- $slotHostname = "testslot.adorenow.net"
+ $prodHostname = "www.managedcerts.net"
$thumbprint=""
try{
- $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
$thumbprint=$cert.ThumbPrint
# Assert
@@ -37,7 +36,7 @@ function Test-NewAzWebAppManagedCertificate
finally{
# Cleanup
- Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
}
}
@@ -45,7 +44,7 @@ function Test-NewAzWebAppManagedCertificate
.SYNOPSIS
Tests creating a new managed cert for app with SSL binding.
#>
-function Test-NewAzWebAppManagedCertificateWithSSLBinding
+function Test-NewAzWebAppCertificateWithSSLBinding
{
$rgname = "RG-W-CUS"
$appname = "managedcerts"
@@ -56,7 +55,7 @@ function Test-NewAzWebAppManagedCertificateWithSSLBinding
try{
- $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -AddCertBinding
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -AddBinding
$thumbprint=$cert.ThumbPrint
# Assert
@@ -75,7 +74,7 @@ function Test-NewAzWebAppManagedCertificateWithSSLBinding
# Cleanup
Remove-AzWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Force
- Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
}
}
@@ -83,7 +82,7 @@ function Test-NewAzWebAppManagedCertificateWithSSLBinding
.SYNOPSIS
Tests creating a new managed certfor slot.
#>
-function Test-NewAzWebAppManagedCertificateForSlot
+function Test-NewAzWebAppCertificateForSlot
{
$rgname = "RG-W-CUS"
@@ -94,7 +93,7 @@ function Test-NewAzWebAppManagedCertificateForSlot
try{
- $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot
$thumbprint=$cert.ThumbPrint
# Assert
@@ -104,7 +103,7 @@ function Test-NewAzWebAppManagedCertificateForSlot
finally{
# Cleanup
- Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot -ThumbPrint $thumbprint
}
}
@@ -112,7 +111,7 @@ function Test-NewAzWebAppManagedCertificateForSlot
.SYNOPSIS
Tests removing a managed cert.
#>
-function Test-RemoveAzWebAppManagedCertificate
+function Test-RemoveAzWebAppCertificate
{
$rgname = "RG-W-CUS"
@@ -122,13 +121,13 @@ function Test-RemoveAzWebAppManagedCertificate
try{
- $cert=New-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
$thumbprint=$cert.ThumbPrint
# Assert
Assert-AreEqual $prodHostname $cert.SubjectName
- Remove-AzWebAppManagedCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
$certificate = Get-AzWebAppCertificate -Thumbprint $thumbprint
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
similarity index 51%
rename from src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
rename to src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
index 1761f3e6c08c..2637cde030d1 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8689c6d-b2d9-49a9-ba56-eb971bc318d1"
+ "f98b581e-07b3-4c22-b65c-63c0e85ccc2d"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6BC14AEC8BA8B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9bf9b6a-a898-4816-b6fd-dc17c58be1a0"
+ "8dc858a7-2e7a-46a8-949a-ff0e19f4f6ae"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -48,19 +48,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "da8138dc-0e69-4e9a-bdee-81f0b18a6fb2"
+ "3e08e51d-01e2-48ba-946d-1e00f2f441bd"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T173953Z:da8138dc-0e69-4e9a-bdee-81f0b18a6fb2"
+ "WESTINDIA:20201116T132824Z:3e08e51d-01e2-48ba-946d-1e00f2f441bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:39:53 GMT"
+ "Mon, 16 Nov 2020 13:28:23 GMT"
],
"Content-Length": [
- "5699"
+ "5733"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d7a51ea5-41b4-4f2a-aead-894425d8fe2d"
+ "52fcaeac-8c39-4e82-be75-2744a7dcd370"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6BC14AEC8BA8B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "92e4a3b7-efa8-4ef4-aa1e-46ce3f304349"
+ "89a83991-0268-43a3-acb9-1b2cf38d519a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "9cee6a28-de12-4be2-8639-85d05f1e8f84"
+ "2635429f-e3c8-4f8c-93c3-d96bf30694cf"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174030Z:9cee6a28-de12-4be2-8639-85d05f1e8f84"
+ "WESTINDIA:20201116T132844Z:2635429f-e3c8-4f8c-93c3-d96bf30694cf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:29 GMT"
+ "Mon, 16 Nov 2020 13:28:43 GMT"
],
"Content-Length": [
- "5699"
+ "5733"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aef25e6c-70f3-44b6-9796-2699eb3fd373"
+ "cc0f6498-1aa2-45ed-87a0-1ce9e4396aad"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eeae6894-48e0-4935-af7b-e59ed40d0100"
+ "2e9e462a-fc27-4c82-9afc-c91a8936a21c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,19 +189,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "9f80a6a3-250b-4d8c-9c15-5e46c2a9acd3"
+ "992c268c-6129-45cf-94b2-5dd4975ba98d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T173955Z:9f80a6a3-250b-4d8c-9c15-5e46c2a9acd3"
+ "WESTINDIA:20201116T132824Z:992c268c-6129-45cf-94b2-5dd4975ba98d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:39:55 GMT"
+ "Mon, 16 Nov 2020 13:28:23 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -210,7 +210,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1d52664-76ad-4ffa-b06c-0acbdc0f3770"
+ "7ef27a11-c8cf-4830-8bc3-68426f168466"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a58c2880-f5f5-4961-89cd-133980613ead"
+ "6375f35e-70c4-4137-9f2c-f4df627e0eb1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,22 +255,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "eefb0ccd-7651-4263-9b3c-756c2255a245"
+ "a4512df9-a4b1-4981-bcce-e2d0ff5923e6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174031Z:eefb0ccd-7651-4263-9b3c-756c2255a245"
+ "WESTINDIA:20201116T132844Z:a4512df9-a4b1-4981-bcce-e2d0ff5923e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:30 GMT"
+ "Mon, 16 Nov 2020 13:28:44 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -279,7 +279,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c7f97ad0-f1d4-4576-b382-12e2d80c8e28"
+ "859cf3e0-9fe1-496c-a748-b7155aedb2d5"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e5cf894-1d3a-42cc-8115-76988f2b2ac5"
+ "ea421d2c-d5b5-4f24-b9aa-b4c73631f20b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,16 +327,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "f685449c-8393-4f5b-928d-810f9bb1b228"
+ "77ff5593-ae66-4289-bbe8-c9aeec4630c5"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T173956Z:f685449c-8393-4f5b-928d-810f9bb1b228"
+ "WESTINDIA:20201116T132825Z:77ff5593-ae66-4289-bbe8-c9aeec4630c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:39:55 GMT"
+ "Mon, 16 Nov 2020 13:28:24 GMT"
],
"Content-Length": [
"701"
@@ -348,7 +348,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "95ac10c9-acb0-48d0-8a76-1f2e3abcff10"
+ "9d6f668d-3c68-43c1-b563-ac72b639a4e0"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "86f90680-2f63-4876-8034-4924aa37ebf5"
+ "c7f1dc54-6a31-4a93-97a1-d957cfd03594"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -396,16 +396,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "ca8912f4-8933-4c0b-adf9-b7d0eba1fb6e"
+ "aac983f9-8316-4afb-bc21-9b1b4a49c614"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174031Z:ca8912f4-8933-4c0b-adf9-b7d0eba1fb6e"
+ "WESTINDIA:20201116T132846Z:aac983f9-8316-4afb-bc21-9b1b4a49c614"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:30 GMT"
+ "Mon, 16 Nov 2020 13:28:45 GMT"
],
"Content-Length": [
"701"
@@ -417,7 +417,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "169fae16-7a9e-42e3-81fe-d7de0bd6accf"
+ "20347000-647e-462c-a640-ecfab400f1c8"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7b6b2012-5133-430c-85ce-cd586a15aa8f"
+ "d71f97f9-989d-4535-9b72-a51d8edc998f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,16 +465,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "8ac26f7f-d54e-4de2-9be8-97078e0d6d11"
+ "1315369e-1f4c-4b0e-99d1-2a7f557f6fe5"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T173956Z:8ac26f7f-d54e-4de2-9be8-97078e0d6d11"
+ "WESTINDIA:20201116T132825Z:1315369e-1f4c-4b0e-99d1-2a7f557f6fe5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:39:56 GMT"
+ "Mon, 16 Nov 2020 13:28:24 GMT"
],
"Content-Length": [
"255"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "592daf8a-9bd1-483a-8bd1-cb9ac2db5d53"
+ "76ce13a3-8ba8-4832-931e-5ecceaf31125"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "40984632-ecd4-45cd-b7ac-4887479f0426"
+ "3f683eda-ee18-45ab-b7d2-99d10a448d44"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,16 +534,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "cb72fe2b-9086-4edf-ad0c-9582e66b3754"
+ "41f074ac-b107-4579-995d-aca3cf4559bf"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174032Z:cb72fe2b-9086-4edf-ad0c-9582e66b3754"
+ "WESTINDIA:20201116T132846Z:41f074ac-b107-4579-995d-aca3cf4559bf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:31 GMT"
+ "Mon, 16 Nov 2020 13:28:46 GMT"
],
"Content-Length": [
"255"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9df9fd94-e3a2-4c71-8d75-ac678977088e"
+ "771aa201-5058-4d90-8735-2203e499b342"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "249e894f-9406-45a6-9b08-4c06a21f6c1f"
+ "20c64b62-f459-47e2-a202-bfbad157116a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,16 +603,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "c7af7676-2179-426f-b29b-65a87d78a101"
+ "f1a33f9a-e55a-49f9-8f09-7800985302b6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T173957Z:c7af7676-2179-426f-b29b-65a87d78a101"
+ "WESTINDIA:20201116T132826Z:f1a33f9a-e55a-49f9-8f09-7800985302b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:39:56 GMT"
+ "Mon, 16 Nov 2020 13:28:25 GMT"
],
"Content-Length": [
"252"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a92b6f47-6bc8-4cd9-bee1-445d53b46137"
+ "159d2fcd-9590-4909-9294-d6eae71077ba"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c8fe6ae2-f567-457b-bca8-7f3dfb23cabf"
+ "15f52ead-52b7-4437-9940-d91783d6eeab"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -672,16 +672,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "52220373-5302-4aea-a8f4-10b7ddaeed18"
+ "af87fe33-fcd6-4954-9af4-098f9527e927"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174032Z:52220373-5302-4aea-a8f4-10b7ddaeed18"
+ "WESTINDIA:20201116T132847Z:af87fe33-fcd6-4954-9af4-098f9527e927"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:31 GMT"
+ "Mon, 16 Nov 2020 13:28:46 GMT"
],
"Content-Length": [
"252"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bed80edc-fea9-412b-96f4-e288c478145f"
+ "5ea2678b-9426-405e-8aac-a4e199684f8e"
],
"Accept-Language": [
"en-US"
@@ -732,7 +732,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f5eb2976-207c-4060-96ca-6fa29c6cb191"
+ "2a2345c5-1bf2-4ba8-aadf-e036251a156c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -747,19 +747,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "85c738e9-43c3-44ec-b67d-7bd6e9ba8e4a"
+ "0aa9c837-cc9e-4201-ad63-4e5e2e498a38"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174030Z:85c738e9-43c3-44ec-b67d-7bd6e9ba8e4a"
+ "WESTINDIA:20201116T132827Z:0aa9c837-cc9e-4201-ad63-4e5e2e498a38"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:29 GMT"
+ "Mon, 16 Nov 2020 13:28:27 GMT"
],
"Content-Length": [
- "1006"
+ "909"
],
"Content-Type": [
"application/json"
@@ -768,7 +768,71 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FF607D3A2752115CCF4DE607E79C4B5F8B93A77\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"4a4a452f-ee30-4451-9e93-96bc6858bf88\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "abd621eb-ddfc-4138-a857-43d1042be85e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-original-request-ids": [
+ "ddebf7a7-8b9c-4c91-853d-0b8510177ba1",
+ "8f4fc0d7-7283-4ac9-8b36-5544077cf2c5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "d2b4c73e-cef9-4a42-aee4-2a369a79c47b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2b4c73e-cef9-4a42-aee4-2a369a79c47b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201116T132843Z:d2b4c73e-cef9-4a42-aee4-2a369a79c47b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 16 Nov 2020 13:28:43 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "8671"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -778,7 +842,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c774dacd-b62d-43ee-92bf-9c1b0eac283f"
+ "787da89d-37e8-4ec9-947c-dbe52d61044c"
],
"Accept-Language": [
"en-US"
@@ -801,13 +865,13 @@
"11999"
],
"x-ms-request-id": [
- "faaf5038-accb-4240-acd8-d2fe7938ed8c"
+ "ca5ce21c-4e45-42e6-b960-5f768332b862"
],
"x-ms-correlation-request-id": [
- "faaf5038-accb-4240-acd8-d2fe7938ed8c"
+ "ca5ce21c-4e45-42e6-b960-5f768332b862"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174032Z:faaf5038-accb-4240-acd8-d2fe7938ed8c"
+ "WESTINDIA:20201116T132848Z:ca5ce21c-4e45-42e6-b960-5f768332b862"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -816,7 +880,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:32 GMT"
+ "Mon, 16 Nov 2020 13:28:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -825,10 +889,79 @@
"-1"
],
"Content-Length": [
- "243"
+ "477"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c49e23be-75d9-4d99-925d-f6388b5712e8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2c1f037f-0d8d-44fa-bee4-65e273ff979a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "02434ed0-8543-460c-9103-865277f9acc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201116T132848Z:02434ed0-8543-460c-9103-865277f9acc0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 16 Nov 2020 13:28:48 GMT"
+ ],
+ "Content-Length": [
+ "914"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -838,7 +971,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b6fbcd53-f6cf-4227-84f2-f1c462748acb"
+ "1fff8d65-2340-493e-a2bc-7acec6b862e2"
],
"Accept-Language": [
"en-US"
@@ -861,7 +994,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d6bd3567-86c4-4b08-8f80-f55cfcf29a77"
+ "853f4955-5d81-4167-83bd-68fc2ffbf910"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -873,19 +1006,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11993"
],
"x-ms-correlation-request-id": [
- "f495be61-7d50-4631-9660-e29525da4505"
+ "6770ef0b-51e6-4ee4-9fa7-261638d50fff"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174033Z:f495be61-7d50-4631-9660-e29525da4505"
+ "WESTINDIA:20201116T132849Z:6770ef0b-51e6-4ee4-9fa7-261638d50fff"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:33 GMT"
+ "Mon, 16 Nov 2020 13:28:49 GMT"
],
"Content-Length": [
"909"
@@ -897,7 +1030,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FF607D3A2752115CCF4DE607E79C4B5F8B93A77\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -907,7 +1040,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c1a3216-b595-492b-93ff-6755e110d39e"
+ "93854cb0-d22b-44b5-a961-87ef92b05606"
],
"Accept-Language": [
"en-US"
@@ -930,7 +1063,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4b191d13-7d16-4bcd-b556-9540af3384e3"
+ "8640cbb0-1ad6-4c01-be38-d9f362bbc89b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -945,16 +1078,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "69020157-77b6-4c45-a2d5-0cfa36ce471a"
+ "36444d2e-3e7d-4185-b74d-582b114724dd"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174040Z:69020157-77b6-4c45-a2d5-0cfa36ce471a"
+ "WESTINDIA:20201116T132858Z:36444d2e-3e7d-4185-b74d-582b114724dd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:40 GMT"
+ "Mon, 16 Nov 2020 13:28:57 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
similarity index 59%
rename from src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
rename to src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
index 44cc64cf1b65..831bdb433037 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateForSlot.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ac7f064-1b72-436c-9205-e1a69f591f1b"
+ "4ed2c9a9-bc8e-4962-a98f-b17efc8c0b4a"
],
"Accept-Language": [
"en-US"
@@ -33,7 +33,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6cb95699-dd67-4f45-b62a-f9ed55ca6cf2"
+ "57fb08a4-7539-4bbc-bd00-33b412430fab"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -48,19 +48,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "a09e1b7c-c01c-478b-96c8-98bb91065e69"
+ "729aaa17-616c-47ba-9c4f-79512e068096"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174145Z:a09e1b7c-c01c-478b-96c8-98bb91065e69"
+ "WESTINDIA:20201116T132735Z:729aaa17-616c-47ba-9c4f-79512e068096"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:44 GMT"
+ "Mon, 16 Nov 2020 13:27:35 GMT"
],
"Content-Length": [
- "5500"
+ "5529"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f417cca9-b417-4578-8571-159deaede9f1"
+ "4d06b946-cd3b-4e46-9204-0809a875cb5b"
],
"Accept-Language": [
"en-US"
@@ -105,7 +105,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e583f525-87e8-411f-a9ec-dbea54894918"
+ "c74c14fb-8406-488c-b58e-4b56d5d47bb3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "44e96d0c-82e4-4779-aafa-39b4a290f95c"
+ "5755d3b1-b24a-4359-94ca-3bd28a39ac71"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174211Z:44e96d0c-82e4-4779-aafa-39b4a290f95c"
+ "WESTINDIA:20201116T132807Z:5755d3b1-b24a-4359-94ca-3bd28a39ac71"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:10 GMT"
+ "Mon, 16 Nov 2020 13:28:06 GMT"
],
"Content-Length": [
- "5500"
+ "5529"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e3e8e30-89f7-4730-bfe4-54410e318d31"
+ "b9d90245-4a1d-437b-812a-73e1f5f22bc2"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c14fbf3a-8711-4353-bd32-b85e06036087"
+ "dc272821-e56f-42fa-b6af-baba01298371"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,19 +189,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "50e5eac2-8ef6-4164-9acb-854f1d16ed06"
+ "5ee373d1-be9a-49d4-b2e8-82fcaa06db27"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174146Z:50e5eac2-8ef6-4164-9acb-854f1d16ed06"
+ "WESTINDIA:20201116T132736Z:5ee373d1-be9a-49d4-b2e8-82fcaa06db27"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:45 GMT"
+ "Mon, 16 Nov 2020 13:27:36 GMT"
],
"Content-Length": [
- "3559"
+ "3585"
],
"Content-Type": [
"application/json"
@@ -210,7 +210,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e78e9bf0-6118-4ed1-8058-db753cc0bf92"
+ "6fa301bd-4a16-4b51-9f5f-a7d621803358"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "41dd184e-16bd-40f3-bab8-a6f16da1710c"
+ "c7402f36-a9e6-40cd-a98f-361bb7caf96f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,22 +255,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "cb14cc39-344c-4eee-a1fc-355acf6688b3"
+ "9d9b74d5-8525-4f4e-ac7d-42056e9dbd15"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174211Z:cb14cc39-344c-4eee-a1fc-355acf6688b3"
+ "WESTINDIA:20201116T132808Z:9d9b74d5-8525-4f4e-ac7d-42056e9dbd15"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:11 GMT"
+ "Mon, 16 Nov 2020 13:28:07 GMT"
],
"Content-Length": [
- "3559"
+ "3585"
],
"Content-Type": [
"application/json"
@@ -279,7 +279,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e59347a9-4daa-42f8-8f6e-b91a121bd32d"
+ "d8abbeed-2aaa-4b74-b4d1-4fec4e8247c4"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "70404fe4-d649-46c2-88a0-79bfdbb2728d"
+ "0dfecb21-82ef-4c13-96a0-a5eb710958f6"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,16 +327,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "ed8cf59a-4c23-49a6-b46c-2fb096b3569e"
+ "c59ddbfa-aab5-42ec-a0d7-8fd276e24c69"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174146Z:ed8cf59a-4c23-49a6-b46c-2fb096b3569e"
+ "WESTINDIA:20201116T132737Z:c59ddbfa-aab5-42ec-a0d7-8fd276e24c69"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:45 GMT"
+ "Mon, 16 Nov 2020 13:27:37 GMT"
],
"Content-Length": [
"711"
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d1a1683-a0e8-49e9-8ae0-0dd14534eddf"
+ "53ef469a-dafd-4a0e-9cf2-5e5f42d7c1b9"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eb762c29-213c-4754-9b58-f7511b918291"
+ "ef7e5f6e-7b99-4e1f-add1-cb4f6d1b2aad"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -396,16 +396,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "32926a5d-4518-4aeb-b6a0-e7e94575f61f"
+ "4df75374-a586-4e57-a858-26801b29ce92"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174212Z:32926a5d-4518-4aeb-b6a0-e7e94575f61f"
+ "WESTINDIA:20201116T132809Z:4df75374-a586-4e57-a858-26801b29ce92"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:11 GMT"
+ "Mon, 16 Nov 2020 13:28:08 GMT"
],
"Content-Length": [
"711"
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2273ce9c-f904-4c29-bbf4-fe909cc6a866"
+ "4e71e858-560b-46ba-a64e-2ee0de5b574e"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c073a639-1ad2-4002-95ea-2b35f78dd2a0"
+ "01c44542-c8b2-4662-88d3-7359ec4debe3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,16 +465,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "93c12f27-ca6f-4c95-9011-68ce439a6777"
+ "4b494e62-4124-4cca-bd6b-f76d39b35a95"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174147Z:93c12f27-ca6f-4c95-9011-68ce439a6777"
+ "WESTINDIA:20201116T132739Z:4b494e62-4124-4cca-bd6b-f76d39b35a95"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:46 GMT"
+ "Mon, 16 Nov 2020 13:27:38 GMT"
],
"Content-Length": [
"265"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e5e572f-d434-46d9-af6c-8191ad28be9d"
+ "8f83da98-f21d-4992-9be3-974e7004b67e"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eaaa1e17-641d-4a3a-8015-d0893c869ef6"
+ "48471e49-5d8e-4865-954a-2031aa536413"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,16 +534,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "9358a834-3b89-4008-a9c4-5a1537b6f476"
+ "b1fb3348-be47-496c-a6f6-6b59573f749f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174212Z:9358a834-3b89-4008-a9c4-5a1537b6f476"
+ "WESTINDIA:20201116T132810Z:b1fb3348-be47-496c-a6f6-6b59573f749f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:12 GMT"
+ "Mon, 16 Nov 2020 13:28:09 GMT"
],
"Content-Length": [
"265"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3386eedc-7b9b-4775-84c3-6e267938415e"
+ "4d58d51b-23af-45c8-868a-046f72b5e60f"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ab312e54-4492-4a2a-ae45-75812c7c662c"
+ "ff25542d-680a-45e1-b857-fa3c227390eb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,16 +603,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "d8ab9a9c-9cef-4ef2-97ff-5ebbcfe2ee1d"
+ "5d048317-8c96-41a1-9f65-15c8c5e25ea0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174147Z:d8ab9a9c-9cef-4ef2-97ff-5ebbcfe2ee1d"
+ "WESTINDIA:20201116T132739Z:5d048317-8c96-41a1-9f65-15c8c5e25ea0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:46 GMT"
+ "Mon, 16 Nov 2020 13:27:39 GMT"
],
"Content-Length": [
"262"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb2d8e28-10ac-48d0-afcf-0a96c06841b0"
+ "1ad54471-cebb-4f5c-a5f9-175caa02714a"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "95aab9dc-2242-4d17-954f-651647521618"
+ "287ef22e-d0a1-4573-a48c-02200964824d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -672,16 +672,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "2d55946f-0276-445f-ad53-82db4e5ed883"
+ "9f067652-bba4-49c2-88a5-0d71aa08df02"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174213Z:2d55946f-0276-445f-ad53-82db4e5ed883"
+ "WESTINDIA:20201116T132810Z:9f067652-bba4-49c2-88a5-0d71aa08df02"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:12 GMT"
+ "Mon, 16 Nov 2020 13:28:09 GMT"
],
"Content-Length": [
"262"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts1.org\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d326aac-6abe-4c71-9fc0-695b6676651f"
+ "86fb54ee-d8f8-42bf-bdc5-7bb770290a77"
],
"Accept-Language": [
"en-US"
@@ -728,12 +728,15 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org/operationresults/c11b5199-c1be-404f-b800-a55b1feaeb26?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "7584827a-00b7-4430-87a5-8e69dccb68f2"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -746,39 +749,39 @@
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
+ "x-ms-request-id": [
+ "61ca13f3-5e26-4258-a0ff-f0f08210b630"
+ ],
"x-ms-correlation-request-id": [
- "9b8c6ae7-2d05-4417-8061-2e658c791ce8"
+ "61ca13f3-5e26-4258-a0ff-f0f08210b630"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174210Z:9b8c6ae7-2d05-4417-8061-2e658c791ce8"
+ "WESTINDIA:20201116T132748Z:61ca13f3-5e26-4258-a0ff-f0f08210b630"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:10 GMT"
- ],
- "Content-Length": [
- "1010"
- ],
- "Content-Type": [
- "application/json"
+ "Mon, 16 Nov 2020 13:27:48 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"51FCF24295E5AB4932801BAA8544AD7AA3606F59\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"7434a9c0-a23e-4f66-b0e3-700016cc8e1e\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "055c4d7e-593a-4b98-856d-8174d60201f4"
+ "96f7c77a-8042-4d2d-853e-1a39a4b37f9e"
],
"Accept-Language": [
"en-US"
@@ -787,7 +790,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
]
},
"ResponseHeaders": {
@@ -797,17 +800,21 @@
"Pragma": [
"no-cache"
],
+ "x-ms-original-request-ids": [
+ "2fcd78c1-8b13-40e6-8962-7b6202268a3c",
+ "d139fbfb-22e2-446c-83ee-3001d038644a"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11997"
],
"x-ms-request-id": [
- "c245892b-1184-4474-b630-fc858df08d41"
+ "68332d92-cb75-4290-a222-5ecf1da8043f"
],
"x-ms-correlation-request-id": [
- "c245892b-1184-4474-b630-fc858df08d41"
+ "68332d92-cb75-4290-a222-5ecf1da8043f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174213Z:c245892b-1184-4474-b630-fc858df08d41"
+ "WESTINDIA:20201116T132805Z:68332d92-cb75-4290-a222-5ecf1da8043f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -816,7 +823,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:13 GMT"
+ "Mon, 16 Nov 2020 13:28:05 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -825,20 +832,20 @@
"-1"
],
"Content-Length": [
- "245"
+ "8671"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93c02982-ae76-4c34-bee9-9bcc437f1c4f"
+ "b82527fa-1da0-496f-bb6e-94ab510b0000"
],
"Accept-Language": [
"en-US"
@@ -847,7 +854,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
]
},
"ResponseHeaders": {
@@ -857,57 +864,48 @@
"Pragma": [
"no-cache"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
],
"x-ms-request-id": [
- "f5ac7231-39b3-46fb-9fef-f30ba5b45858"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "411e067e-5226-4991-aaa6-9832bbe30dbb"
],
"x-ms-correlation-request-id": [
- "438ef253-6f65-44aa-bd82-225e8445f1e2"
+ "411e067e-5226-4991-aaa6-9832bbe30dbb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174213Z:438ef253-6f65-44aa-bd82-225e8445f1e2"
+ "WESTINDIA:20201116T132813Z:411e067e-5226-4991-aaa6-9832bbe30dbb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:13 GMT"
- ],
- "Content-Length": [
- "914"
+ "Mon, 16 Nov 2020 13:28:12 GMT"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "243"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"51FCF24295E5AB4932801BAA8544AD7AA3606F59\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "75460ec1-d205-48fd-ba71-547be52d9b82"
+ "31ad32fb-ef24-4bbc-8121-71382a89f754"
],
"Accept-Language": [
"en-US"
@@ -930,7 +928,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4a01df76-fec8-4ed7-a344-b832a9e765ec"
+ "da6bb8e5-1a42-4f9c-ae83-d353ef760b55"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -941,29 +939,32 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
],
"x-ms-correlation-request-id": [
- "ed9c15e3-104e-45f5-92b2-ad6f348d989e"
+ "3b658f20-4fa8-48c6-a853-c6cf624b6ea7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174217Z:ed9c15e3-104e-45f5-92b2-ad6f348d989e"
+ "WESTINDIA:20201116T132813Z:3b658f20-4fa8-48c6-a853-c6cf624b6ea7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:16 GMT"
+ "Mon, 16 Nov 2020 13:28:12 GMT"
+ ],
+ "Content-Length": [
+ "909"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
similarity index 65%
rename from src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
rename to src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
index 3d80650c0015..85f648851cd0 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppManagedCertificateWithSSLBinding.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "658e72b0-8db0-4121-9e5e-5e6b1da3dd82"
+ "1dc87ece-16ce-4055-9d0c-9eba5e5982a1"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6BC14AEC8BA8B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e332c49c-e837-45a1-aae5-17d9e65542d0"
+ "3419b32d-42b7-43a0-b496-e57397aed41b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11992"
],
"x-ms-correlation-request-id": [
- "dbdc1350-0aff-4514-a4dd-ee9b77354382"
+ "936aee25-4fba-4280-ae9c-17f6eafed3cf"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174045Z:dbdc1350-0aff-4514-a4dd-ee9b77354382"
+ "WESTINDIA:20201116T132925Z:936aee25-4fba-4280-ae9c-17f6eafed3cf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:44 GMT"
+ "Mon, 16 Nov 2020 13:29:25 GMT"
],
"Content-Length": [
- "5699"
+ "5733"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d274530-98aa-42b2-854a-f7e334b76eb4"
+ "7a22da92-a3b5-4e4b-acbf-7a3597e0bc1e"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6BC14AEC8BA8B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2d87fe2a-6c5f-457e-858d-e6c9274b1a9e"
+ "3e975334-8ca6-476f-9b19-e5c06dcb6c17"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11989"
],
"x-ms-correlation-request-id": [
- "a73ef419-91b2-4928-aeeb-32c974f37cd8"
+ "e2170541-b8e7-401a-ac3c-65da7649911b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174113Z:a73ef419-91b2-4928-aeeb-32c974f37cd8"
+ "WESTINDIA:20201116T132958Z:e2170541-b8e7-401a-ac3c-65da7649911b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:12 GMT"
+ "Mon, 16 Nov 2020 13:29:58 GMT"
],
"Content-Length": [
- "5699"
+ "5733"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T06:57:10.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4691d7ba-68f8-4a2c-b7b3-ce8195dae6e0"
+ "902b1f6c-a678-45e0-ac5e-d91877e9fe59"
],
"Accept-Language": [
"en-US"
@@ -171,13 +171,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B464079F88B5\""
+ "\"1D6BC1C9771D195\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "178ac032-9c75-47ff-b32d-7ffc17b20d40"
+ "13728327-8600-4165-aef2-3bf185141ecc"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,22 +189,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11987"
],
"x-ms-correlation-request-id": [
- "076f14c7-6c60-4769-897e-1d71edcb0bf7"
+ "879abeb4-3687-4d6c-887c-8857acb00997"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174120Z:076f14c7-6c60-4769-897e-1d71edcb0bf7"
+ "WESTINDIA:20201116T133012Z:879abeb4-3687-4d6c-887c-8857acb00997"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:20 GMT"
+ "Mon, 16 Nov 2020 13:30:12 GMT"
],
"Content-Length": [
- "5744"
+ "5773"
],
"Content-Type": [
"application/json"
@@ -213,7 +213,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -223,7 +223,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30333035-3909-434d-a75b-f38f3dbfe7a7"
+ "3db22b00-0e27-4279-a0dd-fb66a2e2bf70"
],
"Accept-Language": [
"en-US"
@@ -243,13 +243,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B464079F88B5\""
+ "\"1D6BC1C9771D195\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2f70bbe1-fb81-4d9f-9376-650ef3a3556a"
+ "ca7f8cb1-f1db-406b-930b-d229e1009657"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -261,22 +261,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11985"
],
"x-ms-correlation-request-id": [
- "2c1dee24-d1a8-4851-ab2d-f1cf4d3897d0"
+ "e932a4d6-d701-4ee3-8b89-3d9ecf178d8a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174123Z:2c1dee24-d1a8-4851-ab2d-f1cf4d3897d0"
+ "WESTINDIA:20201116T133018Z:e932a4d6-d701-4ee3-8b89-3d9ecf178d8a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:22 GMT"
+ "Mon, 16 Nov 2020 13:30:17 GMT"
],
"Content-Length": [
- "5744"
+ "5773"
],
"Content-Type": [
"application/json"
@@ -285,7 +285,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -295,7 +295,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d4b79ec3-5811-4fb4-85ea-4a50e10b34ea"
+ "ff5154a5-c994-4fd8-8d61-0a7fc37aac07"
],
"Accept-Language": [
"en-US"
@@ -315,13 +315,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B464079F88B5\""
+ "\"1D6BC1C9771D195\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9d307c0-7599-4dee-88bc-75e930f053d0"
+ "5ece9004-62b8-4b2a-be4b-86023b4d82ed"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -333,22 +333,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11983"
],
"x-ms-correlation-request-id": [
- "7d816064-ffa1-46b0-a2f8-68606308dcf2"
+ "88b7ae05-6bd8-44ed-b104-58d0fe81a668"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174125Z:7d816064-ffa1-46b0-a2f8-68606308dcf2"
+ "WESTINDIA:20201116T133021Z:88b7ae05-6bd8-44ed-b104-58d0fe81a668"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:25 GMT"
+ "Mon, 16 Nov 2020 13:30:21 GMT"
],
"Content-Length": [
- "5744"
+ "5773"
],
"Content-Type": [
"application/json"
@@ -357,7 +357,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -367,7 +367,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4509ccae-dd11-40cb-bb32-df52b87019ef"
+ "addbfa00-ff3f-4de4-b305-9666f399434a"
],
"Accept-Language": [
"en-US"
@@ -387,13 +387,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B464079F88B5\""
+ "\"1D6BC1C9771D195\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ead9f6c5-4308-4e42-932e-5a32f9268f54"
+ "16826ce8-8744-4cae-8cd8-329bfa3df2cd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -405,22 +405,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11981"
],
"x-ms-correlation-request-id": [
- "59ad3b0f-6452-4581-be27-3f245fcf631c"
+ "768753c2-1de1-44cb-9724-aa21871fb6f4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174128Z:59ad3b0f-6452-4581-be27-3f245fcf631c"
+ "WESTINDIA:20201116T133024Z:768753c2-1de1-44cb-9724-aa21871fb6f4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:28 GMT"
+ "Mon, 16 Nov 2020 13:30:23 GMT"
],
"Content-Length": [
- "5744"
+ "5773"
],
"Content-Type": [
"application/json"
@@ -429,7 +429,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -439,7 +439,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9746bd32-8e96-49ac-a9df-9f1968452ad8"
+ "a1a0e042-a223-4618-831a-79888230e465"
],
"Accept-Language": [
"en-US"
@@ -459,13 +459,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B4641078F4A0\""
+ "\"1D6BC1CA584ED6B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "211cf80f-53e2-4fa5-a84b-f551555c9e40"
+ "18298aae-438d-4228-a163-e50182c4b4f6"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -477,22 +477,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11977"
],
"x-ms-correlation-request-id": [
- "ed223698-c1c9-4c70-9887-ae60f58da900"
+ "91989d97-2e9d-4724-a872-c70f5c66efb6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174139Z:ed223698-c1c9-4c70-9887-ae60f58da900"
+ "WESTINDIA:20201116T133037Z:91989d97-2e9d-4724-a872-c70f5c66efb6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:39 GMT"
+ "Mon, 16 Nov 2020 13:30:36 GMT"
],
"Content-Length": [
- "5699"
+ "5733"
],
"Content-Type": [
"application/json"
@@ -501,7 +501,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:27.6066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -511,7 +511,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "acce11f2-eae1-4bc0-88f5-a4a8a040bfcb"
+ "da575997-b4f8-4e88-9c54-db6d468ef6f2"
],
"Accept-Language": [
"en-US"
@@ -534,7 +534,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "00d82547-9b77-49bf-955b-1daaf197fe19"
+ "710a3746-28fb-4158-a25f-74a3b729830a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -546,22 +546,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11991"
],
"x-ms-correlation-request-id": [
- "08e1e4bc-8c42-4ead-8ede-41a005dc5f18"
+ "3f5cdd67-56fc-46d4-b1d9-0451a3e7507d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174045Z:08e1e4bc-8c42-4ead-8ede-41a005dc5f18"
+ "WESTINDIA:20201116T132929Z:3f5cdd67-56fc-46d4-b1d9-0451a3e7507d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:45 GMT"
+ "Mon, 16 Nov 2020 13:29:29 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -570,7 +570,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -580,7 +580,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be473a1b-f417-4a50-bcfa-59f96048ce4c"
+ "8febda1e-fc8f-4fb4-9b50-8fabd85ed2b1"
],
"Accept-Language": [
"en-US"
@@ -603,7 +603,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2ad034b9-ca48-4a84-81d4-8b947809b965"
+ "afa1a1de-5be9-467c-b82d-1206c88b5a97"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -615,22 +615,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11988"
],
"x-ms-correlation-request-id": [
- "3233d1bf-7309-447e-9eb9-c89a60f0cc86"
+ "de9e0356-f754-4bdc-a946-9dc602a4040f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174113Z:3233d1bf-7309-447e-9eb9-c89a60f0cc86"
+ "WESTINDIA:20201116T132959Z:de9e0356-f754-4bdc-a946-9dc602a4040f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:12 GMT"
+ "Mon, 16 Nov 2020 13:29:58 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -639,7 +639,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -649,7 +649,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "66471a33-ae92-4df5-9a63-c4e722d927f1"
+ "96b30332-5373-4b92-991a-f0821850a881"
],
"Accept-Language": [
"en-US"
@@ -672,7 +672,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "49480883-10bd-4d35-aa34-3269849cc1a4"
+ "d587d4c9-9687-4212-9ea8-a8f130f31832"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -684,22 +684,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11986"
],
"x-ms-correlation-request-id": [
- "97dde245-44cb-403b-8227-6617ab0d9e95"
+ "ad523349-715e-497a-bb24-6ec7afc2801a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174121Z:97dde245-44cb-403b-8227-6617ab0d9e95"
+ "WESTINDIA:20201116T133013Z:ad523349-715e-497a-bb24-6ec7afc2801a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:20 GMT"
+ "Mon, 16 Nov 2020 13:30:13 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -708,7 +708,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -718,7 +718,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e0d7b0c-7697-457a-8409-7f082ac99f7c"
+ "c8997ba4-09af-41c9-91ab-cede508d45dd"
],
"Accept-Language": [
"en-US"
@@ -741,7 +741,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "384426d4-a510-4700-b237-48d6bc706443"
+ "dec1c086-2da4-4d8d-b4e2-fc1455e1b35e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -753,22 +753,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11984"
],
"x-ms-correlation-request-id": [
- "961da71f-93d7-48f8-a15b-4dbe53a59a00"
+ "7d7f5576-7ffa-437e-996d-59daa9b982b0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174123Z:961da71f-93d7-48f8-a15b-4dbe53a59a00"
+ "WESTINDIA:20201116T133018Z:7d7f5576-7ffa-437e-996d-59daa9b982b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:22 GMT"
+ "Mon, 16 Nov 2020 13:30:18 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -777,7 +777,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -787,7 +787,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0513fb46-c6e4-4a5f-88de-5270d7312e52"
+ "5af8e5a9-ab86-43bb-959c-34fea145b66f"
],
"Accept-Language": [
"en-US"
@@ -810,7 +810,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aa8731c9-6187-4c4d-b3dd-b5c602d5c3ab"
+ "257643af-1c9d-4445-aab7-5c505785437b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -822,22 +822,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11982"
],
"x-ms-correlation-request-id": [
- "e7b2403a-29ea-4c07-b813-68273623cc42"
+ "83c217b6-22a9-4ab1-b6db-9f4accbe02cc"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174126Z:e7b2403a-29ea-4c07-b813-68273623cc42"
+ "WESTINDIA:20201116T133021Z:83c217b6-22a9-4ab1-b6db-9f4accbe02cc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:26 GMT"
+ "Mon, 16 Nov 2020 13:30:21 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -846,7 +846,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -856,7 +856,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "77072fbf-f567-4357-a713-bcaa39768d49"
+ "a906536a-8eab-49aa-a49b-9de6347493b2"
],
"Accept-Language": [
"en-US"
@@ -879,7 +879,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "94c5d868-b984-4360-8952-05c535817a6d"
+ "45e1c722-6eee-4654-a9fb-c437f9f388d0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -891,22 +891,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11980"
],
"x-ms-correlation-request-id": [
- "1439de8e-e718-48f7-b150-478e460347b4"
+ "40df8af0-b69a-4d11-99c8-3767fc461313"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174129Z:1439de8e-e718-48f7-b150-478e460347b4"
+ "WESTINDIA:20201116T133024Z:40df8af0-b69a-4d11-99c8-3767fc461313"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:29 GMT"
+ "Mon, 16 Nov 2020 13:30:24 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -915,7 +915,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -925,7 +925,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "832024ca-adc1-4426-a888-8e5ec7a993c2"
+ "c41eba6b-3272-4145-9a89-44de35c8143b"
],
"Accept-Language": [
"en-US"
@@ -948,7 +948,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f9f4d419-e3b9-4bfa-8160-fb8a1096779c"
+ "222c4751-e45d-4534-8a09-6dc3d1f9eec8"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -960,22 +960,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11976"
],
"x-ms-correlation-request-id": [
- "b6559e6d-b6d9-46c5-8a20-8355901ed803"
+ "84b5d525-d2c4-46f9-a804-1a63818e82b3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174139Z:b6559e6d-b6d9-46c5-8a20-8355901ed803"
+ "WESTINDIA:20201116T133037Z:84b5d525-d2c4-46f9-a804-1a63818e82b3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:39 GMT"
+ "Mon, 16 Nov 2020 13:30:37 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -984,7 +984,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -994,7 +994,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79048795-5dec-410c-bf70-09d1c3f26f0d"
+ "268292c4-37f6-4946-b3cd-6a43d1e77bc6"
],
"Accept-Language": [
"en-US"
@@ -1017,7 +1017,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1506601e-23a3-47ba-92fc-fa027a6f6d8d"
+ "fe630cea-0a73-48ec-b8e9-7bfc12904206"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1029,19 +1029,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
+ "11993"
],
"x-ms-correlation-request-id": [
- "3b6a28de-0194-4065-8dd6-18482042e518"
+ "069fd606-5999-466a-b532-fff5c7b4d556"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174047Z:3b6a28de-0194-4065-8dd6-18482042e518"
+ "WESTINDIA:20201116T132930Z:069fd606-5999-466a-b532-fff5c7b4d556"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:46 GMT"
+ "Mon, 16 Nov 2020 13:29:30 GMT"
],
"Content-Length": [
"701"
@@ -1053,7 +1053,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1063,7 +1063,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae8f8a37-e37d-474d-9459-b67142580b8a"
+ "f4976aad-234b-4793-aff4-9e8e253b8eda"
],
"Accept-Language": [
"en-US"
@@ -1086,7 +1086,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bbdb9b8a-0f13-40fa-ab5c-daca84d5aa94"
+ "d65e19e6-b2c7-40de-8c48-baa0b9ea2f3c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1098,19 +1098,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
+ "11990"
],
"x-ms-correlation-request-id": [
- "1c09e456-3931-4456-8ae1-5b5d93ef4ec9"
+ "9f752d62-a739-4ea1-8f0e-4d1802b2768b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174113Z:1c09e456-3931-4456-8ae1-5b5d93ef4ec9"
+ "WESTINDIA:20201116T132959Z:9f752d62-a739-4ea1-8f0e-4d1802b2768b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:13 GMT"
+ "Mon, 16 Nov 2020 13:29:59 GMT"
],
"Content-Length": [
"701"
@@ -1122,7 +1122,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1132,7 +1132,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "486554a1-35e1-433a-b1b0-191e9092c75a"
+ "9879e6f0-a13d-4a2e-b200-a8d790ecf076"
],
"Accept-Language": [
"en-US"
@@ -1155,7 +1155,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7bb5e1b7-9580-465e-9ca3-14bd2e5cc2cb"
+ "2592d6d0-5693-4905-9d56-e557b7fc75da"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1167,19 +1167,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11993"
+ "11987"
],
"x-ms-correlation-request-id": [
- "043e3491-dc59-470f-8d78-993e23f3fef0"
+ "24107afb-bec2-4533-888d-1b425de4077c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174121Z:043e3491-dc59-470f-8d78-993e23f3fef0"
+ "WESTINDIA:20201116T133014Z:24107afb-bec2-4533-888d-1b425de4077c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:21 GMT"
+ "Mon, 16 Nov 2020 13:30:14 GMT"
],
"Content-Length": [
"701"
@@ -1191,7 +1191,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1201,7 +1201,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f57f4835-73f6-496a-9fde-97841a12fcd2"
+ "ca43b00b-8e58-487e-8fea-90b22173c2cf"
],
"Accept-Language": [
"en-US"
@@ -1224,7 +1224,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "379612ec-a496-45da-b4a9-1d0d093c5e05"
+ "74d4d7ce-c4f4-42b3-9ac2-869a893e96c7"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1236,19 +1236,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11990"
+ "11984"
],
"x-ms-correlation-request-id": [
- "c39dd05c-b069-4fec-8bf6-c3adad4aa7df"
+ "5aa98b68-55cb-4b2c-88e7-6b715dcdd757"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174124Z:c39dd05c-b069-4fec-8bf6-c3adad4aa7df"
+ "WESTINDIA:20201116T133019Z:5aa98b68-55cb-4b2c-88e7-6b715dcdd757"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:23 GMT"
+ "Mon, 16 Nov 2020 13:30:19 GMT"
],
"Content-Length": [
"701"
@@ -1260,7 +1260,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1270,7 +1270,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57e155f3-d940-4807-beca-ea73bf7a4481"
+ "f4c1b49e-db31-4b1c-90ad-ddd711d1135d"
],
"Accept-Language": [
"en-US"
@@ -1293,7 +1293,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea001269-ccce-4968-837d-467bd09a8402"
+ "0fdc8a7f-b4b5-45e3-b19d-e86f27ac6b22"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1305,19 +1305,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11987"
+ "11981"
],
"x-ms-correlation-request-id": [
- "6a4da036-b096-4f1f-bce4-3e6f9c7b5c1c"
+ "1ee94436-2daf-4cca-93d7-e910608d58b2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174126Z:6a4da036-b096-4f1f-bce4-3e6f9c7b5c1c"
+ "WESTINDIA:20201116T133022Z:1ee94436-2daf-4cca-93d7-e910608d58b2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:26 GMT"
+ "Mon, 16 Nov 2020 13:30:22 GMT"
],
"Content-Length": [
"701"
@@ -1329,7 +1329,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1339,7 +1339,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "495d9692-397f-4045-ae31-0d944380c7db"
+ "f617d8a6-e5ab-48f3-8a3d-577e3e39e0d6"
],
"Accept-Language": [
"en-US"
@@ -1362,7 +1362,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "55df3d16-f23c-441d-9af0-54c38495ccfa"
+ "d6fbc9bd-41f3-4e9f-a387-fc38afd730d2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1374,19 +1374,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11984"
+ "11978"
],
"x-ms-correlation-request-id": [
- "f710cbbb-a289-485e-8545-24b40c2a466a"
+ "b6971572-289d-4eec-bce2-47d9ac564475"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174129Z:f710cbbb-a289-485e-8545-24b40c2a466a"
+ "WESTINDIA:20201116T133025Z:b6971572-289d-4eec-bce2-47d9ac564475"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:29 GMT"
+ "Mon, 16 Nov 2020 13:30:24 GMT"
],
"Content-Length": [
"701"
@@ -1398,7 +1398,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1408,7 +1408,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2428d1ad-f8f2-4717-bdb5-d3475de887ef"
+ "ebb14d13-ed93-4aa2-99b9-9631648bf309"
],
"Accept-Language": [
"en-US"
@@ -1431,7 +1431,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "48a92a51-b8c3-455f-96f0-4509ce1ff483"
+ "e5885294-ca64-4125-ae00-bfa0731bbd2c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1443,19 +1443,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11981"
+ "11975"
],
"x-ms-correlation-request-id": [
- "f5a258bf-9d44-4fea-a321-79c20b67b370"
+ "2bdcca5f-6603-4cca-9c31-7735ca0d9554"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174140Z:f5a258bf-9d44-4fea-a321-79c20b67b370"
+ "WESTINDIA:20201116T133038Z:2bdcca5f-6603-4cca-9c31-7735ca0d9554"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:39 GMT"
+ "Mon, 16 Nov 2020 13:30:37 GMT"
],
"Content-Length": [
"701"
@@ -1467,7 +1467,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1477,7 +1477,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c941915a-af83-4f1b-8c8b-30e7f7240e20"
+ "b97565c8-9079-4e4b-b1df-27738483224b"
],
"Accept-Language": [
"en-US"
@@ -1500,7 +1500,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "341b4dd7-f60c-4253-8742-f2609db623b0"
+ "551bc089-11a4-4139-ba5a-9d097e241a65"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1512,19 +1512,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11998"
+ "11992"
],
"x-ms-correlation-request-id": [
- "9c00bf64-f8cf-4b06-a731-17eb24e30412"
+ "3d6a24a2-1f26-4a3c-bf37-708a4eb454e3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174048Z:9c00bf64-f8cf-4b06-a731-17eb24e30412"
+ "WESTINDIA:20201116T132933Z:3d6a24a2-1f26-4a3c-bf37-708a4eb454e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:47 GMT"
+ "Mon, 16 Nov 2020 13:29:33 GMT"
],
"Content-Length": [
"255"
@@ -1546,7 +1546,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3764d8cf-06a0-40a9-8bd8-fdf41f0cc64f"
+ "d0ab7cc5-5c84-4b82-8762-85c2c98828d8"
],
"Accept-Language": [
"en-US"
@@ -1569,7 +1569,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "56be335a-2958-495f-b8a5-aab96bb4f7c7"
+ "3820e90f-c059-45d1-94a0-cbcbe91f7205"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1581,19 +1581,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11989"
],
"x-ms-correlation-request-id": [
- "b8bd0494-7298-44ea-a068-8500ad899245"
+ "101bad87-e7ea-4080-90ad-19a0d6e43115"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174114Z:b8bd0494-7298-44ea-a068-8500ad899245"
+ "WESTINDIA:20201116T133000Z:101bad87-e7ea-4080-90ad-19a0d6e43115"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:13 GMT"
+ "Mon, 16 Nov 2020 13:29:59 GMT"
],
"Content-Length": [
"255"
@@ -1615,7 +1615,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c5756caa-defb-4904-b73d-2707fa55f1e3"
+ "43a5bc03-e22e-4830-b612-c98b74c69dc9"
],
"Accept-Language": [
"en-US"
@@ -1638,7 +1638,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "90a2e35e-a3f4-4ac4-a170-0926d86337a0"
+ "06171ad3-e9c0-4b5c-90b4-39250615bab9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1650,19 +1650,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11992"
+ "11986"
],
"x-ms-correlation-request-id": [
- "f13e707a-0e17-4ac0-aa4e-645b4127b4c9"
+ "8c38e9ce-1112-4fa9-b16c-8445fe8a965f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174122Z:f13e707a-0e17-4ac0-aa4e-645b4127b4c9"
+ "WESTINDIA:20201116T133015Z:8c38e9ce-1112-4fa9-b16c-8445fe8a965f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:21 GMT"
+ "Mon, 16 Nov 2020 13:30:15 GMT"
],
"Content-Length": [
"255"
@@ -1684,7 +1684,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b04fa16-a72a-4c24-a865-46483a836eb2"
+ "d905e960-9076-41ef-8974-cf0c9957f0e5"
],
"Accept-Language": [
"en-US"
@@ -1707,7 +1707,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7e7002d-f8fb-459e-915e-8e431939d4b9"
+ "7777921e-709a-4d82-a3da-f33bc08ce3ff"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1719,19 +1719,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11989"
+ "11983"
],
"x-ms-correlation-request-id": [
- "31299f07-ba34-4f92-8eeb-bb8d529adb2a"
+ "f194a068-5b18-4d63-9f22-96bace226040"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174124Z:31299f07-ba34-4f92-8eeb-bb8d529adb2a"
+ "WESTINDIA:20201116T133020Z:f194a068-5b18-4d63-9f22-96bace226040"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:23 GMT"
+ "Mon, 16 Nov 2020 13:30:20 GMT"
],
"Content-Length": [
"255"
@@ -1753,7 +1753,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e3780739-47d4-4621-9f73-e32268757721"
+ "67ceddaa-67fa-426a-ab22-7957b2c6837e"
],
"Accept-Language": [
"en-US"
@@ -1776,7 +1776,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fd69a23b-c9eb-4bc2-91e0-36e7d10b0dd1"
+ "d2b8c529-06bd-4ffc-b69d-f58466d58688"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1788,19 +1788,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11986"
+ "11980"
],
"x-ms-correlation-request-id": [
- "3e85651a-9c64-4c43-ae51-2dd5f33d6aa0"
+ "12cc9f71-aee6-4c20-941c-656360d3fcb0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174127Z:3e85651a-9c64-4c43-ae51-2dd5f33d6aa0"
+ "WESTINDIA:20201116T133023Z:12cc9f71-aee6-4c20-941c-656360d3fcb0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:27 GMT"
+ "Mon, 16 Nov 2020 13:30:23 GMT"
],
"Content-Length": [
"255"
@@ -1822,7 +1822,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a0397b48-8838-4b52-9fbe-644811d9db0f"
+ "b781d1a8-56e6-499d-8d18-4e47060a48d0"
],
"Accept-Language": [
"en-US"
@@ -1845,7 +1845,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a0623cb2-0ff9-470d-a065-d13aefa4052e"
+ "6b0586a3-3fc5-4caf-8276-70a8fa16fe9e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1857,19 +1857,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11983"
+ "11977"
],
"x-ms-correlation-request-id": [
- "d9dccb4a-50dd-4b77-ba18-181451bdd344"
+ "b43f6fae-5c0c-4e06-9adb-35f579062efc"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174130Z:d9dccb4a-50dd-4b77-ba18-181451bdd344"
+ "WESTINDIA:20201116T133025Z:b43f6fae-5c0c-4e06-9adb-35f579062efc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:29 GMT"
+ "Mon, 16 Nov 2020 13:30:25 GMT"
],
"Content-Length": [
"255"
@@ -1891,7 +1891,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ba2e1c4f-0552-4146-b7fb-c478cdf67e13"
+ "995edfbf-ef2c-49c7-9302-873fb93dd502"
],
"Accept-Language": [
"en-US"
@@ -1914,7 +1914,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eaf26528-76e5-4233-a84d-14a7a123fca2"
+ "3b3724c3-0a9f-4bf5-b8c7-080035a97055"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1926,19 +1926,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11980"
+ "11974"
],
"x-ms-correlation-request-id": [
- "d2e2402e-3125-4f0c-b863-e7091d6253bd"
+ "cb1a10fa-7e39-4468-bf5c-233bdf850168"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174140Z:d2e2402e-3125-4f0c-b863-e7091d6253bd"
+ "WESTINDIA:20201116T133038Z:cb1a10fa-7e39-4468-bf5c-233bdf850168"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:40 GMT"
+ "Mon, 16 Nov 2020 13:30:38 GMT"
],
"Content-Length": [
"255"
@@ -1960,7 +1960,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11c47b3a-80a2-4302-861d-ff29201aef29"
+ "c2d939da-bb18-4210-b7aa-01ba7b7b8383"
],
"Accept-Language": [
"en-US"
@@ -1983,7 +1983,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea0c210b-5a04-4a60-a17b-0df451b5a8ab"
+ "1b5e65b8-8050-4ebc-a73a-99840f0eabdf"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1995,19 +1995,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11997"
+ "11991"
],
"x-ms-correlation-request-id": [
- "d0da52b8-d7e7-44de-b57c-ecef657f5b2a"
+ "fd55c727-f508-4302-a059-cec912688814"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174048Z:d0da52b8-d7e7-44de-b57c-ecef657f5b2a"
+ "WESTINDIA:20201116T132934Z:fd55c727-f508-4302-a059-cec912688814"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:40:48 GMT"
+ "Mon, 16 Nov 2020 13:29:34 GMT"
],
"Content-Length": [
"252"
@@ -2029,7 +2029,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78461d88-bcaf-44a5-b2b0-eb1a32a37d8c"
+ "619c2103-5dda-43a9-8889-72e0c95153ad"
],
"Accept-Language": [
"en-US"
@@ -2052,7 +2052,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3bef015f-4524-462b-bf7d-ece564f9d0fb"
+ "1440bfa6-dd26-4878-829c-9eba75a70d10"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2064,19 +2064,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11988"
],
"x-ms-correlation-request-id": [
- "6ff2bd3b-4e17-49af-9e8e-3f81532f610e"
+ "d290b67d-9c8a-4193-becc-cad7979ec5e6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174114Z:6ff2bd3b-4e17-49af-9e8e-3f81532f610e"
+ "WESTINDIA:20201116T133001Z:d290b67d-9c8a-4193-becc-cad7979ec5e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:14 GMT"
+ "Mon, 16 Nov 2020 13:30:00 GMT"
],
"Content-Length": [
"252"
@@ -2098,7 +2098,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52124565-829a-4396-bf89-1a90276fef32"
+ "0e8e8626-c7ed-4ed0-9845-68094b106fc2"
],
"Accept-Language": [
"en-US"
@@ -2121,7 +2121,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "014cb9e9-653a-4854-97c4-142bc57759d9"
+ "7a41b13b-4904-4f27-8685-9bf3e136edcc"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2133,19 +2133,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11991"
+ "11985"
],
"x-ms-correlation-request-id": [
- "f61669e6-8bdc-42d4-bc04-928a82ac4831"
+ "e63d4d7c-ea25-4257-b097-415a024f060a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174122Z:f61669e6-8bdc-42d4-bc04-928a82ac4831"
+ "WESTINDIA:20201116T133016Z:e63d4d7c-ea25-4257-b097-415a024f060a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:21 GMT"
+ "Mon, 16 Nov 2020 13:30:16 GMT"
],
"Content-Length": [
"252"
@@ -2167,7 +2167,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "62e896b4-f851-40c5-91e8-3e6b2c06536f"
+ "58b3def0-4ef8-487a-9da1-8c1768fb108c"
],
"Accept-Language": [
"en-US"
@@ -2190,7 +2190,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "64820dfc-e7b1-4bc5-a911-98ac82bd6eac"
+ "2b91213e-9d55-4600-8746-db0b6d4f9ba4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2202,19 +2202,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11988"
+ "11982"
],
"x-ms-correlation-request-id": [
- "3ca46aee-c04c-414e-859d-e23fbf8020aa"
+ "e24b1ca2-064a-4072-abd8-cd3128c9d44a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174125Z:3ca46aee-c04c-414e-859d-e23fbf8020aa"
+ "WESTINDIA:20201116T133020Z:e24b1ca2-064a-4072-abd8-cd3128c9d44a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:25 GMT"
+ "Mon, 16 Nov 2020 13:30:20 GMT"
],
"Content-Length": [
"252"
@@ -2236,7 +2236,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c614f66-fbd0-4699-a7e5-36b8929a8059"
+ "7b91eea7-9602-4ab7-8af8-c637b3eedb5a"
],
"Accept-Language": [
"en-US"
@@ -2259,7 +2259,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "553a2221-b8c1-49fb-82f3-665589f4c6de"
+ "911d3faf-c9ff-4e00-a15a-ec54cbdf31c9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2271,19 +2271,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11985"
+ "11979"
],
"x-ms-correlation-request-id": [
- "293bb670-356b-4ada-8f33-6a9592adea58"
+ "c3cf3db9-297b-4baf-a222-ee56b4f0c8b2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174127Z:293bb670-356b-4ada-8f33-6a9592adea58"
+ "WESTINDIA:20201116T133023Z:c3cf3db9-297b-4baf-a222-ee56b4f0c8b2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:27 GMT"
+ "Mon, 16 Nov 2020 13:30:23 GMT"
],
"Content-Length": [
"252"
@@ -2305,7 +2305,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e908b89-8357-408f-9f00-c7946dac034f"
+ "d5a0b53f-b5eb-49b3-b874-1b0098bcd374"
],
"Accept-Language": [
"en-US"
@@ -2328,7 +2328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c3a5c688-97c5-4504-b2be-1c664f968621"
+ "94488ae1-f4f1-4d17-8aa3-462c7269a098"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2340,19 +2340,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11982"
+ "11976"
],
"x-ms-correlation-request-id": [
- "bf84efbf-60cf-4676-a6d3-8d4b707dce10"
+ "233a9b9e-55da-4829-8627-9afcea0f19ce"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174130Z:bf84efbf-60cf-4676-a6d3-8d4b707dce10"
+ "WESTINDIA:20201116T133026Z:233a9b9e-55da-4829-8627-9afcea0f19ce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:30 GMT"
+ "Mon, 16 Nov 2020 13:30:25 GMT"
],
"Content-Length": [
"252"
@@ -2374,7 +2374,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15290955-68ab-4397-9725-3c101a094166"
+ "9129e75a-6f01-4bb7-a914-54d3035b213f"
],
"Accept-Language": [
"en-US"
@@ -2397,7 +2397,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d2d780c4-d778-47b8-957d-0ee078821782"
+ "256cc936-e6e5-4fb7-8e84-74001de0c9b2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2409,19 +2409,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11979"
+ "11973"
],
"x-ms-correlation-request-id": [
- "0b0010c1-8ea7-46db-a486-b16c5670ddd2"
+ "e4b6e51e-4933-46cc-afb4-f333f0875621"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174141Z:0b0010c1-8ea7-46db-a486-b16c5670ddd2"
+ "WESTINDIA:20201116T133039Z:e4b6e51e-4933-46cc-afb4-f333f0875621"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:40 GMT"
+ "Mon, 16 Nov 2020 13:30:38 GMT"
],
"Content-Length": [
"252"
@@ -2443,7 +2443,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49a954bb-4625-4592-91cb-592c40ce2b6d"
+ "b42f2901-4395-49ff-af4e-e351398fba25"
],
"Accept-Language": [
"en-US"
@@ -2468,12 +2468,15 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net/operationresults/07730b37-afc3-4660-be10-847161a479c7?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "23bb28ae-88dd-4b46-8fb1-04fa3be10204"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -2484,41 +2487,105 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "349efd66-8931-49e0-bba3-e31650ca9b4e"
],
"x-ms-correlation-request-id": [
- "737cdb99-9e7c-4bd2-b7c3-ebe114d000ae"
+ "349efd66-8931-49e0-bba3-e31650ca9b4e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174112Z:737cdb99-9e7c-4bd2-b7c3-ebe114d000ae"
+ "WESTINDIA:20201116T132942Z:349efd66-8931-49e0-bba3-e31650ca9b4e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:11 GMT"
+ "Mon, 16 Nov 2020 13:29:41 GMT"
+ ],
+ "Expires": [
+ "-1"
],
"Content-Length": [
- "1006"
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d56b7779-8dda-4b18-84b6-f8971dc33626"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-original-request-ids": [
+ "5c3f165e-1b13-4c90-a11d-6ce88e1631ee",
+ "17efe56d-8725-452c-b030-19f3d94fe919"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "c64cb74f-1716-46d4-8cdc-0200c7e93d5d"
+ ],
+ "x-ms-correlation-request-id": [
+ "c64cb74f-1716-46d4-8cdc-0200c7e93d5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201116T132958Z:c64cb74f-1716-46d4-8cdc-0200c7e93d5d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 16 Nov 2020 13:29:57 GMT"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "8671"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"133507a7-35d9-48d1-a8b7-827c8cad2d6d\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4f1a99e7-55d1-41a8-acee-4f0e2466c3ce"
+ "e8d63ce7-6ebd-48fc-9c80-2753e1213c37"
],
"Accept-Language": [
"en-US"
@@ -2544,13 +2611,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B40A0C725360\""
+ "\"1D6BC14AEC8BA8B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9fd2301d-b0e9-4fec-8f2a-62fc567aa497"
+ "8f64b8fa-8f97-4f0a-ae30-28e3c8abe6c5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2565,19 +2632,19 @@
"499"
],
"x-ms-correlation-request-id": [
- "929f954b-e6ae-4d97-aabe-81d2ce02c27b"
+ "60841bb3-1241-49ed-ba36-3a833e0db6f8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174120Z:929f954b-e6ae-4d97-aabe-81d2ce02c27b"
+ "WESTINDIA:20201116T133007Z:60841bb3-1241-49ed-ba36-3a833e0db6f8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:19 GMT"
+ "Mon, 16 Nov 2020 13:30:06 GMT"
],
"Content-Length": [
- "5944"
+ "5973"
],
"Content-Type": [
"application/json"
@@ -2586,7 +2653,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:17.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2596,7 +2663,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2007e3c1-ad15-44e3-a736-901cb3ff4897"
+ "85c06d43-fad7-470c-89e3-df1893711f0e"
],
"Accept-Language": [
"en-US"
@@ -2622,13 +2689,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B464079F88B5\""
+ "\"1D6BC1C9771D195\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "38b93325-455f-4692-923e-994870b56356"
+ "2bd82afc-35be-47ef-afec-8ed18622f378"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2643,19 +2710,19 @@
"498"
],
"x-ms-correlation-request-id": [
- "6a6278f1-f963-46a0-a6d4-bc09a691fc23"
+ "76963de8-d3d9-4027-8f7e-174eb566c0eb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174134Z:6a6278f1-f963-46a0-a6d4-bc09a691fc23"
+ "WESTINDIA:20201116T133030Z:76963de8-d3d9-4027-8f7e-174eb566c0eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:34 GMT"
+ "Mon, 16 Nov 2020 13:30:29 GMT"
],
"Content-Length": [
- "5899"
+ "5933"
],
"Content-Type": [
"application/json"
@@ -2664,7 +2731,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:27.6066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2674,7 +2741,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "373bdc52-56f8-4068-b443-58025f0d3a49"
+ "644783e0-8f07-4a58-8e67-69e443bdfda1"
],
"Accept-Language": [
"en-US"
@@ -2694,16 +2761,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11999"
],
"x-ms-request-id": [
- "e6cb6091-803b-4078-b97e-21c0d21d42ae"
+ "3da1090a-3784-4faf-97dc-74b94bd08c84"
],
"x-ms-correlation-request-id": [
- "e6cb6091-803b-4078-b97e-21c0d21d42ae"
+ "3da1090a-3784-4faf-97dc-74b94bd08c84"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174134Z:e6cb6091-803b-4078-b97e-21c0d21d42ae"
+ "WESTINDIA:20201116T133030Z:3da1090a-3784-4faf-97dc-74b94bd08c84"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2712,7 +2779,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:34 GMT"
+ "Mon, 16 Nov 2020 13:30:29 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2721,10 +2788,10 @@
"-1"
],
"Content-Length": [
- "243"
+ "477"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -2734,7 +2801,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "30c4c371-4ac7-4299-a93f-3e52dc3f048b"
+ "f2515e28-6617-464c-930e-b6812d668328"
],
"Accept-Language": [
"en-US"
@@ -2754,16 +2821,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-request-id": [
- "84f85b16-b53f-43da-bed5-fda528817998"
+ "f2db5760-bba2-45fb-89cc-6a3fa71ceb8a"
],
"x-ms-correlation-request-id": [
- "84f85b16-b53f-43da-bed5-fda528817998"
+ "f2db5760-bba2-45fb-89cc-6a3fa71ceb8a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174141Z:84f85b16-b53f-43da-bed5-fda528817998"
+ "WESTINDIA:20201116T133039Z:f2db5760-bba2-45fb-89cc-6a3fa71ceb8a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2772,7 +2839,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:41 GMT"
+ "Mon, 16 Nov 2020 13:30:38 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2781,10 +2848,151 @@
"-1"
],
"Content-Length": [
- "12"
+ "245"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8fb0dca7-e380-4867-ac61-5baf62a5841d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5fea0a96-7e4f-4ff3-9424-9ea90ea77121"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "56e2c7cb-c932-49ed-8bcc-dd9e5c0b02cb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201116T133031Z:56e2c7cb-c932-49ed-8bcc-dd9e5c0b02cb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 16 Nov 2020 13:30:30 GMT"
+ ],
+ "Content-Length": [
+ "914"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "942f6583-c6a8-4ed7-9053-69324eb9c92e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Age": [
+ "8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5fea0a96-7e4f-4ff3-9424-9ea90ea77121"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-arm-request-tracking-id": [
+ "a02adfec-0755-4c1e-ac93-404566ed6ee1"
+ ],
+ "x-ms-correlation-request-id": [
+ "a02adfec-0755-4c1e-ac93-404566ed6ee1"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201116T133039Z:a02adfec-0755-4c1e-ac93-404566ed6ee1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 16 Nov 2020 13:30:38 GMT"
+ ],
+ "Content-Length": [
+ "914"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -2794,7 +3002,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43032a73-2813-4bb4-99c4-2904ea21cb74"
+ "749cd331-7073-4d43-9a4a-1c67f6e1b794"
],
"Accept-Language": [
"en-US"
@@ -2817,7 +3025,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f6026f0d-f3fc-4777-9de8-e58deb7cd478"
+ "64d00973-82fe-4d7d-a044-bd0cf0b9ac89"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2829,19 +3037,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11978"
],
"x-ms-correlation-request-id": [
- "dd00fb6b-8a85-47dd-b12c-14d14e4b70cd"
+ "7da09fb0-387c-4222-b684-3480b9ddb22a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174135Z:dd00fb6b-8a85-47dd-b12c-14d14e4b70cd"
+ "WESTINDIA:20201116T133031Z:7da09fb0-387c-4222-b684-3480b9ddb22a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:35 GMT"
+ "Mon, 16 Nov 2020 13:30:31 GMT"
],
"Content-Length": [
"909"
@@ -2853,7 +3061,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"5DE20BB69FDA2FE6F33E07CC6111F5B08E5A8C86\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -2863,7 +3071,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c0eb9c4c-dad5-41ac-9769-99a2e90a0730"
+ "c92b2e84-96d3-4212-bc27-10253be4109b"
],
"Accept-Language": [
"en-US"
@@ -2886,7 +3094,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7db4f5f4-89b4-4276-8c66-ef56d3d6433e"
+ "d8f2ca4f-9b03-400f-bd78-b25c25112e86"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2898,19 +3106,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "e8e0a489-c72b-432a-8dfe-bad2d15c6092"
+ "bf9ed137-fe29-4fa5-897a-a47f73573fc2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174138Z:e8e0a489-c72b-432a-8dfe-bad2d15c6092"
+ "WESTINDIA:20201116T133036Z:bf9ed137-fe29-4fa5-897a-a47f73573fc2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:41:38 GMT"
+ "Mon, 16 Nov 2020 13:30:36 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
similarity index 55%
rename from src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
rename to src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
index 76c3dabe0e75..b59903212a4f 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppManagedCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cca52882-ea25-45d2-b63d-e46540569792"
+ "d778d91e-f8c4-4004-8bc1-caa5af7bf41b"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B4641078F4A0\""
+ "\"1D6BC14AEC8BA8B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ae813831-786d-4cda-8174-087913406fb2"
+ "350c70f8-43af-44b4-92e6-caa668e2c00a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -48,19 +48,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "6a56e118-dd7e-499b-9d37-e17267017049"
+ "32b4ba0f-05bf-4999-979f-bc20c7344436"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174221Z:6a56e118-dd7e-499b-9d37-e17267017049"
+ "WESTINDIA:20201116T132643Z:32b4ba0f-05bf-4999-979f-bc20c7344436"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:21 GMT"
+ "Mon, 16 Nov 2020 13:26:42 GMT"
],
"Content-Length": [
- "5699"
+ "5733"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c6ca382-8a66-4239-b4c2-8758b01821cd"
+ "1d3b0923-9ab3-4d10-a1ad-b228ba64e568"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6B4641078F4A0\""
+ "\"1D6BC14AEC8BA8B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "31f83fa5-d4c0-4f6d-a5ff-635986b81938"
+ "94212453-257d-43e5-b198-56b57c0b2365"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11996"
],
"x-ms-correlation-request-id": [
- "18f8a27a-f435-45e4-bd64-9ca7f0b6f41c"
+ "6f645507-bb0b-44b2-a2de-c05ceb464d6c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174248Z:18f8a27a-f435-45e4-bd64-9ca7f0b6f41c"
+ "WESTINDIA:20201116T132717Z:6f645507-bb0b-44b2-a2de-c05ceb464d6c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:48 GMT"
+ "Mon, 16 Nov 2020 13:27:16 GMT"
],
"Content-Length": [
- "5699"
+ "5733"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-06T17:41:32.01\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6ee7cd0-7b30-4cd1-9c6c-c994a0f0a670"
+ "9ef04bfe-03c9-4e0c-8517-b6f9ddcc7e71"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a50441d2-16dc-4c8d-a1a5-349e6f558097"
+ "0cbd48b1-b8e9-42ea-83d5-a792828a4a37"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,19 +189,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "621d83c3-32da-4ef1-ba0f-b7c91ac106d5"
+ "bc756b84-c959-4b5b-8c28-3e2ad3b42437"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174222Z:621d83c3-32da-4ef1-ba0f-b7c91ac106d5"
+ "WESTINDIA:20201116T132650Z:bc756b84-c959-4b5b-8c28-3e2ad3b42437"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:21 GMT"
+ "Mon, 16 Nov 2020 13:26:49 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -210,7 +210,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a42462a1-f913-4ed8-84e4-3cc1599a7356"
+ "dbf33d29-91b4-40b6-8c46-adedaadb73f5"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e406e1b-a21c-4fa2-81cc-e32a9efc54ee"
+ "00b329e1-7bff-43cf-bed4-1c95514c27f9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,22 +255,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "6a760d45-9099-4051-ba02-0a4a2faa9d23"
+ "6b32ad4c-4cc3-44bc-92ed-aca78f4baa3d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174248Z:6a760d45-9099-4051-ba02-0a4a2faa9d23"
+ "WESTINDIA:20201116T132718Z:6b32ad4c-4cc3-44bc-92ed-aca78f4baa3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:48 GMT"
+ "Mon, 16 Nov 2020 13:27:17 GMT"
],
"Content-Length": [
- "3544"
+ "3570"
],
"Content-Type": [
"application/json"
@@ -279,7 +279,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c0d8c58-5020-42e7-83a0-238dfb11406d"
+ "779a03d3-9425-4e3d-a290-c7e176a30d6f"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8e550c30-5ff8-4b1b-838d-bfedb479cc67"
+ "cd74a6b9-ab9d-4a69-8dd6-3f09e82eb3af"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,16 +327,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "ec56fb39-6543-4fa0-bd01-909d08a5e547"
+ "27ff22fb-77db-4763-be8c-d55ae2671c82"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174222Z:ec56fb39-6543-4fa0-bd01-909d08a5e547"
+ "WESTINDIA:20201116T132650Z:27ff22fb-77db-4763-be8c-d55ae2671c82"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:22 GMT"
+ "Mon, 16 Nov 2020 13:26:50 GMT"
],
"Content-Length": [
"701"
@@ -348,7 +348,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "111a3f11-7f4e-4de9-9c0f-571eee469fab"
+ "41ce69ec-1b76-41b1-b08a-df673aba7c16"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e2c1227-afcc-4150-ac2c-e81bca95a6ae"
+ "b5f4f04a-1401-44f6-a82a-bbd631ebf839"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -396,16 +396,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "875c5a15-4848-49d6-83b4-7448c1eb3368"
+ "e93862d0-c78b-4879-84a3-265cc42a4a3a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174249Z:875c5a15-4848-49d6-83b4-7448c1eb3368"
+ "WESTINDIA:20201116T132718Z:e93862d0-c78b-4879-84a3-265cc42a4a3a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:49 GMT"
+ "Mon, 16 Nov 2020 13:27:17 GMT"
],
"Content-Length": [
"701"
@@ -417,7 +417,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f60db1b-3001-44d6-b022-54d4c8342c6a"
+ "8003986b-3bfc-4723-9a10-97b50cd32b83"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f4fe9ab7-e332-4d91-b4cb-0ff12763a701"
+ "66261285-554d-4d76-959f-983956acbd26"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,16 +465,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f5e852a0-9b8c-4343-ae40-68535ed09cc8"
+ "90ee343e-f6d1-4729-8f36-6945c1054d98"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174223Z:f5e852a0-9b8c-4343-ae40-68535ed09cc8"
+ "WESTINDIA:20201116T132651Z:90ee343e-f6d1-4729-8f36-6945c1054d98"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:22 GMT"
+ "Mon, 16 Nov 2020 13:26:50 GMT"
],
"Content-Length": [
"255"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "410486a1-ad4f-47f7-b6ea-0f510ec534fa"
+ "5307d9a1-aaf6-48ce-b755-f2b751cbbe4a"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2af478e6-3f58-47b0-9166-d1c83cc5418e"
+ "b67d6d93-4c2d-4e85-8b9e-4baed404e898"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,16 +534,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "b85e4b7b-b3d5-420c-a8f0-e436c7ca204d"
+ "838e767c-db20-4be0-aa0c-e6dc4f9e29fd"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174250Z:b85e4b7b-b3d5-420c-a8f0-e436c7ca204d"
+ "WESTINDIA:20201116T132719Z:838e767c-db20-4be0-aa0c-e6dc4f9e29fd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:49 GMT"
+ "Mon, 16 Nov 2020 13:27:18 GMT"
],
"Content-Length": [
"255"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0562b097-c61a-4975-9ff4-a4fa5b0c9a26"
+ "b3bc640a-ae16-4b85-a104-aa276c931e9e"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "77716933-fec1-452e-9c22-df863924a356"
+ "fc33e44d-64db-45a6-9c71-95a7a4720322"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,16 +603,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5ccab622-b48f-4427-a2dd-11475ed1b519"
+ "6c851fa5-34d9-449e-bb52-7cb3051ad3ba"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174223Z:5ccab622-b48f-4427-a2dd-11475ed1b519"
+ "WESTINDIA:20201116T132651Z:6c851fa5-34d9-449e-bb52-7cb3051ad3ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:23 GMT"
+ "Mon, 16 Nov 2020 13:26:51 GMT"
],
"Content-Length": [
"252"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3a1a81e7-39ea-4fa9-8106-9c9e25c9cf50"
+ "20514859-c254-4dfc-b82d-4343d8ef27f8"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06e2dc0e-8d3b-4fd1-9d68-7acdcd27c92d"
+ "2b457292-647e-4038-b030-3254ec2ad0b2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -672,16 +672,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "832feaa3-7cb0-4512-93ed-9348f594d68e"
+ "945cc1d5-bdeb-48cf-97a8-3292d4b30fb2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174250Z:832feaa3-7cb0-4512-93ed-9348f594d68e"
+ "WESTINDIA:20201116T132719Z:945cc1d5-bdeb-48cf-97a8-3292d4b30fb2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:50 GMT"
+ "Mon, 16 Nov 2020 13:27:18 GMT"
],
"Content-Length": [
"252"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "24d3ea53-fd5c-439e-a887-8961ee889bd9"
+ "ff40f55b-2921-4951-8461-e2bdcf6ba2f0"
],
"Accept-Language": [
"en-US"
@@ -728,12 +728,15 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net/operationresults/fa0e1838-8d2b-43db-9230-6fc1a414da29?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "456ebbcc-a765-4f3a-9c4b-3fdc8c140b1e"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -746,29 +749,93 @@
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
+ "x-ms-request-id": [
+ "4ce355eb-ed2c-4fff-981d-54e2280dfc1a"
+ ],
"x-ms-correlation-request-id": [
- "27e4d75f-45e2-4b29-ae5f-3739a7050fd3"
+ "4ce355eb-ed2c-4fff-981d-54e2280dfc1a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174247Z:27e4d75f-45e2-4b29-ae5f-3739a7050fd3"
+ "WESTINDIA:20201116T132701Z:4ce355eb-ed2c-4fff-981d-54e2280dfc1a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:47 GMT"
+ "Mon, 16 Nov 2020 13:27:00 GMT"
+ ],
+ "Expires": [
+ "-1"
],
"Content-Length": [
- "1006"
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e8e2e3db-1063-48d3-ba6c-ea5f7f63db39"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-original-request-ids": [
+ "02056d4d-2d8a-4d98-8072-23ebeb7f7e1a",
+ "0abd91df-1ea0-4620-8dbb-0f5c20707244"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "25dc212f-114b-4ad6-ae57-502b854c220b"
+ ],
+ "x-ms-correlation-request-id": [
+ "25dc212f-114b-4ad6-ae57-502b854c220b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201116T132717Z:25dc212f-114b-4ad6-ae57-502b854c220b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 16 Nov 2020 13:27:16 GMT"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "7756"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3428697094691AE6C6D829C8D3352DB5BA059273\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/70399ac7-2a5d-46d1-891d-ab737fb2ad08/resourcegroups/freecert-rg-centralus/providers/microsoft.keyvault/vaults/afccentralus\",\r\n \"keyVaultSecretName\": \"cb3cb8d1-5b20-4252-abcc-753b485e0671\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -778,7 +845,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53cf31ee-1f52-48c3-8eb2-4051840a7c60"
+ "e51a9186-5414-4c2a-9eb4-88322b9fc9e5"
],
"Accept-Language": [
"en-US"
@@ -801,13 +868,13 @@
"11999"
],
"x-ms-request-id": [
- "cdc6fb9b-b10e-47b2-a00d-5b3be4349c49"
+ "17414999-220c-4e8d-b0e0-bee368bedbef"
],
"x-ms-correlation-request-id": [
- "cdc6fb9b-b10e-47b2-a00d-5b3be4349c49"
+ "17414999-220c-4e8d-b0e0-bee368bedbef"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174250Z:cdc6fb9b-b10e-47b2-a00d-5b3be4349c49"
+ "WESTINDIA:20201116T132720Z:17414999-220c-4e8d-b0e0-bee368bedbef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -816,7 +883,7 @@
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:50 GMT"
+ "Mon, 16 Nov 2020 13:27:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -825,20 +892,80 @@
"-1"
],
"Content-Length": [
- "243"
+ "12"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd6e08ba-3358-454b-a365-2c4110e571fc"
+ "1c71c49d-2d7f-4ee7-bb4c-15b745b26636"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "55d4ae9e-8688-4d2e-b749-086d6b0cc8ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "55d4ae9e-8688-4d2e-b749-086d6b0cc8ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201116T132720Z:55d4ae9e-8688-4d2e-b749-086d6b0cc8ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 16 Nov 2020 13:27:20 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "1726"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzLy5ORVRTREtSRy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvYWRvcmVzbm93LS5ORVRTREtSRy1DZW50cmFsVVN3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0aa81b3e-90a4-40be-bc3e-228d7b1a7534"
],
"Accept-Language": [
"en-US"
@@ -861,7 +988,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "aca542c7-2b26-403b-9ae2-0caf26a3205f"
+ "cbceb84c-4080-46c6-85b8-a7911312a06c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -873,22 +1000,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "6f3a9a5f-2537-4c09-aa41-999eade6621b"
+ "9f70a0ee-191f-4a66-abec-747441382bf7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174251Z:6f3a9a5f-2537-4c09-aa41-999eade6621b"
+ "WESTINDIA:20201116T132721Z:9f70a0ee-191f-4a66-abec-747441382bf7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:51 GMT"
+ "Mon, 16 Nov 2020 13:27:20 GMT"
],
"Content-Length": [
- "909"
+ "935"
],
"Content-Type": [
"application/json"
@@ -897,17 +1024,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-06T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-06T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3428697094691AE6C6D829C8D3352DB5BA059273\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy90ZXN0a3YyODA5LXRlc3RjZXJ0MjgwOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57c7a68d-a8e4-49eb-877b-d7ac0a294714"
+ "af6c2d61-a636-46d8-bc2c-c84a702699f0"
],
"Accept-Language": [
"en-US"
@@ -930,7 +1057,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "30842508-844d-4336-8704-9a7c522490dd"
+ "8f869576-2682-4e02-b6f3-3e5abb1396f2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -941,39 +1068,42 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
],
"x-ms-correlation-request-id": [
- "7ecef8a0-5de3-4643-8e4d-7e79dc31712c"
+ "cc10f870-fba2-4998-9cc5-9230bff89755"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174255Z:7ecef8a0-5de3-4643-8e4d-7e79dc31712c"
+ "WESTINDIA:20201116T132721Z:cc10f870-fba2-4998-9cc5-9230bff89755"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:54 GMT"
+ "Mon, 16 Nov 2020 13:27:20 GMT"
+ ],
+ "Content-Length": [
+ "861"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cudGVqYS10ZXN0LmNvbT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ada7973-9255-4f86-8559-2f8c7f2b79cb"
+ "1587d7d3-4e94-4324-abd2-843c1ea5d15f"
],
"Accept-Language": [
"en-US"
@@ -982,7 +1112,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
]
},
"ResponseHeaders": {
@@ -992,48 +1122,57 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "32a5087f-33df-4a05-a832-d4cb8e4a8aaa"
+ "29063237-f1cf-44bc-b76a-4f19b1afeb44"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
],
"x-ms-correlation-request-id": [
- "32a5087f-33df-4a05-a832-d4cb8e4a8aaa"
+ "ef5953e3-29a1-40b9-8fcd-ce6ae9b74121"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174255Z:32a5087f-33df-4a05-a832-d4cb8e4a8aaa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTINDIA:20201116T132722Z:ef5953e3-29a1-40b9-8fcd-ce6ae9b74121"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:54 GMT"
+ "Mon, 16 Nov 2020 13:27:21 GMT"
+ ],
+ "Content-Length": [
+ "904"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "1022"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzLy5ORVRTREtSRy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvYWRvcmVzbm93LS5ORVRTREtSRy1DZW50cmFsVVN3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3Rhc3B0b2QxMDktdGVzdGt2aW16LXRlc3RjZXJ0MjgxMHo/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "596608b1-a599-4dea-b83b-ed0bbd9b36ac"
+ "5598b1f2-af3b-4b61-bce8-f03a5a0dda5b"
],
"Accept-Language": [
"en-US"
@@ -1056,7 +1195,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bdbd5978-9cfd-40ca-823b-643820a49608"
+ "eff3e002-b455-436a-9a8e-6dbb1f7f14f5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1068,22 +1207,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11991"
],
"x-ms-correlation-request-id": [
- "418cbeed-6cb0-4d34-a893-03c1a2b91f5b"
+ "40f26208-977e-4de2-bde5-e5dd82f9bf45"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174255Z:418cbeed-6cb0-4d34-a893-03c1a2b91f5b"
+ "WESTINDIA:20201116T132722Z:40f26208-977e-4de2-bde5-e5dd82f9bf45"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:55 GMT"
+ "Mon, 16 Nov 2020 13:27:21 GMT"
],
"Content-Length": [
- "1106"
+ "1239"
],
"Content-Type": [
"application/json"
@@ -1092,17 +1231,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testfsrg1704/providers/microsoft.keyvault/vaults/testkvthek\",\r\n \"keyVaultSecretName\": \"adoresnow312c5e2c-add9-4faf-bb5b-744a87aff40e\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy90ZXN0a3YyODA5LXRlc3RjZXJ0MjgwOT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RrdjE2MTEtdGVzdGNlcnRuYW1lMTYxMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ffe142b-067f-4c97-8716-d241e130be77"
+ "5cf3470b-b0b0-4549-a04d-491533f07806"
],
"Accept-Language": [
"en-US"
@@ -1125,7 +1264,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "19c22522-fb2a-4d20-b7f4-ebe8e00d5268"
+ "a8fd3703-2176-4a82-a1a0-e917cf5348fd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1137,22 +1276,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11990"
],
"x-ms-correlation-request-id": [
- "3552940a-14a8-449d-b206-8352baf1f850"
+ "73d02d7b-3290-431a-a1d8-00b9df1df3a1"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174256Z:3552940a-14a8-449d-b206-8352baf1f850"
+ "WESTINDIA:20201116T132723Z:73d02d7b-3290-431a-a1d8-00b9df1df3a1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:55 GMT"
+ "Mon, 16 Nov 2020 13:27:22 GMT"
],
"Content-Length": [
- "1006"
+ "1218"
],
"Content-Type": [
"application/json"
@@ -1161,17 +1300,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/testresourcegrp2809/providers/microsoft.keyvault/vaults/testkv2809\",\r\n \"keyVaultSecretName\": \"testcert2809\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2NsZWFudXBzZXJ2aWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cudGVqYS10ZXN0LmNvbT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3RyY2Rlc3QxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RjZXJ0MTExMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3a00e15-f14d-4847-8d50-b054c0dd00b5"
+ "f72c7903-5624-43bb-97aa-ff9d7e82ad62"
],
"Accept-Language": [
"en-US"
@@ -1194,7 +1333,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3bad760b-b6c1-4dce-9102-624bd2a006c6"
+ "f4d6b629-949b-46ab-8a65-c2b6dabde70e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1206,22 +1345,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11989"
],
"x-ms-correlation-request-id": [
- "03c48c69-b1e7-4702-b1da-6b08ae61136b"
+ "3880abdc-b245-4f5e-a24f-4c2f6997ef9e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174256Z:03c48c69-b1e7-4702-b1da-6b08ae61136b"
+ "WESTINDIA:20201116T132723Z:3880abdc-b245-4f5e-a24f-4c2f6997ef9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:56 GMT"
+ "Mon, 16 Nov 2020 13:27:22 GMT"
],
"Content-Length": [
- "904"
+ "840"
],
"Content-Type": [
"application/json"
@@ -1230,17 +1369,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3Rhc3B0b2QxMDktdGVzdGt2aW16LXRlc3RjZXJ0MjgxMHo/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3RyY2Rlc3QxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RjZXJ0aWZpY2F0ZTI2MTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9a4f82c0-52b2-400f-a547-378476e32a86"
+ "52fce9c8-3c68-4402-8560-474c5f8256da"
],
"Accept-Language": [
"en-US"
@@ -1263,7 +1402,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4903e8c7-7338-49cb-b9d4-cf2e7b560f3a"
+ "b541cd9d-b3a0-4ae2-ab91-024262f870c2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1275,22 +1414,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11988"
],
"x-ms-correlation-request-id": [
- "9f851faf-9366-425b-a15d-a12e65f7a926"
+ "00fd00c9-67cf-4552-bc89-4409afc449b0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201106T174257Z:9f851faf-9366-425b-a15d-a12e65f7a926"
+ "WESTINDIA:20201116T132723Z:00fd00c9-67cf-4552-bc89-4409afc449b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Fri, 06 Nov 2020 17:42:56 GMT"
+ "Mon, 16 Nov 2020 13:27:22 GMT"
],
"Content-Length": [
- "1217"
+ "831"
],
"Content-Type": [
"application/json"
@@ -1299,7 +1438,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites.sln b/src/Websites/Websites.sln
index ae4fbfed57e2..ca20352803c1 100644
--- a/src/Websites/Websites.sln
+++ b/src/Websites/Websites.sln
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.28307.1231
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.30611.23
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Websites", "Websites\Websites.csproj", "{80A92297-7C92-456B-8EE7-9FB6CE30149D}"
EndProject
@@ -20,6 +20,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScenarioTest.ResourceManage
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}"
EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{31473C1B-1B34-4545-BF2D-50BEE84E7283}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -37,11 +39,7 @@ Global
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
- {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.Build.0 = Release|Any CPU
+ {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -58,6 +56,10 @@ Global
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU
+ {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {31473C1B-1B34-4545-BF2D-50BEE84E7283}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/src/Websites/Websites/Az.Websites.psd1 b/src/Websites/Websites/Az.Websites.psd1
index 0bfb795db3a5..8422b41a21e8 100644
--- a/src/Websites/Websites/Az.Websites.psd1
+++ b/src/Websites/Websites/Az.Websites.psd1
@@ -101,7 +101,7 @@ CmdletsToExport = 'Get-AzAppServicePlan', 'Set-AzAppServicePlan',
'Update-AzWebAppAccessRestrictionConfig',
'Add-AzWebAppTrafficRouting', 'Remove-AzWebAppTrafficRouting',
'Get-AzWebAppTrafficRouting', 'Update-AzWebAppTrafficRouting',
- 'New-AzWebAppManagedCertificate','Remove-AzWebAppManagedCertificate'
+ 'New-AzWebAppCertificate','Remove-AzWebAppCertificate'
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index 482fd0e0140c..b7e9c17855d0 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -21,8 +21,8 @@
* Added support for new access restriction features: ServiceTag, multi-ip and http-headers
* Added support for App Service Managed certificates
-New Cmdlets
- -New-AzWebAppManagedCertificate
- -Remove-AzWebAppManagedCertificate
+ -New-AzWebAppCertificate
+ -Remove-AzWebAppCertificate
## Version 2.0.0
* Added support for Premium V3 pricing tier
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
similarity index 82%
rename from src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
rename to src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
index 5ca023589946..7383bf53a791 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/NewAzWebAppManagedCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
@@ -20,8 +20,10 @@
using Microsoft.Azure.Management.WebSites.Models;
using Microsoft.Rest.Azure;
using System;
+using System.Linq;
using System.Management.Automation;
using System.Net;
+using System.Threading;
using System.Threading.Tasks;
namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
@@ -30,8 +32,8 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
///
/// This commandlet will let you create a new managed certificate
///
- [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppManagedCertificate"), OutputType(typeof(PSCertificate))]
- public class NewAzWebAppManagedCertificate : WebAppBaseClientCmdLet
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", SupportsShouldProcess = true), OutputType(typeof(PSCertificate))]
+ public class NewAzureWebAppCertificate : WebAppBaseClientCmdLet
{
const string CertNamePostFixSeparator = "_";
const string ParameterSet1Name = "S1";
@@ -57,7 +59,7 @@ public class NewAzWebAppManagedCertificate : WebAppBaseClientCmdLet
[Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "To add the created certificate to WebApp/slot.")]
[ValidateNotNullOrEmpty]
- public SwitchParameter AddCertBinding { get; set; }
+ public SwitchParameter AddBinding { get; set; }
[Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Ssl state option. Use either 'SniEnabled' or 'IpBasedEnabled'. Default option is 'SniEnabled'.")]
[ValidateNotNullOrEmpty]
@@ -82,19 +84,26 @@ public override void ExecuteCmdlet()
{
try
{
- createdCertdetails = WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
+ WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
}
catch (DefaultErrorResponseException e)
{
- // This exception is thrown when certificate already exists. Let's swallow it and continue.
- if (e.Response.StatusCode != HttpStatusCode.Conflict)
+ // 'Conflict' exception is thrown when certificate already exists. Let's swallow it and continue.
+ //'Accepted' exception is thrown by default for create cert method.
+ if (e.Response.StatusCode != HttpStatusCode.Conflict &&
+ e.Response.StatusCode != HttpStatusCode.Accepted)
{
throw;
}
}
+ //Delay the execution by 5 seconds so that the Certificate will created post it return 'Accepted' status
+ Thread.Sleep(15000);
+ var certs = WebsitesClient.ListCertificates().ToList();
+ createdCertdetails = certs.Where(c => c.Name == HostName).SingleOrDefault();
//Add only when user is opted for Binding
- if (AddCertBinding)
+ if (AddBinding)
{
+
WebsitesClient.UpdateHostNameSslState(ResourceGroupName,
WebAppName,
Slot,
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs
index 9841fc71cb52..b267d53b0c8e 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs
@@ -130,7 +130,7 @@ protected override void ProcessRecord()
try
{
- WebsitesClient.CreateCertificate(resourceGroupName, certificateName, certificate);
+ Certificate cert= WebsitesClient.CreateCertificate(resourceGroupName, certificateName, certificate);
}
catch (CloudException e)
{
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
similarity index 93%
rename from src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
rename to src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
index be14338b2231..a8449496088c 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzWebAppManagedCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
@@ -26,8 +26,8 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
///
/// This commandlet will let you delete a managed certificate
///
- [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppManagedCertificate"), OutputType(typeof(void))]
- public class RemoveAzWebAppManagedCertificate : WebAppBaseClientCmdLet
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", SupportsShouldProcess = true), OutputType(typeof(void))]
+ public class RemoveAzureWebAppCertificate : WebAppBaseClientCmdLet
{
const string ParameterSet1Name = "S1";
@@ -71,9 +71,10 @@ public override void ExecuteCmdlet()
{
if (this.ShouldProcess(this.WebAppName, string.Format($"Removing an App service managed certificate for Web App '{WebAppName}'")))
{
+ var certName = !string.IsNullOrEmpty(HostName) ? HostName : certificates[0].Name;
try
{
- WebsitesClient.RemoveCertificate(certificateResourceGroup, certificates[0].Name);
+ WebsitesClient.RemoveCertificate(certificateResourceGroup, certName);
}
catch (DefaultErrorResponseException e)
{
diff --git a/src/Websites/Websites/Utilities/WebsitesClient.cs b/src/Websites/Websites/Utilities/WebsitesClient.cs
index 6cd8b3fec8a8..4187ef27c382 100644
--- a/src/Websites/Websites/Utilities/WebsitesClient.cs
+++ b/src/Websites/Websites/Utilities/WebsitesClient.cs
@@ -887,6 +887,10 @@ public Certificate GetCertificate(string resourceGroupName, string certificateNa
{
return WrappedWebsitesClient.Certificates().Get(resourceGroupName, certificateName);
}
+ public IEnumerable ListCertificates()
+ {
+ return WrappedWebsitesClient.Certificates().List();
+ }
public HttpStatusCode RemoveCertificate(string resourceGroupName, string certificateName)
{
diff --git a/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md b/src/Websites/Websites/help/New-AzWebAppCertificate.md
similarity index 82%
rename from src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
rename to src/Websites/Websites/help/New-AzWebAppCertificate.md
index de5895235845..b05fb0cf06ac 100644
--- a/src/Websites/Websites/help/New-AzWebAppManagedCertificate.md
+++ b/src/Websites/Websites/help/New-AzWebAppCertificate.md
@@ -1,11 +1,11 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
Module Name: Az.Websites
-online version:https://docs.microsoft.com/en-us/powershell/module/az.websites/new-azwebappmanagedcertificate
+online version:https://docs.microsoft.com/en-us/powershell/module/az.websites/new-AzWebAppCertificate
schema: 2.0.0
---
-# New-AzWebAppManagedCertificate
+# New-AzWebAppCertificate
## SYNOPSIS
Creates an App service managed certificate for an Azure Web App.
@@ -13,25 +13,25 @@ Creates an App service managed certificate for an Azure Web App.
## SYNTAX
```
-New-AzWebAppManagedCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
+New-AzWebAppCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
[-HostName] [-AddCertBinding] [[-SslState] ] [-DefaultProfile ]
[]
```
## DESCRIPTION
-The **New-AzWebAppManagedCertificate** cmdlet creates an Azure App Service Managed Certificate
+The **New-AzWebAppCertificate** cmdlet creates an Azure App Service Managed Certificate
## EXAMPLES
### Example 1
```powershell
-PS C:\> New-AzWebAppManagedCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net"
+PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net"
```
This command create an App Service Managed Certificate for the given WebApp
### Example 2
```powershell
-PS C:\> New-AzWebAppManagedCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -AddCertBinding
+PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -AddCertBinding
```
This command create an App Service Managed Certificate and binds to the given WebApp.
@@ -160,4 +160,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## NOTES
## RELATED LINKS
-[Remove-AzWebAppManagedCertificate](./Remove-AzWebAppManagedCertificate.md)
\ No newline at end of file
+[Remove-AzWebAppCertificate](./Remove-AzWebAppCertificate.md)
\ No newline at end of file
diff --git a/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md b/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
similarity index 81%
rename from src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
rename to src/Websites/Websites/help/Remove-AzWebAppCertificate.md
index b218c079603c..a6746c0d0609 100644
--- a/src/Websites/Websites/help/Remove-AzWebAppManagedCertificate.md
+++ b/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
@@ -1,11 +1,11 @@
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.Websites.dll-Help.xml
Module Name: Az.Websites
-online version:https://docs.microsoft.com/en-us/powershell/module/az.websites/remove-azwebappmanagedcertificate
+online version:https://docs.microsoft.com/en-us/powershell/module/az.websites/remove-AzWebAppCertificate
schema: 2.0.0
---
-# Remove-AzWebAppManagedCertificate
+# Remove-AzWebAppCertificate
## SYNOPSIS
Creates an App service managed certificate for an Azure Web App.
@@ -13,18 +13,18 @@ Creates an App service managed certificate for an Azure Web App.
## SYNTAX
```
-Remove-AzWebAppManagedCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
+Remove-AzWebAppCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
[-HostName] [-ThumbPrint] [-DefaultProfile ] []
```
## DESCRIPTION
-The **Remove-AzWebAppManagedCertificate** cmdlet creates an Azure App Service Managed Certificate
+The **Remove-AzWebAppCertificate** cmdlet creates an Azure App Service Managed Certificate
## EXAMPLES
### Example 1
```powershell
-PS C:\>Remove-AzWebAppManagedCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"
+PS C:\>Remove-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"
```
This command removes App Service Managed certificate for the given web app.
@@ -135,4 +135,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## NOTES
## RELATED LINKS
-[New-AzWebAppManagedCertificate](./New-AzWebAppManagedCertificate.md)
+[New-AzWebAppCertificate](./New-AzWebAppCertificate.md)
From 7f190891263cb4604bf165525aa2e3a39dcf01e9 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Mon, 16 Nov 2020 19:24:23 +0530
Subject: [PATCH 05/13] Review comments addressed
---
src/Websites/Websites.sln | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Websites/Websites.sln b/src/Websites/Websites.sln
index ca20352803c1..fc6c4a6e7afa 100644
--- a/src/Websites/Websites.sln
+++ b/src/Websites/Websites.sln
@@ -39,7 +39,7 @@ Global
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
+ {142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
From 5bb80f3d55e5a4edd726c21b68b3ae87ffb5926e Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Wed, 18 Nov 2020 17:05:15 +0530
Subject: [PATCH 06/13] Addressed Review comments
---
.../ScenarioTests/CertificatesTests.ps1 | 29 +-
.../TestNewAzWebAppCertificate.json | 388 +++---
.../TestNewAzWebAppCertificateForSlot.json | 463 +++++---
...tNewAzWebAppCertificateWithSSLBinding.json | 1056 +++++++++--------
.../TestRemoveAzWebAppCertificate.json | 799 ++++++++++---
.../Certificates/NewAzureWebAppCertificate.cs | 23 +-
.../RemoveAzureWebAppCertificate.cs | 64 +-
.../Websites/help/New-AzWebAppCertificate.md | 7 +
.../help/Remove-AzWebAppCertificate.md | 9 +-
9 files changed, 1681 insertions(+), 1157 deletions(-)
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
index ba47c343798d..0a075c4c4869 100644
--- a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
@@ -18,10 +18,9 @@ Tests creating a new managed cert for app.
#>
function Test-NewAzWebAppCertificate
{
- $rgname = "RG-W-CUS"
- $appname = "managedcerts"
- $slot = "testslot"
- $prodHostname = "www.managedcerts.net"
+ $rgname = "lketmtestantps10"
+ $appname = "lketmtestantps10"
+ $prodHostname = "www.adorenow.net"
$thumbprint=""
try{
@@ -46,11 +45,9 @@ Tests creating a new managed cert for app with SSL binding.
#>
function Test-NewAzWebAppCertificateWithSSLBinding
{
- $rgname = "RG-W-CUS"
- $appname = "managedcerts"
- $slot = "testslot"
- $prodHostname = "www.managedcerts.net"
- $slotHostname = "testslot.adorenow.net"
+ $rgname = "lketmtestantps10"
+ $appname = "lketmtestantps10"
+ $prodHostname = "www.adorenow.net"
$thumbprint=""
try{
@@ -85,10 +82,10 @@ Tests creating a new managed certfor slot.
function Test-NewAzWebAppCertificateForSlot
{
- $rgname = "RG-W-CUS"
- $appname = "managedcerts"
- $slot = "sit"
- $slotHostname = "www.managedcerts1.org"
+ $rgname = "lketmtestantps10"
+ $appname = "lketmtestantps10"
+ $slot = "testslot"
+ $slotHostname = "www.managedcerts.net"
$thumbprint=""
try{
@@ -114,9 +111,9 @@ Tests removing a managed cert.
function Test-RemoveAzWebAppCertificate
{
- $rgname = "RG-W-CUS"
- $appname = "managedcerts"
- $prodHostname = "www.managedcerts.net"
+ $rgname = "lketmtestantps10"
+ $appname = "lketmtestantps10"
+ $prodHostname = "www.adorenow.net"
$thumbprint=""
try{
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
index 2637cde030d1..8909d994ab00 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f98b581e-07b3-4c22-b65c-63c0e85ccc2d"
+ "b088146e-9997-417d-b26e-72d55ba78042"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC14AEC8BA8B\""
+ "\"1D6BD9AD6EBD000\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8dc858a7-2e7a-46a8-949a-ff0e19f4f6ae"
+ "953b6743-e008-4ee2-bb54-5af8bae45378"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11998"
],
"x-ms-correlation-request-id": [
- "3e08e51d-01e2-48ba-946d-1e00f2f441bd"
+ "66b851a1-286b-4012-ad27-66d9b061ce81"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132824Z:3e08e51d-01e2-48ba-946d-1e00f2f441bd"
+ "SOUTHINDIA:20201118T113255Z:66b851a1-286b-4012-ad27-66d9b061ce81"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:23 GMT"
+ "Wed, 18 Nov 2020 11:32:54 GMT"
],
"Content-Length": [
- "5733"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52fcaeac-8c39-4e82-be75-2744a7dcd370"
+ "e4af256a-387b-4441-8106-7faf52d84d43"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC14AEC8BA8B\""
+ "\"1D6BD9AD6EBD000\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "89a83991-0268-43a3-acb9-1b2cf38d519a"
+ "cbf3fcc9-77a1-4994-8099-d7272917e3f0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11995"
],
"x-ms-correlation-request-id": [
- "2635429f-e3c8-4f8c-93c3-d96bf30694cf"
+ "703210d1-97e4-4694-9a1e-d098f8930168"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132844Z:2635429f-e3c8-4f8c-93c3-d96bf30694cf"
+ "SOUTHINDIA:20201118T113303Z:703210d1-97e4-4694-9a1e-d098f8930168"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:43 GMT"
+ "Wed, 18 Nov 2020 11:33:02 GMT"
],
"Content-Length": [
- "5733"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -141,17 +141,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cc0f6498-1aa2-45ed-87a0-1ce9e4396aad"
+ "731c678c-ffa9-4157-bd63-4c770b3f6aee"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2e9e462a-fc27-4c82-9afc-c91a8936a21c"
+ "7438d36f-a34f-4a5d-a500-48b1a1532fb5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,22 +186,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11997"
],
"x-ms-correlation-request-id": [
- "992c268c-6129-45cf-94b2-5dd4975ba98d"
+ "463911b9-9cae-4585-be45-31acfd084c9e"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132824Z:992c268c-6129-45cf-94b2-5dd4975ba98d"
+ "SOUTHINDIA:20201118T113256Z:463911b9-9cae-4585-be45-31acfd084c9e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:23 GMT"
+ "Wed, 18 Nov 2020 11:32:55 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -210,17 +210,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ef27a11-c8cf-4830-8bc3-68426f168466"
+ "8c44dfb6-b3ff-41cb-98c6-579091a07062"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6375f35e-70c4-4137-9f2c-f4df627e0eb1"
+ "4de97f76-09da-4534-a3f8-060ef2696b26"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,22 +255,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11994"
],
"x-ms-correlation-request-id": [
- "a4512df9-a4b1-4981-bcce-e2d0ff5923e6"
+ "2d4b8ae7-266b-49dd-a1d4-36fecc60cdcc"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132844Z:a4512df9-a4b1-4981-bcce-e2d0ff5923e6"
+ "SOUTHINDIA:20201118T113304Z:2d4b8ae7-266b-49dd-a1d4-36fecc60cdcc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:44 GMT"
+ "Wed, 18 Nov 2020 11:33:03 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -279,17 +279,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "859cf3e0-9fe1-496c-a748-b7155aedb2d5"
+ "78b4fa52-68b5-41fe-9ccd-e8c3780dd65b"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea421d2c-d5b5-4f24-b9aa-b4c73631f20b"
+ "79b74399-ec38-43be-bf4d-4e0911b26f7b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,19 +327,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "77ff5593-ae66-4289-bbe8-c9aeec4630c5"
+ "657522c3-7cb0-4b5a-bcd6-59a34bb2a85a"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132825Z:77ff5593-ae66-4289-bbe8-c9aeec4630c5"
+ "SOUTHINDIA:20201118T113257Z:657522c3-7cb0-4b5a-bcd6-59a34bb2a85a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:24 GMT"
+ "Wed, 18 Nov 2020 11:32:56 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -348,17 +348,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9d6f668d-3c68-43c1-b563-ac72b639a4e0"
+ "a8028254-0565-40a7-ba45-68cab305251b"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c7f1dc54-6a31-4a93-97a1-d957cfd03594"
+ "c787ee7d-fc2c-4f07-b313-8b4f8403f396"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -396,19 +396,19 @@
"11996"
],
"x-ms-correlation-request-id": [
- "aac983f9-8316-4afb-bc21-9b1b4a49c614"
+ "19e402d7-4235-4c91-b527-59ebd2ebdac7"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132846Z:aac983f9-8316-4afb-bc21-9b1b4a49c614"
+ "SOUTHINDIA:20201118T113305Z:19e402d7-4235-4c91-b527-59ebd2ebdac7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:45 GMT"
+ "Wed, 18 Nov 2020 11:33:04 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -417,17 +417,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20347000-647e-462c-a640-ecfab400f1c8"
+ "19e5ad4d-ff93-43b2-bc67-59bf7db36f94"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d71f97f9-989d-4535-9b72-a51d8edc998f"
+ "46b05ea7-393d-4e8b-9793-92da70f9dae9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,19 +465,19 @@
"11998"
],
"x-ms-correlation-request-id": [
- "1315369e-1f4c-4b0e-99d1-2a7f557f6fe5"
+ "c6931c46-de63-41f2-837e-15bcd346675b"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132825Z:1315369e-1f4c-4b0e-99d1-2a7f557f6fe5"
+ "SOUTHINDIA:20201118T113300Z:c6931c46-de63-41f2-837e-15bcd346675b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:24 GMT"
+ "Wed, 18 Nov 2020 11:32:59 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -486,17 +486,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76ce13a3-8ba8-4832-931e-5ecceaf31125"
+ "8d9568a5-f918-4a4f-9bcd-dcc6abbd2ebf"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3f683eda-ee18-45ab-b7d2-99d10a448d44"
+ "381aee2d-95b9-466e-be55-ce0447356549"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,19 +534,19 @@
"11995"
],
"x-ms-correlation-request-id": [
- "41f074ac-b107-4579-995d-aca3cf4559bf"
+ "8976ee84-aaee-431f-8bc5-6e15014b95a1"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132846Z:41f074ac-b107-4579-995d-aca3cf4559bf"
+ "SOUTHINDIA:20201118T113306Z:8976ee84-aaee-431f-8bc5-6e15014b95a1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:46 GMT"
+ "Wed, 18 Nov 2020 11:33:05 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -555,17 +555,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "771aa201-5058-4d90-8735-2203e499b342"
+ "5bc2c8ff-fba8-4ca3-8128-64cc72aed4bb"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "20c64b62-f459-47e2-a202-bfbad157116a"
+ "1ea83107-64b4-4d24-98a9-e1e5bdfb6afa"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,19 +603,19 @@
"11997"
],
"x-ms-correlation-request-id": [
- "f1a33f9a-e55a-49f9-8f09-7800985302b6"
+ "439abae2-07ca-4eb6-a2c8-9636915c286f"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132826Z:f1a33f9a-e55a-49f9-8f09-7800985302b6"
+ "SOUTHINDIA:20201118T113301Z:439abae2-07ca-4eb6-a2c8-9636915c286f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:25 GMT"
+ "Wed, 18 Nov 2020 11:33:00 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -624,17 +624,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "159d2fcd-9590-4909-9294-d6eae71077ba"
+ "711880f9-f38a-4e0c-8617-e2c400619bd5"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "15f52ead-52b7-4437-9940-d91783d6eeab"
+ "9e90dada-1946-4a3b-9dc4-8f938a5c83cc"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -672,19 +672,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "af87fe33-fcd6-4954-9af4-098f9527e927"
+ "d53d81a1-3da9-4872-9280-f3a7fde5892a"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132847Z:af87fe33-fcd6-4954-9af4-098f9527e927"
+ "SOUTHINDIA:20201118T113308Z:d53d81a1-3da9-4872-9280-f3a7fde5892a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:46 GMT"
+ "Wed, 18 Nov 2020 11:33:08 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -693,17 +693,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5ea2678b-9426-405e-8aac-a4e199684f8e"
+ "12467538-422c-433c-9104-ae86036f5482"
],
"Accept-Language": [
"en-US"
@@ -718,7 +718,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "269"
+ "283"
]
},
"ResponseHeaders": {
@@ -732,7 +732,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a2345c5-1bf2-4ba8-aadf-e036251a156c"
+ "e23a62fe-494d-4725-83ec-bae545d5bed9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -747,19 +747,19 @@
"1199"
],
"x-ms-correlation-request-id": [
- "0aa9c837-cc9e-4201-ad63-4e5e2e498a38"
+ "ef8d3e94-c032-4ade-b516-5a5dad82480f"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132827Z:0aa9c837-cc9e-4201-ad63-4e5e2e498a38"
+ "SOUTHINDIA:20201118T113302Z:ef8d3e94-c032-4ade-b516-5a5dad82480f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:27 GMT"
+ "Wed, 18 Nov 2020 11:33:01 GMT"
],
"Content-Length": [
- "909"
+ "905"
],
"Content-Type": [
"application/json"
@@ -768,17 +768,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "abd621eb-ddfc-4138-a857-43d1042be85e"
+ "e2c30a59-ad26-41ab-8914-12c83e008e0a"
],
"Accept-Language": [
"en-US"
@@ -797,112 +797,57 @@
"Pragma": [
"no-cache"
],
- "x-ms-original-request-ids": [
- "ddebf7a7-8b9c-4c91-853d-0b8510177ba1",
- "8f4fc0d7-7283-4ac9-8b36-5544077cf2c5"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "d2b4c73e-cef9-4a42-aee4-2a369a79c47b"
- ],
- "x-ms-correlation-request-id": [
- "d2b4c73e-cef9-4a42-aee4-2a369a79c47b"
- ],
- "x-ms-routing-request-id": [
- "WESTINDIA:20201116T132843Z:d2b4c73e-cef9-4a42-aee4-2a369a79c47b"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 16 Nov 2020 13:28:43 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "8671"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "787da89d-37e8-4ec9-947c-dbe52d61044c"
+ "x-ms-request-id": [
+ "ec0ab470-2dea-421e-8e22-b87c21fedf63"
],
- "Accept-Language": [
- "en-US"
+ "Server": [
+ "Microsoft-IIS/10.0"
],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
+ "X-AspNet-Version": [
+ "4.0.30319"
],
- "Pragma": [
- "no-cache"
+ "X-Powered-By": [
+ "ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-request-id": [
- "ca5ce21c-4e45-42e6-b960-5f768332b862"
+ "11996"
],
"x-ms-correlation-request-id": [
- "ca5ce21c-4e45-42e6-b960-5f768332b862"
+ "f7939a4a-453d-491f-933b-27159bbb6b18"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132848Z:ca5ce21c-4e45-42e6-b960-5f768332b862"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "SOUTHINDIA:20201118T113302Z:f7939a4a-453d-491f-933b-27159bbb6b18"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:47 GMT"
+ "Wed, 18 Nov 2020 11:33:01 GMT"
+ ],
+ "Content-Length": [
+ "905"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "477"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c49e23be-75d9-4d99-925d-f6388b5712e8"
+ "9f84a1e6-e872-4b53-bc85-a351fa5f620e"
],
"Accept-Language": [
"en-US"
@@ -925,7 +870,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2c1f037f-0d8d-44fa-bee4-65e273ff979a"
+ "04544e2e-04c7-4109-a844-6ba510a29e5e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -937,22 +882,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11993"
],
"x-ms-correlation-request-id": [
- "02434ed0-8543-460c-9103-865277f9acc0"
+ "970ddcc4-bca9-4443-8754-d92cc2eccda5"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132848Z:02434ed0-8543-460c-9103-865277f9acc0"
+ "SOUTHINDIA:20201118T113309Z:970ddcc4-bca9-4443-8754-d92cc2eccda5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:48 GMT"
+ "Wed, 18 Nov 2020 11:33:09 GMT"
],
"Content-Length": [
- "914"
+ "905"
],
"Content-Type": [
"application/json"
@@ -961,17 +906,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1fff8d65-2340-493e-a2bc-7acec6b862e2"
+ "4c8ca3e6-81dc-4229-86f6-38f45d5bff74"
],
"Accept-Language": [
"en-US"
@@ -980,7 +925,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
]
},
"ResponseHeaders": {
@@ -990,57 +935,48 @@
"Pragma": [
"no-cache"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
],
"x-ms-request-id": [
- "853f4955-5d81-4167-83bd-68fc2ffbf910"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "7cb07b7f-17fb-48f4-b9b5-9a6f78298356"
],
"x-ms-correlation-request-id": [
- "6770ef0b-51e6-4ee4-9fa7-261638d50fff"
+ "7cb07b7f-17fb-48f4-b9b5-9a6f78298356"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132849Z:6770ef0b-51e6-4ee4-9fa7-261638d50fff"
+ "SOUTHINDIA:20201118T113308Z:7cb07b7f-17fb-48f4-b9b5-9a6f78298356"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:49 GMT"
- ],
- "Content-Length": [
- "909"
+ "Wed, 18 Nov 2020 11:33:08 GMT"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "243"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "93854cb0-d22b-44b5-a961-87ef92b05606"
+ "9b49d7eb-f197-4c06-bc3b-c3fc66c3ef20"
],
"Accept-Language": [
"en-US"
@@ -1063,7 +999,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8640cbb0-1ad6-4c01-be38-d9f362bbc89b"
+ "de0754be-029c-4d70-a02e-9deefab01285"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1078,16 +1014,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "36444d2e-3e7d-4185-b74d-582b114724dd"
+ "601247fd-096e-4881-9e05-65e7c3153c0b"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132858Z:36444d2e-3e7d-4185-b74d-582b114724dd"
+ "SOUTHINDIA:20201118T113315Z:601247fd-096e-4881-9e05-65e7c3153c0b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:57 GMT"
+ "Wed, 18 Nov 2020 11:33:15 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
index 831bdb433037..6a20c2f78182 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4ed2c9a9-bc8e-4962-a98f-b17efc8c0b4a"
+ "17f9af52-3ec7-465a-8bc6-8ed4817096b2"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6AC15FF39A42B\""
+ "\"1D6BD8E48365155\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "57fb08a4-7539-4bbc-bd00-33b412430fab"
+ "da842273-e63e-4636-8f49-71b27b7c7364"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11991"
],
"x-ms-correlation-request-id": [
- "729aaa17-616c-47ba-9c4f-79512e068096"
+ "e1e6292d-2b76-4a6d-90ae-8a813da0fd2c"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132735Z:729aaa17-616c-47ba-9c4f-79512e068096"
+ "SOUTHINDIA:20201118T113236Z:e1e6292d-2b76-4a6d-90ae-8a813da0fd2c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:35 GMT"
+ "Wed, 18 Nov 2020 11:32:35 GMT"
],
"Content-Length": [
- "5529"
+ "5929"
],
"Content-Type": [
"application/json"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\",\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"www.managedcerts.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"www.managedcerts.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T09:36:24.8533333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d06b946-cd3b-4e46-9204-0809a875cb5b"
+ "40c56077-8799-41bd-a4f7-f222d432bdb3"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6AC15FF39A42B\""
+ "\"1D6BD8E48365155\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c74c14fb-8406-488c-b58e-4b56d5d47bb3"
+ "f18323b1-1476-43ee-b393-e633bf9bd0a5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11988"
],
"x-ms-correlation-request-id": [
- "5755d3b1-b24a-4359-94ca-3bd28a39ac71"
+ "c99d0ebc-3238-40a0-ada6-e72aae262119"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132807Z:5755d3b1-b24a-4359-94ca-3bd28a39ac71"
+ "SOUTHINDIA:20201118T113241Z:c99d0ebc-3238-40a0-ada6-e72aae262119"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:06 GMT"
+ "Wed, 18 Nov 2020 11:32:40 GMT"
],
"Content-Length": [
- "5529"
+ "5929"
],
"Content-Type": [
"application/json"
@@ -141,17 +141,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit\",\r\n \"name\": \"managedcerts/sit\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts(sit)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"managedcerts1.org\",\r\n \"managedcerts-sit.azurewebsites.net\",\r\n \"managedcerts-sit.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\": \"managedcerts1.org\",\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\": \"managedcerts-sit.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\": \"managedcerts-sit.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-10-27T04:02:33.0266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts__8d3c\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts__sit\\\\$managedcerts__sit\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts-sit.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\",\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"www.managedcerts.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"www.managedcerts.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T09:36:24.8533333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b9d90245-4a1d-437b-812a-73e1f5f22bc2"
+ "8045c214-9b11-4095-9e81-3b265c0b91c1"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dc272821-e56f-42fa-b6af-baba01298371"
+ "58163376-fb69-496d-8a1b-be1a377c2780"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,22 +186,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11990"
],
"x-ms-correlation-request-id": [
- "5ee373d1-be9a-49d4-b2e8-82fcaa06db27"
+ "85e6ce99-9a4f-459b-8180-685eb98fd961"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132736Z:5ee373d1-be9a-49d4-b2e8-82fcaa06db27"
+ "SOUTHINDIA:20201118T113237Z:85e6ce99-9a4f-459b-8180-685eb98fd961"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:36 GMT"
+ "Wed, 18 Nov 2020 11:32:36 GMT"
],
"Content-Length": [
- "3585"
+ "3638"
],
"Content-Type": [
"application/json"
@@ -210,17 +210,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6fa301bd-4a16-4b51-9f5f-a7d621803358"
+ "d0a5830f-1e73-4864-ba2b-a5953e8d9814"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c7402f36-a9e6-40cd-a98f-361bb7caf96f"
+ "bc745789-aaea-45a4-830c-c16ae161cc8f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,22 +255,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11987"
],
"x-ms-correlation-request-id": [
- "9d9b74d5-8525-4f4e-ac7d-42056e9dbd15"
+ "eaba113d-7fb4-4d15-9d44-7881e2f42994"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132808Z:9d9b74d5-8525-4f4e-ac7d-42056e9dbd15"
+ "SOUTHINDIA:20201118T113242Z:eaba113d-7fb4-4d15-9d44-7881e2f42994"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:07 GMT"
+ "Wed, 18 Nov 2020 11:32:41 GMT"
],
"Content-Length": [
- "3585"
+ "3638"
],
"Content-Type": [
"application/json"
@@ -279,17 +279,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts__sit\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d8abbeed-2aaa-4b74-b4d1-4fec4e8247c4"
+ "4132eb5b-531b-439a-8714-b3c059a24daf"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0dfecb21-82ef-4c13-96a0-a5eb710958f6"
+ "785abbe0-3068-48b4-a5ff-cae228eb4317"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -324,22 +324,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
+ "11993"
],
"x-ms-correlation-request-id": [
- "c59ddbfa-aab5-42ec-a0d7-8fd276e24c69"
+ "86b6a5d7-eaa7-4f4d-ba4b-0e05ea599b3d"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132737Z:c59ddbfa-aab5-42ec-a0d7-8fd276e24c69"
+ "SOUTHINDIA:20201118T113237Z:86b6a5d7-eaa7-4f4d-ba4b-0e05ea599b3d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:37 GMT"
+ "Wed, 18 Nov 2020 11:32:37 GMT"
],
"Content-Length": [
- "711"
+ "755"
],
"Content-Type": [
"application/json"
@@ -348,17 +348,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "53ef469a-dafd-4a0e-9cf2-5e5f42d7c1b9"
+ "1136a6b8-5f3e-4c77-b02c-640229907021"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef7e5f6e-7b99-4e1f-add1-cb4f6d1b2aad"
+ "e98b7d3e-db59-44c0-b8fb-743acc296858"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -393,22 +393,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
+ "11990"
],
"x-ms-correlation-request-id": [
- "4df75374-a586-4e57-a858-26801b29ce92"
+ "74c4c1f9-8875-42a1-a5f0-d32f51798e06"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132809Z:4df75374-a586-4e57-a858-26801b29ce92"
+ "SOUTHINDIA:20201118T113242Z:74c4c1f9-8875-42a1-a5f0-d32f51798e06"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:08 GMT"
+ "Wed, 18 Nov 2020 11:32:41 GMT"
],
"Content-Length": [
- "711"
+ "755"
],
"Content-Type": [
"application/json"
@@ -417,17 +417,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4e71e858-560b-46ba-a64e-2ee0de5b574e"
+ "aeafc07d-3d78-4d46-9f06-e0cc73da8f03"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "01c44542-c8b2-4662-88d3-7359ec4debe3"
+ "519483ab-8d18-47a0-b677-dc2f23c5147d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -462,22 +462,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11998"
+ "11992"
],
"x-ms-correlation-request-id": [
- "4b494e62-4124-4cca-bd6b-f76d39b35a95"
+ "5a0113f6-6d5d-4cf8-8ae5-77c16ee81fca"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132739Z:4b494e62-4124-4cca-bd6b-f76d39b35a95"
+ "SOUTHINDIA:20201118T113238Z:5a0113f6-6d5d-4cf8-8ae5-77c16ee81fca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:38 GMT"
+ "Wed, 18 Nov 2020 11:32:37 GMT"
],
"Content-Length": [
- "265"
+ "305"
],
"Content-Type": [
"application/json"
@@ -486,17 +486,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f83da98-f21d-4992-9be3-974e7004b67e"
+ "0a0567fc-0e60-4ea5-9fb3-670440374d01"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "48471e49-5d8e-4865-954a-2031aa536413"
+ "bf840b71-bde5-4af9-8a87-a7529d080dc3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -531,22 +531,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11989"
],
"x-ms-correlation-request-id": [
- "b1fb3348-be47-496c-a6f6-6b59573f749f"
+ "2b1eb750-2dfb-4516-8e34-54d760998618"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132810Z:b1fb3348-be47-496c-a6f6-6b59573f749f"
+ "SOUTHINDIA:20201118T113243Z:2b1eb750-2dfb-4516-8e34-54d760998618"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:09 GMT"
+ "Wed, 18 Nov 2020 11:32:42 GMT"
],
"Content-Length": [
- "265"
+ "305"
],
"Content-Type": [
"application/json"
@@ -555,17 +555,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d58d51b-23af-45c8-868a-046f72b5e60f"
+ "1cd2457f-87c4-4903-a6db-5e2c523e0734"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ff25542d-680a-45e1-b857-fa3c227390eb"
+ "9d025b12-33fe-4bcd-82bc-0ad8c125f0a0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -600,22 +600,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11997"
+ "11991"
],
"x-ms-correlation-request-id": [
- "5d048317-8c96-41a1-9f65-15c8c5e25ea0"
+ "cd40628c-56b4-429d-8710-50afec80e2b6"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132739Z:5d048317-8c96-41a1-9f65-15c8c5e25ea0"
+ "SOUTHINDIA:20201118T113239Z:cd40628c-56b4-429d-8710-50afec80e2b6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:39 GMT"
+ "Wed, 18 Nov 2020 11:32:38 GMT"
],
"Content-Length": [
- "262"
+ "302"
],
"Content-Type": [
"application/json"
@@ -624,17 +624,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9zbG90cy9zaXQvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ad54471-cebb-4f5c-a5f9-175caa02714a"
+ "96b77ebb-424d-4e54-a8de-ae9ffb012fdf"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "287ef22e-d0a1-4573-a48c-02200964824d"
+ "a70b5fa2-cb2c-4aca-b48d-6832f889e003"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -669,22 +669,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11988"
],
"x-ms-correlation-request-id": [
- "9f067652-bba4-49c2-88a5-0d71aa08df02"
+ "322d1ee0-1974-41b4-8bc7-f8223c90aa62"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132810Z:9f067652-bba4-49c2-88a5-0d71aa08df02"
+ "SOUTHINDIA:20201118T113243Z:322d1ee0-1974-41b4-8bc7-f8223c90aa62"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:09 GMT"
+ "Wed, 18 Nov 2020 11:32:42 GMT"
],
"Content-Length": [
- "262"
+ "302"
],
"Content-Type": [
"application/json"
@@ -693,17 +693,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/slots/sit/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts1.org\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86fb54ee-d8f8-42bf-bdc5-7bb770290a77"
+ "c47b73fc-851c-4d4d-80cc-1c010ca6d5bd"
],
"Accept-Language": [
"en-US"
@@ -718,7 +718,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "270"
+ "287"
]
},
"ResponseHeaders": {
@@ -728,15 +728,12 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org/operationresults/c11b5199-c1be-404f-b800-a55b1feaeb26?api-version=2020-06-01"
- ],
- "Retry-After": [
- "15"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-request-id": [
+ "f429d344-31ff-4d8c-8320-e759959d7d07"
+ ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -747,41 +744,41 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "61ca13f3-5e26-4258-a0ff-f0f08210b630"
+ "1198"
],
"x-ms-correlation-request-id": [
- "61ca13f3-5e26-4258-a0ff-f0f08210b630"
+ "7fd93407-82c9-4f32-8527-005330801fce"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132748Z:61ca13f3-5e26-4258-a0ff-f0f08210b630"
+ "SOUTHINDIA:20201118T113240Z:7fd93407-82c9-4f32-8527-005330801fce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:48 GMT"
+ "Wed, 18 Nov 2020 11:32:39 GMT"
+ ],
+ "Content-Length": [
+ "923"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96f7c77a-8042-4d2d-853e-1a39a4b37f9e"
+ "ffa33178-24f2-4db6-bd5c-2e7c3e1f4f6f"
],
"Accept-Language": [
"en-US"
@@ -800,52 +797,126 @@
"Pragma": [
"no-cache"
],
- "x-ms-original-request-ids": [
- "2fcd78c1-8b13-40e6-8962-7b6202268a3c",
- "d139fbfb-22e2-446c-83ee-3001d038644a"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "68332d92-cb75-4290-a222-5ecf1da8043f"
+ "14bbc5bf-0a05-4461-952d-e443d4a4cb80"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
],
"x-ms-correlation-request-id": [
- "68332d92-cb75-4290-a222-5ecf1da8043f"
+ "292ee857-d386-4885-a86d-a0eeb0204ce3"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132805Z:68332d92-cb75-4290-a222-5ecf1da8043f"
+ "SOUTHINDIA:20201118T113240Z:292ee857-d386-4885-a86d-a0eeb0204ce3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:39 GMT"
+ ],
+ "Content-Length": [
+ "923"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0050ba5d-259f-49f5-b6d5-ad01368c17bc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-request-id": [
+ "3062d2c7-8d36-4a5a-85ea-96d074b27e11"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4885599-8587-4611-992f-825e7998a583"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113245Z:d4885599-8587-4611-992f-825e7998a583"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:05 GMT"
+ "Wed, 18 Nov 2020 11:32:44 GMT"
+ ],
+ "Content-Length": [
+ "923"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "8671"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b82527fa-1da0-496f-bb6e-94ab510b0000"
+ "295519b4-8120-4a0d-9dc7-7e6de38be711"
],
"Accept-Language": [
"en-US"
@@ -865,16 +936,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11998"
],
"x-ms-request-id": [
- "411e067e-5226-4991-aaa6-9832bbe30dbb"
+ "01a6211e-6c19-4764-9f9b-2f61d5098e52"
],
"x-ms-correlation-request-id": [
- "411e067e-5226-4991-aaa6-9832bbe30dbb"
+ "01a6211e-6c19-4764-9f9b-2f61d5098e52"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132813Z:411e067e-5226-4991-aaa6-9832bbe30dbb"
+ "SOUTHINDIA:20201118T113244Z:01a6211e-6c19-4764-9f9b-2f61d5098e52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -883,7 +954,7 @@
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:12 GMT"
+ "Wed, 18 Nov 2020 11:32:43 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -892,20 +963,20 @@
"-1"
],
"Content-Length": [
- "243"
+ "483"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31ad32fb-ef24-4bbc-8121-71382a89f754"
+ "bbc2f4d2-57fc-4292-b41c-6efbe8725b38"
],
"Accept-Language": [
"en-US"
@@ -928,7 +999,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "da6bb8e5-1a42-4f9c-ae83-d353ef760b55"
+ "f646103d-8418-4efe-83c1-d03cef08a558"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -940,22 +1011,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11986"
],
"x-ms-correlation-request-id": [
- "3b658f20-4fa8-48c6-a853-c6cf624b6ea7"
+ "04f08aca-10cd-4ac4-a142-376e7a13e6a5"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132813Z:3b658f20-4fa8-48c6-a853-c6cf624b6ea7"
+ "SOUTHINDIA:20201118T113244Z:04f08aca-10cd-4ac4-a142-376e7a13e6a5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:28:12 GMT"
+ "Wed, 18 Nov 2020 11:32:43 GMT"
],
"Content-Length": [
- "909"
+ "905"
],
"Content-Type": [
"application/json"
@@ -964,7 +1035,73 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "bcef81e4-e6e9-4cfd-9fb9-96841a1bbc20"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9e0345e-6075-4a2b-9eaa-74e1dde5fe7d"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "41df6be9-8486-4d88-b7f9-c34661b75da3"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113251Z:41df6be9-8486-4d88-b7f9-c34661b75da3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:51 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
index 85f648851cd0..499d97b25f4b 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1dc87ece-16ce-4055-9d0c-9eba5e5982a1"
+ "1d87a12a-90bf-4260-8522-2e312761950d"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC14AEC8BA8B\""
+ "\"1D6BD9AD6EBD000\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3419b32d-42b7-43a0-b496-e57397aed41b"
+ "1d060478-e3b4-46d8-adfe-ce5ea9f1e37d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -48,19 +48,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "936aee25-4fba-4280-ae9c-17f6eafed3cf"
+ "65a20895-84e9-496e-b8f1-8935637ca168"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132925Z:936aee25-4fba-4280-ae9c-17f6eafed3cf"
+ "SOUTHINDIA:20201118T113320Z:65a20895-84e9-496e-b8f1-8935637ca168"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:25 GMT"
+ "Wed, 18 Nov 2020 11:33:20 GMT"
],
"Content-Length": [
- "5733"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a22da92-a3b5-4e4b-acbf-7a3597e0bc1e"
+ "d285bed9-f24d-4757-aed6-4e8062a39133"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC14AEC8BA8B\""
+ "\"1D6BD9AD6EBD000\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e975334-8ca6-476f-9b19-e5c06dcb6c17"
+ "610a6249-6eb9-44fd-bf90-2d7f2c362fcd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11987"
],
"x-ms-correlation-request-id": [
- "e2170541-b8e7-401a-ac3c-65da7649911b"
+ "5eeb0066-daec-477b-9e1a-a7682a3904e6"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132958Z:e2170541-b8e7-401a-ac3c-65da7649911b"
+ "SOUTHINDIA:20201118T113345Z:5eeb0066-daec-477b-9e1a-a7682a3904e6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:58 GMT"
+ "Wed, 18 Nov 2020 11:33:45 GMT"
],
"Content-Length": [
- "5733"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -141,17 +141,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "902b1f6c-a678-45e0-ac5e-d91877e9fe59"
+ "b84c32d9-5dbb-410c-ac24-33943d04f3b2"
],
"Accept-Language": [
"en-US"
@@ -171,13 +171,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC1C9771D195\""
+ "\"1D6BD9EAFF41620\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "13728327-8600-4165-aef2-3bf185141ecc"
+ "2919a43a-b0c5-4554-b5c2-b5c802de4116"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,22 +189,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11985"
],
"x-ms-correlation-request-id": [
- "879abeb4-3687-4d6c-887c-8857acb00997"
+ "7f399e94-7212-43a4-a6e0-dacabb279ba3"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133012Z:879abeb4-3687-4d6c-887c-8857acb00997"
+ "SOUTHINDIA:20201118T113354Z:7f399e94-7212-43a4-a6e0-dacabb279ba3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:12 GMT"
+ "Wed, 18 Nov 2020 11:33:53 GMT"
],
"Content-Length": [
- "5773"
+ "5572"
],
"Content-Type": [
"application/json"
@@ -213,17 +213,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3db22b00-0e27-4279-a0dd-fb66a2e2bf70"
+ "8acc2e08-bf39-4203-aa72-bbf8ee273c9b"
],
"Accept-Language": [
"en-US"
@@ -243,13 +243,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC1C9771D195\""
+ "\"1D6BD9EAFF41620\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ca7f8cb1-f1db-406b-930b-d229e1009657"
+ "ccb2a321-84a6-46a2-b382-1b5218b860f3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -261,22 +261,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11983"
],
"x-ms-correlation-request-id": [
- "e932a4d6-d701-4ee3-8b89-3d9ecf178d8a"
+ "2558a172-294e-4dcc-a8c9-1c94025b8fd1"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133018Z:e932a4d6-d701-4ee3-8b89-3d9ecf178d8a"
+ "SOUTHINDIA:20201118T113358Z:2558a172-294e-4dcc-a8c9-1c94025b8fd1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:17 GMT"
+ "Wed, 18 Nov 2020 11:33:58 GMT"
],
"Content-Length": [
- "5773"
+ "5572"
],
"Content-Type": [
"application/json"
@@ -285,17 +285,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff5154a5-c994-4fd8-8d61-0a7fc37aac07"
+ "6033ba5f-e7bb-487a-b32b-9d78745a2df2"
],
"Accept-Language": [
"en-US"
@@ -315,13 +315,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC1C9771D195\""
+ "\"1D6BD9EAFF41620\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5ece9004-62b8-4b2a-be4b-86023b4d82ed"
+ "304ebce0-d8c1-4797-ba30-3025814a0a96"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -333,22 +333,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11981"
],
"x-ms-correlation-request-id": [
- "88b7ae05-6bd8-44ed-b104-58d0fe81a668"
+ "bc49f99a-b9c3-4716-b0cd-de989d99a07d"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133021Z:88b7ae05-6bd8-44ed-b104-58d0fe81a668"
+ "SOUTHINDIA:20201118T113401Z:bc49f99a-b9c3-4716-b0cd-de989d99a07d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:21 GMT"
+ "Wed, 18 Nov 2020 11:34:01 GMT"
],
"Content-Length": [
- "5773"
+ "5572"
],
"Content-Type": [
"application/json"
@@ -357,17 +357,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "addbfa00-ff3f-4de4-b305-9666f399434a"
+ "ec74de7e-fd76-4e91-b6ec-8fb7dc480f73"
],
"Accept-Language": [
"en-US"
@@ -387,13 +387,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC1C9771D195\""
+ "\"1D6BD9EAFF41620\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "16826ce8-8744-4cae-8cd8-329bfa3df2cd"
+ "2c7a3e88-ebb3-47e6-ad6a-24635b43c9a4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -405,22 +405,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11979"
],
"x-ms-correlation-request-id": [
- "768753c2-1de1-44cb-9724-aa21871fb6f4"
+ "409aeebf-471f-45ee-a0f6-52aaf79bb787"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133024Z:768753c2-1de1-44cb-9724-aa21871fb6f4"
+ "SOUTHINDIA:20201118T113404Z:409aeebf-471f-45ee-a0f6-52aaf79bb787"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:23 GMT"
+ "Wed, 18 Nov 2020 11:34:04 GMT"
],
"Content-Length": [
- "5773"
+ "5572"
],
"Content-Type": [
"application/json"
@@ -429,17 +429,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1a0e042-a223-4618-831a-79888230e465"
+ "68c27d83-1aff-4ed0-bc0c-b9373d11b116"
],
"Accept-Language": [
"en-US"
@@ -459,13 +459,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC1CA584ED6B\""
+ "\"1D6BD9EBADDF880\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "18298aae-438d-4228-a163-e50182c4b4f6"
+ "09ca786d-95e5-4e5f-a489-f4447308983b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -477,22 +477,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11976"
],
"x-ms-correlation-request-id": [
- "91989d97-2e9d-4724-a872-c70f5c66efb6"
+ "6ffe3754-2194-492e-83bb-53b9b5bb6290"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133037Z:91989d97-2e9d-4724-a872-c70f5c66efb6"
+ "SOUTHINDIA:20201118T113416Z:6ffe3754-2194-492e-83bb-53b9b5bb6290"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:36 GMT"
+ "Wed, 18 Nov 2020 11:34:16 GMT"
],
"Content-Length": [
- "5733"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -501,17 +501,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:27.6066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:34:09.16\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "da575997-b4f8-4e88-9c54-db6d468ef6f2"
+ "bdba3fd0-fd7f-4ef5-ab59-dbc9b07600e3"
],
"Accept-Language": [
"en-US"
@@ -534,7 +534,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "710a3746-28fb-4158-a25f-74a3b729830a"
+ "fed39193-6bc9-4bbf-8b64-2e0dd6e4966a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -549,19 +549,19 @@
"11991"
],
"x-ms-correlation-request-id": [
- "3f5cdd67-56fc-46d4-b1d9-0451a3e7507d"
+ "7d98116c-3006-4c3a-9c4a-a9514e623976"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132929Z:3f5cdd67-56fc-46d4-b1d9-0451a3e7507d"
+ "SOUTHINDIA:20201118T113321Z:7d98116c-3006-4c3a-9c4a-a9514e623976"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:29 GMT"
+ "Wed, 18 Nov 2020 11:33:20 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -570,17 +570,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8febda1e-fc8f-4fb4-9b50-8fabd85ed2b1"
+ "91347148-7f02-47fc-a6cc-2b0288c2d79b"
],
"Accept-Language": [
"en-US"
@@ -603,7 +603,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "afa1a1de-5be9-467c-b82d-1206c88b5a97"
+ "ef1ebc22-703c-4587-b35d-1e3719b318fd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -615,22 +615,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11986"
],
"x-ms-correlation-request-id": [
- "de9e0356-f754-4bdc-a946-9dc602a4040f"
+ "b84b9bd9-e080-46b6-af64-26434d90e156"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132959Z:de9e0356-f754-4bdc-a946-9dc602a4040f"
+ "SOUTHINDIA:20201118T113346Z:b84b9bd9-e080-46b6-af64-26434d90e156"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:58 GMT"
+ "Wed, 18 Nov 2020 11:33:45 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -639,17 +639,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96b30332-5373-4b92-991a-f0821850a881"
+ "eaa9427d-b10d-4133-89ed-391c80eb3b19"
],
"Accept-Language": [
"en-US"
@@ -672,7 +672,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d587d4c9-9687-4212-9ea8-a8f130f31832"
+ "16cc1918-07f9-4688-8f77-fe5a8c35df8c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -684,22 +684,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11984"
],
"x-ms-correlation-request-id": [
- "ad523349-715e-497a-bb24-6ec7afc2801a"
+ "9176bd13-7056-44e3-b320-c3e196111ae0"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133013Z:ad523349-715e-497a-bb24-6ec7afc2801a"
+ "SOUTHINDIA:20201118T113355Z:9176bd13-7056-44e3-b320-c3e196111ae0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:13 GMT"
+ "Wed, 18 Nov 2020 11:33:54 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -708,17 +708,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c8997ba4-09af-41c9-91ab-cede508d45dd"
+ "96a5b363-b597-4772-8044-9aa862840a5f"
],
"Accept-Language": [
"en-US"
@@ -741,7 +741,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dec1c086-2da4-4d8d-b4e2-fc1455e1b35e"
+ "7b5f8f2e-8b8d-42a9-ae53-9ced3e4869ca"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -753,22 +753,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11982"
],
"x-ms-correlation-request-id": [
- "7d7f5576-7ffa-437e-996d-59daa9b982b0"
+ "4f03a134-3940-4d3e-a1c1-cb3e15dc4372"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133018Z:7d7f5576-7ffa-437e-996d-59daa9b982b0"
+ "SOUTHINDIA:20201118T113358Z:4f03a134-3940-4d3e-a1c1-cb3e15dc4372"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:18 GMT"
+ "Wed, 18 Nov 2020 11:33:58 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -777,17 +777,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5af8e5a9-ab86-43bb-959c-34fea145b66f"
+ "c89e035c-f6f9-4773-aaef-e059508cb09b"
],
"Accept-Language": [
"en-US"
@@ -810,7 +810,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "257643af-1c9d-4445-aab7-5c505785437b"
+ "3652e4db-87a1-48bb-ac9b-22ac1880466a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -822,22 +822,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11980"
],
"x-ms-correlation-request-id": [
- "83c217b6-22a9-4ab1-b6db-9f4accbe02cc"
+ "09f48149-cf74-478a-ba63-c9088afe54c3"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133021Z:83c217b6-22a9-4ab1-b6db-9f4accbe02cc"
+ "SOUTHINDIA:20201118T113401Z:09f48149-cf74-478a-ba63-c9088afe54c3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:21 GMT"
+ "Wed, 18 Nov 2020 11:34:01 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -846,17 +846,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a906536a-8eab-49aa-a49b-9de6347493b2"
+ "482b0a83-8098-4cfa-a84e-45b076718bac"
],
"Accept-Language": [
"en-US"
@@ -879,7 +879,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "45e1c722-6eee-4654-a9fb-c437f9f388d0"
+ "7bce62f3-7edc-4382-936b-6eb4d9cdc004"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -891,22 +891,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11978"
],
"x-ms-correlation-request-id": [
- "40df8af0-b69a-4d11-99c8-3767fc461313"
+ "c21e66fc-25f5-435b-84ba-95bd5a63af6b"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133024Z:40df8af0-b69a-4d11-99c8-3767fc461313"
+ "SOUTHINDIA:20201118T113405Z:c21e66fc-25f5-435b-84ba-95bd5a63af6b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:24 GMT"
+ "Wed, 18 Nov 2020 11:34:04 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -915,17 +915,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c41eba6b-3272-4145-9a89-44de35c8143b"
+ "72160996-7306-4f01-aa01-90c1f36f041b"
],
"Accept-Language": [
"en-US"
@@ -948,7 +948,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "222c4751-e45d-4534-8a09-6dc3d1f9eec8"
+ "7f7e9b2f-acc2-49df-a9d3-daff71d7b352"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -960,22 +960,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11975"
],
"x-ms-correlation-request-id": [
- "84b5d525-d2c4-46f9-a804-1a63818e82b3"
+ "b4942b09-bd9d-46b4-886d-8b5928ada401"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133037Z:84b5d525-d2c4-46f9-a804-1a63818e82b3"
+ "SOUTHINDIA:20201118T113417Z:b4942b09-bd9d-46b4-886d-8b5928ada401"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:37 GMT"
+ "Wed, 18 Nov 2020 11:34:16 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -984,17 +984,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "268292c4-37f6-4946-b3cd-6a43d1e77bc6"
+ "8941e39c-dc79-4665-b00c-92f9361afb0f"
],
"Accept-Language": [
"en-US"
@@ -1017,7 +1017,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fe630cea-0a73-48ec-b8e9-7bfc12904206"
+ "87f5740b-3d3b-4b40-b671-da9f81f0d771"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1032,19 +1032,19 @@
"11993"
],
"x-ms-correlation-request-id": [
- "069fd606-5999-466a-b532-fff5c7b4d556"
+ "94337fa1-b2c5-4572-9740-2caffd64c5bd"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132930Z:069fd606-5999-466a-b532-fff5c7b4d556"
+ "SOUTHINDIA:20201118T113322Z:94337fa1-b2c5-4572-9740-2caffd64c5bd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:30 GMT"
+ "Wed, 18 Nov 2020 11:33:21 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -1053,17 +1053,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4976aad-234b-4793-aff4-9e8e253b8eda"
+ "f295c61e-0f24-42af-a5bf-5cb90ed3a3ad"
],
"Accept-Language": [
"en-US"
@@ -1086,7 +1086,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d65e19e6-b2c7-40de-8c48-baa0b9ea2f3c"
+ "89146886-ebd6-453e-bf10-7b6c2eab6735"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1101,19 +1101,19 @@
"11990"
],
"x-ms-correlation-request-id": [
- "9f752d62-a739-4ea1-8f0e-4d1802b2768b"
+ "f23a7fef-b7d1-4176-aa52-30ad0bb517dc"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132959Z:9f752d62-a739-4ea1-8f0e-4d1802b2768b"
+ "SOUTHINDIA:20201118T113346Z:f23a7fef-b7d1-4176-aa52-30ad0bb517dc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:59 GMT"
+ "Wed, 18 Nov 2020 11:33:46 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -1122,17 +1122,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9879e6f0-a13d-4a2e-b200-a8d790ecf076"
+ "e8b05ea9-26db-4616-a95d-0e17338c89ee"
],
"Accept-Language": [
"en-US"
@@ -1155,7 +1155,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2592d6d0-5693-4905-9d56-e557b7fc75da"
+ "7ee4caa1-bc20-4193-9b19-b348233f0b33"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1170,19 +1170,19 @@
"11987"
],
"x-ms-correlation-request-id": [
- "24107afb-bec2-4533-888d-1b425de4077c"
+ "8f1828d3-ee18-4de8-a1c3-fe06f56969ea"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133014Z:24107afb-bec2-4533-888d-1b425de4077c"
+ "SOUTHINDIA:20201118T113355Z:8f1828d3-ee18-4de8-a1c3-fe06f56969ea"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:14 GMT"
+ "Wed, 18 Nov 2020 11:33:54 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -1191,17 +1191,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca43b00b-8e58-487e-8fea-90b22173c2cf"
+ "98e09c57-865c-4669-adcd-72faba865e1a"
],
"Accept-Language": [
"en-US"
@@ -1224,7 +1224,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "74d4d7ce-c4f4-42b3-9ac2-869a893e96c7"
+ "228aa066-1127-42f2-b35a-9079f59cc006"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1239,19 +1239,19 @@
"11984"
],
"x-ms-correlation-request-id": [
- "5aa98b68-55cb-4b2c-88e7-6b715dcdd757"
+ "694db9b3-7b55-4d79-88b2-92e6c981d4e5"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133019Z:5aa98b68-55cb-4b2c-88e7-6b715dcdd757"
+ "SOUTHINDIA:20201118T113359Z:694db9b3-7b55-4d79-88b2-92e6c981d4e5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:19 GMT"
+ "Wed, 18 Nov 2020 11:33:59 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -1260,17 +1260,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4c1b49e-db31-4b1c-90ad-ddd711d1135d"
+ "573a4959-40b1-4eb7-9355-43fb6fdd07bd"
],
"Accept-Language": [
"en-US"
@@ -1293,7 +1293,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0fdc8a7f-b4b5-45e3-b19d-e86f27ac6b22"
+ "645ccb69-6362-4df9-94ab-f6cb4a18d8b9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1308,19 +1308,19 @@
"11981"
],
"x-ms-correlation-request-id": [
- "1ee94436-2daf-4cca-93d7-e910608d58b2"
+ "24993471-2225-4bc4-b265-af8cc8ca3a5e"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133022Z:1ee94436-2daf-4cca-93d7-e910608d58b2"
+ "SOUTHINDIA:20201118T113402Z:24993471-2225-4bc4-b265-af8cc8ca3a5e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:22 GMT"
+ "Wed, 18 Nov 2020 11:34:02 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -1329,17 +1329,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f617d8a6-e5ab-48f3-8a3d-577e3e39e0d6"
+ "3e6d16e1-22c5-4823-a4e7-5bbee4f43447"
],
"Accept-Language": [
"en-US"
@@ -1362,7 +1362,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d6fbc9bd-41f3-4e9f-a387-fc38afd730d2"
+ "a7f6042c-7705-4c48-ba96-36147739acd7"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1377,19 +1377,19 @@
"11978"
],
"x-ms-correlation-request-id": [
- "b6971572-289d-4eec-bce2-47d9ac564475"
+ "77d96516-74f6-49ec-9567-aa27051b4933"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133025Z:b6971572-289d-4eec-bce2-47d9ac564475"
+ "SOUTHINDIA:20201118T113405Z:77d96516-74f6-49ec-9567-aa27051b4933"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:24 GMT"
+ "Wed, 18 Nov 2020 11:34:05 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -1398,17 +1398,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebb14d13-ed93-4aa2-99b9-9631648bf309"
+ "b178b0a8-4bc2-493a-8b77-674b5234d74c"
],
"Accept-Language": [
"en-US"
@@ -1431,7 +1431,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e5885294-ca64-4125-ae00-bfa0731bbd2c"
+ "e5230134-f047-4065-a573-dd6c90cd7bf3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1446,19 +1446,19 @@
"11975"
],
"x-ms-correlation-request-id": [
- "2bdcca5f-6603-4cca-9c31-7735ca0d9554"
+ "949b8296-ea3a-446c-b520-b0b1f18d6bc2"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133038Z:2bdcca5f-6603-4cca-9c31-7735ca0d9554"
+ "SOUTHINDIA:20201118T113417Z:949b8296-ea3a-446c-b520-b0b1f18d6bc2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:37 GMT"
+ "Wed, 18 Nov 2020 11:34:17 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -1467,17 +1467,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b97565c8-9079-4e4b-b1df-27738483224b"
+ "9f59b8b5-b224-4808-bedd-f2be31682b4d"
],
"Accept-Language": [
"en-US"
@@ -1500,7 +1500,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "551bc089-11a4-4139-ba5a-9d097e241a65"
+ "922b8334-7b9a-4593-816e-9773a65abd0f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1515,19 +1515,19 @@
"11992"
],
"x-ms-correlation-request-id": [
- "3d6a24a2-1f26-4a3c-bf37-708a4eb454e3"
+ "de7af905-0671-493f-ac1d-dbee75466f42"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132933Z:3d6a24a2-1f26-4a3c-bf37-708a4eb454e3"
+ "SOUTHINDIA:20201118T113323Z:de7af905-0671-493f-ac1d-dbee75466f42"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:33 GMT"
+ "Wed, 18 Nov 2020 11:33:22 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1536,17 +1536,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0ab7cc5-5c84-4b82-8762-85c2c98828d8"
+ "186698af-61e6-4942-89aa-2461b5529df2"
],
"Accept-Language": [
"en-US"
@@ -1569,7 +1569,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3820e90f-c059-45d1-94a0-cbcbe91f7205"
+ "0cf239c7-5835-4cb8-803c-811c7d5b7667"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1584,19 +1584,19 @@
"11989"
],
"x-ms-correlation-request-id": [
- "101bad87-e7ea-4080-90ad-19a0d6e43115"
+ "fb716a5c-19a5-419a-8d76-441ddeeca0db"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133000Z:101bad87-e7ea-4080-90ad-19a0d6e43115"
+ "SOUTHINDIA:20201118T113347Z:fb716a5c-19a5-419a-8d76-441ddeeca0db"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:59 GMT"
+ "Wed, 18 Nov 2020 11:33:46 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1605,17 +1605,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43a5bc03-e22e-4830-b612-c98b74c69dc9"
+ "e7bc94b9-61aa-4143-bbf8-8fe9ac22ee44"
],
"Accept-Language": [
"en-US"
@@ -1638,7 +1638,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06171ad3-e9c0-4b5c-90b4-39250615bab9"
+ "2a33d567-1b77-47c4-bb73-f3496f228b6f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1653,19 +1653,19 @@
"11986"
],
"x-ms-correlation-request-id": [
- "8c38e9ce-1112-4fa9-b16c-8445fe8a965f"
+ "0d310d58-d7da-43be-9ee4-50ee7bae6f87"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133015Z:8c38e9ce-1112-4fa9-b16c-8445fe8a965f"
+ "SOUTHINDIA:20201118T113356Z:0d310d58-d7da-43be-9ee4-50ee7bae6f87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:15 GMT"
+ "Wed, 18 Nov 2020 11:33:55 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1674,17 +1674,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d905e960-9076-41ef-8974-cf0c9957f0e5"
+ "2e3a9361-67a9-4246-b617-c84271fbe048"
],
"Accept-Language": [
"en-US"
@@ -1707,7 +1707,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7777921e-709a-4d82-a3da-f33bc08ce3ff"
+ "6f355720-448a-4995-87af-08af11a95b8b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1722,19 +1722,19 @@
"11983"
],
"x-ms-correlation-request-id": [
- "f194a068-5b18-4d63-9f22-96bace226040"
+ "a86402db-279c-4a84-9e97-695fcc3f5f87"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133020Z:f194a068-5b18-4d63-9f22-96bace226040"
+ "SOUTHINDIA:20201118T113359Z:a86402db-279c-4a84-9e97-695fcc3f5f87"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:20 GMT"
+ "Wed, 18 Nov 2020 11:33:59 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1743,17 +1743,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67ceddaa-67fa-426a-ab22-7957b2c6837e"
+ "a7f53569-f7e2-4737-bd91-818021345892"
],
"Accept-Language": [
"en-US"
@@ -1776,7 +1776,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d2b8c529-06bd-4ffc-b69d-f58466d58688"
+ "1be1e0cd-7604-4bcf-b09e-09bd8d867643"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1791,19 +1791,19 @@
"11980"
],
"x-ms-correlation-request-id": [
- "12cc9f71-aee6-4c20-941c-656360d3fcb0"
+ "f16d9910-f05b-4547-9823-61b45677ff43"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133023Z:12cc9f71-aee6-4c20-941c-656360d3fcb0"
+ "SOUTHINDIA:20201118T113402Z:f16d9910-f05b-4547-9823-61b45677ff43"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:23 GMT"
+ "Wed, 18 Nov 2020 11:34:02 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1812,17 +1812,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b781d1a8-56e6-499d-8d18-4e47060a48d0"
+ "636ab6af-27e4-4d7b-8512-73e38599c374"
],
"Accept-Language": [
"en-US"
@@ -1845,7 +1845,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6b0586a3-3fc5-4caf-8276-70a8fa16fe9e"
+ "61feb93f-f9b8-4e01-bc62-96adc0416b32"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1860,19 +1860,19 @@
"11977"
],
"x-ms-correlation-request-id": [
- "b43f6fae-5c0c-4e06-9adb-35f579062efc"
+ "a6a9c699-550f-41fe-b9c4-0edc75b1e2c9"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133025Z:b43f6fae-5c0c-4e06-9adb-35f579062efc"
+ "SOUTHINDIA:20201118T113406Z:a6a9c699-550f-41fe-b9c4-0edc75b1e2c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:25 GMT"
+ "Wed, 18 Nov 2020 11:34:05 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1881,17 +1881,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "995edfbf-ef2c-49c7-9302-873fb93dd502"
+ "0b0cb423-d471-470e-8b0a-24c956fb4751"
],
"Accept-Language": [
"en-US"
@@ -1914,7 +1914,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3b3724c3-0a9f-4bf5-b8c7-080035a97055"
+ "b024c652-896c-418f-94b7-b2c35b9acfdd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1929,19 +1929,19 @@
"11974"
],
"x-ms-correlation-request-id": [
- "cb1a10fa-7e39-4468-bf5c-233bdf850168"
+ "343197a5-d0a6-4d10-bffa-e78e4b24a767"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133038Z:cb1a10fa-7e39-4468-bf5c-233bdf850168"
+ "SOUTHINDIA:20201118T113417Z:343197a5-d0a6-4d10-bffa-e78e4b24a767"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:38 GMT"
+ "Wed, 18 Nov 2020 11:34:17 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1950,17 +1950,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2d939da-bb18-4210-b7aa-01ba7b7b8383"
+ "1d8e51d6-aef7-4072-9e3d-33be09bad4db"
],
"Accept-Language": [
"en-US"
@@ -1983,7 +1983,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1b5e65b8-8050-4ebc-a73a-99840f0eabdf"
+ "0ffe400f-d5f1-43b3-973c-8c86e7dfa74f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1998,19 +1998,19 @@
"11991"
],
"x-ms-correlation-request-id": [
- "fd55c727-f508-4302-a059-cec912688814"
+ "51d00284-aef8-42f4-96f3-089affc7c94e"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132934Z:fd55c727-f508-4302-a059-cec912688814"
+ "SOUTHINDIA:20201118T113323Z:51d00284-aef8-42f4-96f3-089affc7c94e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:34 GMT"
+ "Wed, 18 Nov 2020 11:33:23 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -2019,17 +2019,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "619c2103-5dda-43a9-8889-72e0c95153ad"
+ "aa3bf41f-b25a-4b31-b760-2ba49fe5198f"
],
"Accept-Language": [
"en-US"
@@ -2052,7 +2052,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1440bfa6-dd26-4878-829c-9eba75a70d10"
+ "c0fb0ba2-0131-48c4-b527-f27cf39304e4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2067,19 +2067,19 @@
"11988"
],
"x-ms-correlation-request-id": [
- "d290b67d-9c8a-4193-becc-cad7979ec5e6"
+ "a1166001-fff2-42e9-89ff-d3129cd8c54a"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133001Z:d290b67d-9c8a-4193-becc-cad7979ec5e6"
+ "SOUTHINDIA:20201118T113348Z:a1166001-fff2-42e9-89ff-d3129cd8c54a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:00 GMT"
+ "Wed, 18 Nov 2020 11:33:47 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -2088,17 +2088,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e8e8626-c7ed-4ed0-9845-68094b106fc2"
+ "533e083a-8fb3-483a-977c-e7a6116065d8"
],
"Accept-Language": [
"en-US"
@@ -2121,7 +2121,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7a41b13b-4904-4f27-8685-9bf3e136edcc"
+ "03feabe2-9784-41d8-8fe1-3ff1befc3f79"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2136,19 +2136,19 @@
"11985"
],
"x-ms-correlation-request-id": [
- "e63d4d7c-ea25-4257-b097-415a024f060a"
+ "8ac717c4-d4e4-4f0f-a803-9e823f9bed69"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133016Z:e63d4d7c-ea25-4257-b097-415a024f060a"
+ "SOUTHINDIA:20201118T113357Z:8ac717c4-d4e4-4f0f-a803-9e823f9bed69"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:16 GMT"
+ "Wed, 18 Nov 2020 11:33:56 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -2157,17 +2157,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "58b3def0-4ef8-487a-9da1-8c1768fb108c"
+ "55fcf268-600a-431b-80b0-15c0b9f3c918"
],
"Accept-Language": [
"en-US"
@@ -2190,7 +2190,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2b91213e-9d55-4600-8746-db0b6d4f9ba4"
+ "1cae1c7c-e00b-4344-9e79-e893044464f0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2205,19 +2205,19 @@
"11982"
],
"x-ms-correlation-request-id": [
- "e24b1ca2-064a-4072-abd8-cd3128c9d44a"
+ "50161ede-66ad-458c-a9d0-6feed6a104af"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133020Z:e24b1ca2-064a-4072-abd8-cd3128c9d44a"
+ "SOUTHINDIA:20201118T113400Z:50161ede-66ad-458c-a9d0-6feed6a104af"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:20 GMT"
+ "Wed, 18 Nov 2020 11:34:00 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -2226,17 +2226,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b91eea7-9602-4ab7-8af8-c637b3eedb5a"
+ "693e08c5-a3c4-48fa-b6de-d68b49bae88e"
],
"Accept-Language": [
"en-US"
@@ -2259,7 +2259,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "911d3faf-c9ff-4e00-a15a-ec54cbdf31c9"
+ "b83a9b81-ae54-4077-9c17-e9f0788f1796"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2274,19 +2274,19 @@
"11979"
],
"x-ms-correlation-request-id": [
- "c3cf3db9-297b-4baf-a222-ee56b4f0c8b2"
+ "99098ab9-156b-471a-9361-f6a15e05af7c"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133023Z:c3cf3db9-297b-4baf-a222-ee56b4f0c8b2"
+ "SOUTHINDIA:20201118T113403Z:99098ab9-156b-471a-9361-f6a15e05af7c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:23 GMT"
+ "Wed, 18 Nov 2020 11:34:03 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -2295,17 +2295,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5a0b53f-b5eb-49b3-b874-1b0098bcd374"
+ "7ed3ea98-4b28-4e9c-9f03-cd3202ea99cb"
],
"Accept-Language": [
"en-US"
@@ -2328,7 +2328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "94488ae1-f4f1-4d17-8aa3-462c7269a098"
+ "29e8b2f2-6e06-4c49-9831-4c08769c8e09"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2343,19 +2343,19 @@
"11976"
],
"x-ms-correlation-request-id": [
- "233a9b9e-55da-4829-8627-9afcea0f19ce"
+ "3c5d0794-6bf6-43bd-b645-8cf6bc5ac86a"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133026Z:233a9b9e-55da-4829-8627-9afcea0f19ce"
+ "SOUTHINDIA:20201118T113407Z:3c5d0794-6bf6-43bd-b645-8cf6bc5ac86a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:25 GMT"
+ "Wed, 18 Nov 2020 11:34:07 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -2364,17 +2364,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9129e75a-6f01-4bb7-a914-54d3035b213f"
+ "706b2da6-f83a-4d89-a006-5987a50d1327"
],
"Accept-Language": [
"en-US"
@@ -2397,7 +2397,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "256cc936-e6e5-4fb7-8e84-74001de0c9b2"
+ "2584cb8f-2b16-4340-9004-f1f6c25ae417"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2412,19 +2412,19 @@
"11973"
],
"x-ms-correlation-request-id": [
- "e4b6e51e-4933-46cc-afb4-f333f0875621"
+ "4a7062f7-457c-46f0-8db0-5ca5db754a71"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133039Z:e4b6e51e-4933-46cc-afb4-f333f0875621"
+ "SOUTHINDIA:20201118T113418Z:4a7062f7-457c-46f0-8db0-5ca5db754a71"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:38 GMT"
+ "Wed, 18 Nov 2020 11:34:18 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -2433,17 +2433,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b42f2901-4395-49ff-af4e-e351398fba25"
+ "47eb1444-a888-49ce-833c-8fd60a36c63a"
],
"Accept-Language": [
"en-US"
@@ -2458,7 +2458,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "269"
+ "283"
]
},
"ResponseHeaders": {
@@ -2469,7 +2469,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net/operationresults/07730b37-afc3-4660-be10-847161a479c7?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/0adcee99-81b1-4e75-a441-eb16cf055ae6?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -2490,19 +2490,19 @@
"1198"
],
"x-ms-request-id": [
- "349efd66-8931-49e0-bba3-e31650ca9b4e"
+ "cd65b646-9bcf-4c21-a7f3-ebe31afd1d7c"
],
"x-ms-correlation-request-id": [
- "349efd66-8931-49e0-bba3-e31650ca9b4e"
+ "cd65b646-9bcf-4c21-a7f3-ebe31afd1d7c"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132942Z:349efd66-8931-49e0-bba3-e31650ca9b4e"
+ "SOUTHINDIA:20201118T113333Z:cd65b646-9bcf-4c21-a7f3-ebe31afd1d7c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:41 GMT"
+ "Wed, 18 Nov 2020 11:33:32 GMT"
],
"Expires": [
"-1"
@@ -2515,13 +2515,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d56b7779-8dda-4b18-84b6-f8971dc33626"
+ "f4885ede-ce91-4f73-882b-38f98a4d0e10"
],
"Accept-Language": [
"en-US"
@@ -2540,52 +2540,57 @@
"Pragma": [
"no-cache"
],
- "x-ms-original-request-ids": [
- "5c3f165e-1b13-4c90-a11d-6ce88e1631ee",
- "17efe56d-8725-452c-b030-19f3d94fe919"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11990"
],
"x-ms-request-id": [
- "c64cb74f-1716-46d4-8cdc-0200c7e93d5d"
+ "aa6a62e1-e777-4444-bfec-f42c10686a66"
],
"x-ms-correlation-request-id": [
- "c64cb74f-1716-46d4-8cdc-0200c7e93d5d"
+ "aa6a62e1-e777-4444-bfec-f42c10686a66"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132958Z:c64cb74f-1716-46d4-8cdc-0200c7e93d5d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "SOUTHINDIA:20201118T113334Z:aa6a62e1-e777-4444-bfec-f42c10686a66"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:29:57 GMT"
+ "Wed, 18 Nov 2020 11:33:33 GMT"
+ ],
+ "Content-Length": [
+ "435"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "8671"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8d63ce7-6ebd-48fc-9c80-2753e1213c37"
+ "ef0f9e88-b397-45e1-b5e5-298f0ca353fb"
],
"Accept-Language": [
"en-US"
@@ -2595,12 +2600,6 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "279"
]
},
"ResponseHeaders": {
@@ -2610,15 +2609,9 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"1D6BC14AEC8BA8B\""
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "8f64b8fa-8f97-4f0a-ae30-28e3c8abe6c5"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -2628,42 +2621,45 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "499"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "f08be47b-d6f6-4e4d-b8df-4ec5f45260d8"
],
"x-ms-correlation-request-id": [
- "60841bb3-1241-49ed-ba36-3a833e0db6f8"
+ "f08be47b-d6f6-4e4d-b8df-4ec5f45260d8"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133007Z:60841bb3-1241-49ed-ba36-3a833e0db6f8"
+ "SOUTHINDIA:20201118T113339Z:f08be47b-d6f6-4e4d-b8df-4ec5f45260d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:06 GMT"
+ "Wed, 18 Nov 2020 11:33:38 GMT"
],
"Content-Length": [
- "5973"
+ "435"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:03.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.managedcerts.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "85c06d43-fad7-470c-89e3-df1893711f0e"
+ "7f06475f-d208-4386-95b1-0ca7033374ff"
],
"Accept-Language": [
"en-US"
@@ -2673,12 +2669,6 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "210"
]
},
"ResponseHeaders": {
@@ -2688,14 +2678,11 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"1D6BC1C9771D195\""
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2bd82afc-35be-47ef-afec-8ed18622f378"
+ "1e29e0af-ddb0-46d7-affa-7c9d8e823aeb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2706,23 +2693,23 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "498"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
],
"x-ms-correlation-request-id": [
- "76963de8-d3d9-4027-8f7e-174eb566c0eb"
+ "374ac17c-7669-45e2-a439-8e9d4cc8ec23"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133030Z:76963de8-d3d9-4027-8f7e-174eb566c0eb"
+ "SOUTHINDIA:20201118T113345Z:374ac17c-7669-45e2-a439-8e9d4cc8ec23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:29 GMT"
+ "Wed, 18 Nov 2020 11:33:44 GMT"
],
"Content-Length": [
- "5933"
+ "905"
],
"Content-Type": [
"application/json"
@@ -2731,17 +2718,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T13:30:27.6066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "644783e0-8f07-4a58-8e67-69e443bdfda1"
+ "7d5c0ba8-accb-4cbe-9437-3015ba9eb3da"
],
"Accept-Language": [
"en-US"
@@ -2750,7 +2737,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
]
},
"ResponseHeaders": {
@@ -2760,48 +2747,57 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3da1090a-3784-4faf-97dc-74b94bd08c84"
+ "8a65d407-6c2d-4b1c-a1d7-077e2e09bf51"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
],
"x-ms-correlation-request-id": [
- "3da1090a-3784-4faf-97dc-74b94bd08c84"
+ "bb27f52c-e549-41fd-8d15-fc96408f1c26"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133030Z:3da1090a-3784-4faf-97dc-74b94bd08c84"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "SOUTHINDIA:20201118T113412Z:bb27f52c-e549-41fd-8d15-fc96408f1c26"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:29 GMT"
+ "Wed, 18 Nov 2020 11:34:12 GMT"
+ ],
+ "Content-Length": [
+ "905"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "477"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f2515e28-6617-464c-930e-b6812d668328"
+ "335e222a-ea78-48c9-86bb-565219605fa0"
],
"Accept-Language": [
"en-US"
@@ -2810,7 +2806,13 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "314"
]
},
"ResponseHeaders": {
@@ -2820,48 +2822,60 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "ETag": [
+ "\"1D6BD9AD6EBD000\""
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2db5760-bba2-45fb-89cc-6a3fa71ceb8a"
+ "e56dd02a-5104-4744-a83c-1924552561dd"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "499"
],
"x-ms-correlation-request-id": [
- "f2db5760-bba2-45fb-89cc-6a3fa71ceb8a"
+ "508d3050-004d-4731-8412-b0ab2005e62c"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133039Z:f2db5760-bba2-45fb-89cc-6a3fa71ceb8a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "SOUTHINDIA:20201118T113354Z:508d3050-004d-4731-8412-b0ab2005e62c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:38 GMT"
+ "Wed, 18 Nov 2020 11:33:53 GMT"
+ ],
+ "Content-Length": [
+ "5772"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "245"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8fb0dca7-e380-4867-ac61-5baf62a5841d"
+ "0ca49c3e-b393-4087-867a-e076bfa53718"
],
"Accept-Language": [
"en-US"
@@ -2871,6 +2885,12 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "245"
]
},
"ResponseHeaders": {
@@ -2880,11 +2900,14 @@
"Pragma": [
"no-cache"
],
+ "ETag": [
+ "\"1D6BD9EAFF41620\""
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5fea0a96-7e4f-4ff3-9424-9ea90ea77121"
+ "6a8b92f7-1261-43fd-af20-c5ab42d19084"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2895,23 +2918,23 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "498"
],
"x-ms-correlation-request-id": [
- "56e2c7cb-c932-49ed-8bcc-dd9e5c0b02cb"
+ "f2032df5-1ab0-408d-aca8-31cf3155be75"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133031Z:56e2c7cb-c932-49ed-8bcc-dd9e5c0b02cb"
+ "SOUTHINDIA:20201118T113411Z:f2032df5-1ab0-408d-aca8-31cf3155be75"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:30 GMT"
+ "Wed, 18 Nov 2020 11:34:11 GMT"
],
"Content-Length": [
- "914"
+ "5732"
],
"Content-Type": [
"application/json"
@@ -2920,17 +2943,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:34:09.16\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzMS5vcmc/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "942f6583-c6a8-4ed7-9053-69324eb9c92e"
+ "d6065b3c-b714-4fbc-a370-63f8e198a733"
],
"Accept-Language": [
"en-US"
@@ -2939,7 +2962,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
]
},
"ResponseHeaders": {
@@ -2949,60 +2972,48 @@
"Pragma": [
"no-cache"
],
- "Age": [
- "8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
],
"x-ms-request-id": [
- "5fea0a96-7e4f-4ff3-9424-9ea90ea77121"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-arm-request-tracking-id": [
- "a02adfec-0755-4c1e-ac93-404566ed6ee1"
+ "68a2b9c6-c8ab-4010-8146-8438870db4f6"
],
"x-ms-correlation-request-id": [
- "a02adfec-0755-4c1e-ac93-404566ed6ee1"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "68a2b9c6-c8ab-4010-8146-8438870db4f6"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133039Z:a02adfec-0755-4c1e-ac93-404566ed6ee1"
+ "SOUTHINDIA:20201118T113411Z:68a2b9c6-c8ab-4010-8146-8438870db4f6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:38 GMT"
- ],
- "Content-Length": [
- "914"
+ "Wed, 18 Nov 2020 11:34:11 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "243"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts1.org\",\r\n \"name\": \"www.managedcerts1.org\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts1.org\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"3C6658D8FCE2986088F996493EBAD339CE8A2A2E\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts1.org\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "749cd331-7073-4d43-9a4a-1c67f6e1b794"
+ "e0839419-432a-4fea-982d-608bbbb9f9b6"
],
"Accept-Language": [
"en-US"
@@ -3011,7 +3022,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
]
},
"ResponseHeaders": {
@@ -3021,57 +3032,48 @@
"Pragma": [
"no-cache"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
],
"x-ms-request-id": [
- "64d00973-82fe-4d7d-a044-bd0cf0b9ac89"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "ea7c2a84-a2c3-4e65-86b5-e6676079b915"
],
"x-ms-correlation-request-id": [
- "7da09fb0-387c-4222-b684-3480b9ddb22a"
+ "ea7c2a84-a2c3-4e65-86b5-e6676079b915"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133031Z:7da09fb0-387c-4222-b684-3480b9ddb22a"
+ "SOUTHINDIA:20201118T113418Z:ea7c2a84-a2c3-4e65-86b5-e6676079b915"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:31 GMT"
- ],
- "Content-Length": [
- "909"
+ "Wed, 18 Nov 2020 11:34:18 GMT"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "12"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"897E2110E9EDEB5A184AAF2256AB8896691AF224\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c92b2e84-96d3-4212-bc27-10253be4109b"
+ "d25122e1-84a8-4245-9983-2bf847384748"
],
"Accept-Language": [
"en-US"
@@ -3094,7 +3096,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d8f2ca4f-9b03-400f-bd78-b25c25112e86"
+ "58e43be9-8bb3-429b-b238-8502c3ac08fa"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -3109,16 +3111,16 @@
"14998"
],
"x-ms-correlation-request-id": [
- "bf9ed137-fe29-4fa5-897a-a47f73573fc2"
+ "1be4e4ea-951c-49ef-b5a8-582c23843004"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T133036Z:bf9ed137-fe29-4fa5-897a-a47f73573fc2"
+ "SOUTHINDIA:20201118T113416Z:1be4e4ea-951c-49ef-b5a8-582c23843004"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:30:36 GMT"
+ "Wed, 18 Nov 2020 11:34:15 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
index b59903212a4f..872490743f8f 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
@@ -1,13 +1,13 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d778d91e-f8c4-4004-8bc1-caa5af7bf41b"
+ "b06931a5-061e-441e-8284-5809debe6104"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC14AEC8BA8B\""
+ "\"1D6BD9AD6EBD000\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "350c70f8-43af-44b4-92e6-caa668e2c00a"
+ "46a28f20-7197-4a54-aa47-4cbc7c490685"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11979"
],
"x-ms-correlation-request-id": [
- "32b4ba0f-05bf-4999-979f-bc20c7344436"
+ "a33143d8-dd9f-41da-87cb-acf0092c070b"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132643Z:32b4ba0f-05bf-4999-979f-bc20c7344436"
+ "SOUTHINDIA:20201118T113149Z:a33143d8-dd9f-41da-87cb-acf0092c070b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:26:42 GMT"
+ "Wed, 18 Nov 2020 11:31:48 GMT"
],
"Content-Length": [
- "5733"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -69,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d3b0923-9ab3-4d10-a1ad-b228ba64e568"
+ "15c888f0-a7f4-4b6a-93bb-56734872ef06"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BC14AEC8BA8B\""
+ "\"1D6BD9AD6EBD000\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "94212453-257d-43e5-b198-56b57c0b2365"
+ "5d6fc52d-54dc-4c5b-b699-e709462b7a68"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11973"
],
"x-ms-correlation-request-id": [
- "6f645507-bb0b-44b2-a2de-c05ceb464d6c"
+ "7c7b8fd0-dcb6-43c5-bc12-0ffc06531822"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132717Z:6f645507-bb0b-44b2-a2de-c05ceb464d6c"
+ "SOUTHINDIA:20201118T113221Z:7c7b8fd0-dcb6-43c5-bc12-0ffc06531822"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:16 GMT"
+ "Wed, 18 Nov 2020 11:32:21 GMT"
],
"Content-Length": [
- "5733"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -141,17 +141,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"managedcerts\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts1.org\",\r\n \"www.managedcerts.net\",\r\n \"managedcerts.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-015.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/RG-W-CUS-CentralUSwebspace/sites/managedcerts\",\r\n \"repositorySiteName\": \"managedcerts\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.managedcerts.net\",\r\n \"www.managedcerts1.org\",\r\n \"managedcerts.azurewebsites.net\",\r\n \"managedcerts.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\": \"managedcerts.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\": \"www.managedcerts.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\": \"www.managedcerts1.org\",\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\": \"managedcerts.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/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-16T12:33:27.1766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"managedcerts\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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.86.91.212\",\r\n \"possibleInboundIpAddresses\": \"40.86.91.212,13.89.172.18\",\r\n \"ftpUsername\": \"managedcerts\\\\$managedcerts\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-015.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159\",\r\n \"possibleOutboundIpAddresses\": \"40.86.95.108,40.86.95.228,40.86.92.253,40.86.95.159,13.67.177.34,13.67.177.214,13.67.176.100,40.86.83.238,104.208.25.165,40.86.91.212,13.89.172.18\",\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-dm1-015\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-W-CUS\",\r\n \"defaultHostName\": \"managedcerts.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ef04bfe-03c9-4e0c-8517-b6f9ddcc7e71"
+ "89f8ba26-ef93-4c1d-a0f1-1e41c2c8b7b0"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0cbd48b1-b8e9-42ea-83d5-a792828a4a37"
+ "9e46033f-7493-4756-90c8-8e852247ef9b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,22 +186,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11978"
],
"x-ms-correlation-request-id": [
- "bc756b84-c959-4b5b-8c28-3e2ad3b42437"
+ "fc9f04a8-8c7f-43bc-9fb0-442adf4534ca"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132650Z:bc756b84-c959-4b5b-8c28-3e2ad3b42437"
+ "SOUTHINDIA:20201118T113149Z:fc9f04a8-8c7f-43bc-9fb0-442adf4534ca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:26:49 GMT"
+ "Wed, 18 Nov 2020 11:31:49 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -210,17 +210,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbf33d29-91b4-40b6-8c46-adedaadb73f5"
+ "11daea7f-1c57-4653-b5af-c127123adb16"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "00b329e1-7bff-43cf-bed4-1c95514c27f9"
+ "a6c3f2d4-311a-4de5-9238-02807f060a76"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,22 +255,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11972"
],
"x-ms-correlation-request-id": [
- "6b32ad4c-4cc3-44bc-92ed-aca78f4baa3d"
+ "12aef3f1-2abe-47fa-8dda-60e19e1276ad"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132718Z:6b32ad4c-4cc3-44bc-92ed-aca78f4baa3d"
+ "SOUTHINDIA:20201118T113221Z:12aef3f1-2abe-47fa-8dda-60e19e1276ad"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:17 GMT"
+ "Wed, 18 Nov 2020 11:32:21 GMT"
],
"Content-Length": [
- "3570"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -279,17 +279,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/web\",\r\n \"name\": \"managedcerts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central 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\": \"\",\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\": \"VS2019\",\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\": \"$managedcerts\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "779a03d3-9425-4e3d-a290-c7e176a30d6f"
+ "0717d113-8411-4a00-b385-3d9e232c0381"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cd74a6b9-ab9d-4a69-8dd6-3f09e82eb3af"
+ "e0a3193c-e719-4913-8c7b-6b58692419fb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -324,22 +324,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
+ "11978"
],
"x-ms-correlation-request-id": [
- "27ff22fb-77db-4763-be8c-d55ae2671c82"
+ "224ebb33-0a79-48be-b948-9862f38934ec"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132650Z:27ff22fb-77db-4763-be8c-d55ae2671c82"
+ "SOUTHINDIA:20201118T113152Z:224ebb33-0a79-48be-b948-9862f38934ec"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:26:50 GMT"
+ "Wed, 18 Nov 2020 11:31:51 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -348,17 +348,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41ce69ec-1b76-41b1-b08a-df673aba7c16"
+ "dde372d5-3b42-4ba9-869a-ea17b1a57523"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b5f4f04a-1401-44f6-a82a-bbd631ebf839"
+ "8bb4b574-fb95-4603-a5eb-e16ecc66f091"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -393,22 +393,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
+ "11975"
],
"x-ms-correlation-request-id": [
- "e93862d0-c78b-4879-84a3-265cc42a4a3a"
+ "838d4590-7ea7-49ca-bbb0-46cceeabb6be"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132718Z:e93862d0-c78b-4879-84a3-265cc42a4a3a"
+ "SOUTHINDIA:20201118T113222Z:838d4590-7ea7-49ca-bbb0-46cceeabb6be"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:17 GMT"
+ "Wed, 18 Nov 2020 11:32:22 GMT"
],
"Content-Length": [
- "701"
+ "740"
],
"Content-Type": [
"application/json"
@@ -417,17 +417,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://managedcerts.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=5ae8e65d-1272-41d5-98f9-82522acb847c;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"5ae8e65d-1272-41d5-98f9-82522acb847c\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8003986b-3bfc-4723-9a10-97b50cd32b83"
+ "0e4e7fa0-f707-48b0-a0e9-7f50899ca455"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "66261285-554d-4d76-959f-983956acbd26"
+ "d9195563-ba03-4f2c-b3c5-6bea641a4c37"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -462,22 +462,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11998"
+ "11977"
],
"x-ms-correlation-request-id": [
- "90ee343e-f6d1-4729-8f36-6945c1054d98"
+ "f32bc9d4-3f3b-4935-abe7-3e3f18780433"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132651Z:90ee343e-f6d1-4729-8f36-6945c1054d98"
+ "SOUTHINDIA:20201118T113152Z:f32bc9d4-3f3b-4935-abe7-3e3f18780433"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:26:50 GMT"
+ "Wed, 18 Nov 2020 11:31:52 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -486,17 +486,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5307d9a1-aaf6-48ce-b755-f2b751cbbe4a"
+ "13f52bf6-0164-4808-bec5-ec21d9e497c1"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b67d6d93-4c2d-4e85-8b9e-4baed404e898"
+ "474fcb6e-cc8e-4028-930b-ac3328ea1d99"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -531,22 +531,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11974"
],
"x-ms-correlation-request-id": [
- "838e767c-db20-4be0-aa0c-e6dc4f9e29fd"
+ "2fac7617-5e3c-462b-b47f-4c6ae241e921"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132719Z:838e767c-db20-4be0-aa0c-e6dc4f9e29fd"
+ "SOUTHINDIA:20201118T113223Z:2fac7617-5e3c-462b-b47f-4c6ae241e921"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:18 GMT"
+ "Wed, 18 Nov 2020 11:32:23 GMT"
],
"Content-Length": [
- "255"
+ "290"
],
"Content-Type": [
"application/json"
@@ -555,17 +555,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3bc640a-ae16-4b85-a104-aa276c931e9e"
+ "b4683487-da39-4882-8b62-fd017465d98d"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fc33e44d-64db-45a6-9c71-95a7a4720322"
+ "97f3a4e0-83e9-453d-ad8c-c005d5453f46"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -600,22 +600,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11997"
+ "11976"
],
"x-ms-correlation-request-id": [
- "6c851fa5-34d9-449e-bb52-7cb3051ad3ba"
+ "686b8668-fa06-4915-a5d0-d8d753cfcbd2"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132651Z:6c851fa5-34d9-449e-bb52-7cb3051ad3ba"
+ "SOUTHINDIA:20201118T113153Z:686b8668-fa06-4915-a5d0-d8d753cfcbd2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:26:51 GMT"
+ "Wed, 18 Nov 2020 11:31:52 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -624,17 +624,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL21hbmFnZWRjZXJ0cy9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20514859-c254-4dfc-b82d-4343d8ef27f8"
+ "cbad9f0b-4c1a-482a-80ec-0cd996233273"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2b457292-647e-4038-b030-3254ec2ad0b2"
+ "1f9ac235-24c1-48b0-9592-4cc1ce2093e2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -669,22 +669,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11973"
],
"x-ms-correlation-request-id": [
- "945cc1d5-bdeb-48cf-97a8-3292d4b30fb2"
+ "7255d6d5-13df-4336-acdd-1461711c9245"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132719Z:945cc1d5-bdeb-48cf-97a8-3292d4b30fb2"
+ "SOUTHINDIA:20201118T113224Z:7255d6d5-13df-4336-acdd-1461711c9245"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:18 GMT"
+ "Wed, 18 Nov 2020 11:32:23 GMT"
],
"Content-Length": [
- "252"
+ "287"
],
"Content-Type": [
"application/json"
@@ -693,17 +693,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/sites/managedcerts/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/serverfarms/ASP-W-CUS\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ff40f55b-2921-4951-8461-e2bdcf6ba2f0"
+ "042da302-9570-4164-b253-74871d4de836"
],
"Accept-Language": [
"en-US"
@@ -718,7 +718,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "269"
+ "283"
]
},
"ResponseHeaders": {
@@ -729,7 +729,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net/operationresults/fa0e1838-8d2b-43db-9230-6fc1a414da29?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/dd2342d1-ea8a-42ac-930a-130ed78a3bfc?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -747,22 +747,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "4ce355eb-ed2c-4fff-981d-54e2280dfc1a"
+ "5946603f-8410-4ebc-9dd1-4141561c8d89"
],
"x-ms-correlation-request-id": [
- "4ce355eb-ed2c-4fff-981d-54e2280dfc1a"
+ "5946603f-8410-4ebc-9dd1-4141561c8d89"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132701Z:4ce355eb-ed2c-4fff-981d-54e2280dfc1a"
+ "SOUTHINDIA:20201118T113201Z:5946603f-8410-4ebc-9dd1-4141561c8d89"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:00 GMT"
+ "Wed, 18 Nov 2020 11:32:00 GMT"
],
"Expires": [
"-1"
@@ -775,13 +775,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/providers/Microsoft.Web/certificates?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8e2e3db-1063-48d3-ba6c-ea5f7f63db39"
+ "0d27e20f-fd71-4ddf-8554-349a24688507"
],
"Accept-Language": [
"en-US"
@@ -800,52 +800,264 @@
"Pragma": [
"no-cache"
],
- "x-ms-original-request-ids": [
- "02056d4d-2d8a-4d98-8072-23ebeb7f7e1a",
- "0abd91df-1ea0-4620-8dbb-0f5c20707244"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11977"
],
"x-ms-request-id": [
- "25dc212f-114b-4ad6-ae57-502b854c220b"
+ "e8d0567f-9789-475a-8a7f-3efc9c0317b6"
],
"x-ms-correlation-request-id": [
- "25dc212f-114b-4ad6-ae57-502b854c220b"
+ "e8d0567f-9789-475a-8a7f-3efc9c0317b6"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132717Z:25dc212f-114b-4ad6-ae57-502b854c220b"
+ "SOUTHINDIA:20201118T113201Z:e8d0567f-9789-475a-8a7f-3efc9c0317b6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:01 GMT"
+ ],
+ "Content-Length": [
+ "435"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "59fe199a-92c0-4eb8-aa36-0561520e9628"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-request-id": [
+ "ae736e3a-6c1a-406d-98ac-5ddfe21bf5dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae736e3a-6c1a-406d-98ac-5ddfe21bf5dd"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113207Z:ae736e3a-6c1a-406d-98ac-5ddfe21bf5dd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:06 GMT"
+ ],
+ "Content-Length": [
+ "435"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2151c50c-4e88-4b8b-8558-7d47161934cc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-request-id": [
+ "1cf07128-a069-49d1-9518-8189173d681e"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cf07128-a069-49d1-9518-8189173d681e"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113213Z:1cf07128-a069-49d1-9518-8189173d681e"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:16 GMT"
+ "Wed, 18 Nov 2020 11:32:12 GMT"
+ ],
+ "Content-Length": [
+ "435"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "098ccbd6-a906-4508-8133-74aef06ceb7a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "90c6a9a4-dab4-4cc5-a389-ef326fafe579"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e70d9bb-9b69-464a-abf6-ac961074d716"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113220Z:9e70d9bb-9b69-464a-abf6-ac961074d716"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:19 GMT"
],
"Content-Length": [
- "7756"
+ "905"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-16T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-16T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"DFDEB0630E5FF14364D8A0CA11B25B2A15803A26\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e51a9186-5414-4c2a-9eb4-88322b9fc9e5"
+ "92ecad74-56d6-4515-bc3b-6e40e550dd52"
],
"Accept-Language": [
"en-US"
@@ -865,16 +1077,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11994"
],
"x-ms-request-id": [
- "17414999-220c-4e8d-b0e0-bee368bedbef"
+ "04010a20-91d8-46e6-8260-0fe91349f4d8"
],
"x-ms-correlation-request-id": [
- "17414999-220c-4e8d-b0e0-bee368bedbef"
+ "04010a20-91d8-46e6-8260-0fe91349f4d8"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132720Z:17414999-220c-4e8d-b0e0-bee368bedbef"
+ "SOUTHINDIA:20201118T113224Z:04010a20-91d8-46e6-8260-0fe91349f4d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -883,7 +1095,7 @@
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:20 GMT"
+ "Wed, 18 Nov 2020 11:32:24 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -892,10 +1104,148 @@
"-1"
],
"Content-Length": [
- "12"
+ "251"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f6543241-52f1-4aac-802f-8690a20196ef"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4bb58c62-e0c9-4048-ae42-3ed86a1c47db"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c9180a5-61c3-4d55-8821-9296f7c0c358"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113225Z:0c9180a5-61c3-4d55-8821-9296f7c0c358"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:25 GMT"
+ ],
+ "Content-Length": [
+ "923"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ff4a879e-38b6-4bc4-ba94-5e5f2c16c6ba"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8596b5ff-e03e-42fd-ac1b-ea569673e696"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-correlation-request-id": [
+ "018386db-6afa-46c5-b366-ed7688b3efe8"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113227Z:018386db-6afa-46c5-b366-ed7688b3efe8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:27 GMT"
+ ],
+ "Content-Length": [
+ "923"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -905,7 +1255,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c71c49d-2d7f-4ee7-bb4c-15b745b26636"
+ "c43a1365-bfdc-4f5d-bad0-f2f3cec24403"
],
"Accept-Language": [
"en-US"
@@ -925,16 +1275,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11993"
],
"x-ms-request-id": [
- "55d4ae9e-8688-4d2e-b749-086d6b0cc8ec"
+ "7f5c0991-2b71-4b58-a6df-16fffb251287"
],
"x-ms-correlation-request-id": [
- "55d4ae9e-8688-4d2e-b749-086d6b0cc8ec"
+ "7f5c0991-2b71-4b58-a6df-16fffb251287"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132720Z:55d4ae9e-8688-4d2e-b749-086d6b0cc8ec"
+ "SOUTHINDIA:20201118T113225Z:7f5c0991-2b71-4b58-a6df-16fffb251287"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -943,7 +1293,7 @@
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:20 GMT"
+ "Wed, 18 Nov 2020 11:32:25 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -952,10 +1302,10 @@
"-1"
],
"Content-Length": [
- "1726"
+ "2328"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -965,7 +1315,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0aa81b3e-90a4-40be-bc3e-228d7b1a7534"
+ "11d15a6f-05d0-4ef8-93a9-ccbfe0d470bb"
],
"Accept-Language": [
"en-US"
@@ -988,7 +1338,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cbceb84c-4080-46c6-85b8-a7911312a06c"
+ "355cab24-45af-4098-b9ac-8632569bfdda"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1000,19 +1350,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11970"
],
"x-ms-correlation-request-id": [
- "9f70a0ee-191f-4a66-abec-747441382bf7"
+ "908cbf85-c656-4061-9eed-1d2fdf850ad8"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132721Z:9f70a0ee-191f-4a66-abec-747441382bf7"
+ "SOUTHINDIA:20201118T113225Z:908cbf85-c656-4061-9eed-1d2fdf850ad8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:20 GMT"
+ "Wed, 18 Nov 2020 11:32:25 GMT"
],
"Content-Length": [
"935"
@@ -1034,7 +1384,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af6c2d61-a636-46d8-bc2c-c84a702699f0"
+ "9942a9cd-2833-446a-9553-adea2c2ed727"
],
"Accept-Language": [
"en-US"
@@ -1057,7 +1407,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8f869576-2682-4e02-b6f3-3e5abb1396f2"
+ "d04aadc3-47a0-4052-9d47-14b636d31193"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1069,19 +1419,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11969"
],
"x-ms-correlation-request-id": [
- "cc10f870-fba2-4998-9cc5-9230bff89755"
+ "cbe2eecc-083e-475f-be2b-3078d81420ac"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132721Z:cc10f870-fba2-4998-9cc5-9230bff89755"
+ "SOUTHINDIA:20201118T113226Z:cbe2eecc-083e-475f-be2b-3078d81420ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:20 GMT"
+ "Wed, 18 Nov 2020 11:32:26 GMT"
],
"Content-Length": [
"861"
@@ -1103,7 +1453,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1587d7d3-4e94-4324-abd2-843c1ea5d15f"
+ "e6faf1df-5cce-4659-9082-57ca5654b2ed"
],
"Accept-Language": [
"en-US"
@@ -1126,7 +1476,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "29063237-f1cf-44bc-b76a-4f19b1afeb44"
+ "f00edbb3-b7c2-4015-b74b-cac2bd523888"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1138,19 +1488,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11968"
],
"x-ms-correlation-request-id": [
- "ef5953e3-29a1-40b9-8fcd-ce6ae9b74121"
+ "e784fbb6-2a33-48a1-a6d4-25be9956c60c"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132722Z:ef5953e3-29a1-40b9-8fcd-ce6ae9b74121"
+ "SOUTHINDIA:20201118T113227Z:e784fbb6-2a33-48a1-a6d4-25be9956c60c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:21 GMT"
+ "Wed, 18 Nov 2020 11:32:26 GMT"
],
"Content-Length": [
"904"
@@ -1165,6 +1515,75 @@
"ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.teja-test.com\",\r\n \"hostNames\": [\r\n \"www.teja-test.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-10-27T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-04-27T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"12450C0F722C6BDF7D73EF6D0D1E041FBF1D8CA5\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.teja-test.com\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL0IzRjQxNUE5QjZFM0VDNzk2ODJCRjZFQzVDOUFEMDZCMUE1MjgxQjQtdGVzdGFzcHRvZDEwOS1BU0V0ZXN0MTA5YXBwc2VFYXN0VVN3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "947c2c40-09a0-4fc7-b0bb-440a7b097cf1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "01e35999-62da-476d-a294-fad9dd0db5c2"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-correlation-request-id": [
+ "2845d2b5-fdce-4b7e-a960-076caeb8cd3c"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T113227Z:2845d2b5-fdce-4b7e-a960-076caeb8cd3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:32:27 GMT"
+ ],
+ "Content-Length": [
+ "1140"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"ECC\",\r\n \"hostNames\": [\r\n \"ECC\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"ECC\",\r\n \"issueDate\": \"2020-11-18T11:25:30+05:30\",\r\n \"expirationDate\": \"2021-11-13T11:25:30+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z?api-version=2020-06-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3Rhc3B0b2QxMDktdGVzdGt2aW16LXRlc3RjZXJ0MjgxMHo/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
@@ -1172,7 +1591,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5598b1f2-af3b-4b61-bce8-f03a5a0dda5b"
+ "1c3e5f88-8daf-48a1-bb7c-732252522d34"
],
"Accept-Language": [
"en-US"
@@ -1195,7 +1614,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eff3e002-b455-436a-9a8e-6dbb1f7f14f5"
+ "677b06f1-5da4-40b1-8581-6a23858d85ff"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1207,22 +1626,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11965"
],
"x-ms-correlation-request-id": [
- "40f26208-977e-4de2-bde5-e5dd82f9bf45"
+ "72f1c701-1a69-4f71-8be8-7b2764f0b1fa"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132722Z:40f26208-977e-4de2-bde5-e5dd82f9bf45"
+ "SOUTHINDIA:20201118T113228Z:72f1c701-1a69-4f71-8be8-7b2764f0b1fa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:21 GMT"
+ "Wed, 18 Nov 2020 11:32:28 GMT"
],
"Content-Length": [
- "1239"
+ "1102"
],
"Content-Type": [
"application/json"
@@ -1231,7 +1650,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1241,7 +1660,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5cf3470b-b0b0-4549-a04d-491533f07806"
+ "092ac29b-0279-4210-ba9d-7725c6c1e1c0"
],
"Accept-Language": [
"en-US"
@@ -1264,7 +1683,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a8fd3703-2176-4a82-a1a0-e917cf5348fd"
+ "0dd46890-d3cf-45a5-ac94-5ccec9b5aebf"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1276,22 +1695,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11964"
],
"x-ms-correlation-request-id": [
- "73d02d7b-3290-431a-a1d8-00b9df1df3a1"
+ "dfdd23d6-40d4-4cab-ad08-2e3467e7ff7c"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132723Z:73d02d7b-3290-431a-a1d8-00b9df1df3a1"
+ "SOUTHINDIA:20201118T113228Z:dfdd23d6-40d4-4cab-ad08-2e3467e7ff7c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:22 GMT"
+ "Wed, 18 Nov 2020 11:32:28 GMT"
],
"Content-Length": [
- "1218"
+ "1078"
],
"Content-Type": [
"application/json"
@@ -1300,7 +1719,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1310,7 +1729,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f72c7903-5624-43bb-97aa-ff9d7e82ad62"
+ "63085682-eaea-4f33-bb42-2d05ca7d4f0f"
],
"Accept-Language": [
"en-US"
@@ -1333,7 +1752,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f4d6b629-949b-46ab-8a65-c2b6dabde70e"
+ "7c7d2379-2488-4d9d-bed7-a8b9b26d48fd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1345,19 +1764,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11963"
],
"x-ms-correlation-request-id": [
- "3880abdc-b245-4f5e-a24f-4c2f6997ef9e"
+ "4684e927-477e-42d0-b2a4-0a0b2079c8b3"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132723Z:3880abdc-b245-4f5e-a24f-4c2f6997ef9e"
+ "SOUTHINDIA:20201118T113229Z:4684e927-477e-42d0-b2a4-0a0b2079c8b3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:22 GMT"
+ "Wed, 18 Nov 2020 11:32:29 GMT"
],
"Content-Length": [
"840"
@@ -1379,7 +1798,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "52fce9c8-3c68-4402-8560-474c5f8256da"
+ "5f58531e-2c25-4f44-bf07-e1d2508b78b6"
],
"Accept-Language": [
"en-US"
@@ -1402,7 +1821,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b541cd9d-b3a0-4ae2-ab91-024262f870c2"
+ "338a2a71-ca53-47c6-9168-f70602381956"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1414,19 +1833,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11962"
],
"x-ms-correlation-request-id": [
- "00fd00c9-67cf-4552-bc89-4409afc449b0"
+ "b3e6e935-f6da-43e0-bdc2-994d561df534"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201116T132723Z:00fd00c9-67cf-4552-bc89-4409afc449b0"
+ "SOUTHINDIA:20201118T113229Z:b3e6e935-f6da-43e0-bdc2-994d561df534"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 16 Nov 2020 13:27:22 GMT"
+ "Wed, 18 Nov 2020 11:32:29 GMT"
],
"Content-Length": [
"831"
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
index 7383bf53a791..1110f3ab8853 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
@@ -77,6 +77,7 @@ public override void ExecuteCmdlet()
var certificate = new Certificate(
webApp.Location,
+ type: "Microsoft.Web/certificates",
canonicalName: HostName,
password: "",
serverFarmId: webApp.ServerFarmId);
@@ -96,14 +97,26 @@ public override void ExecuteCmdlet()
throw;
}
}
- //Delay the execution by 5 seconds so that the Certificate will created post it return 'Accepted' status
- Thread.Sleep(15000);
- var certs = WebsitesClient.ListCertificates().ToList();
- createdCertdetails = certs.Where(c => c.Name == HostName).SingleOrDefault();
+ //Try to get the certificate post the create call return 'Accepted' status
+ if (createdCertdetails == null)
+ for (; ; )
+ {
+ try
+ {
+ createdCertdetails = WebsitesClient.GetCertificate(ResourceGroupName, HostName);
+ break;
+ }
+ catch (DefaultErrorResponseException e)
+ {
+ //if 'NotFound' lets retry for every 5 seconds to get the certificate
+ if (e.Response.StatusCode == HttpStatusCode.NotFound)
+ Thread.Sleep(5000);
+ }
+ }
//Add only when user is opted for Binding
if (AddBinding)
{
-
+
WebsitesClient.UpdateHostNameSslState(ResourceGroupName,
WebAppName,
Slot,
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
index a8449496088c..d3112de7d9c1 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
@@ -30,65 +30,71 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
public class RemoveAzureWebAppCertificate : WebAppBaseClientCmdLet
{
const string ParameterSet1Name = "S1";
+ const string ParameterSet2Name = "S2";
[Parameter(ParameterSetName = ParameterSet1Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
+ [Parameter(ParameterSetName = ParameterSet2Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
[ResourceGroupCompleter]
[ValidateNotNullOrEmpty]
public string ResourceGroupName { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space.")]
+ [Parameter(ParameterSetName = ParameterSet2Name, Position = 3, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space.")]
+ [ValidateNotNullOrEmpty]
+ public string ThumbPrint { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet2Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")]
[ResourceNameCompleter("Microsoft.Web/sites", "ResourceGroupName")]
[ValidateNotNullOrEmpty]
public string WebAppName { get; set; }
[Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
+ [Parameter(ParameterSetName = ParameterSet2Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
[ResourceNameCompleter("Microsoft.Web/sites/slots", "ResourceGroupName", "WebAppName")]
[ValidateNotNullOrEmpty]
public string Slot { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
+ [Parameter(ParameterSetName = ParameterSet2Name, Position = 3, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
[ValidateNotNullOrEmpty]
public string HostName { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space.")]
- [ValidateNotNullOrEmpty]
- public string ThumbPrint { get; set; }
public override void ExecuteCmdlet()
{
- if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
+ PSSite webapp = null;
+ string certificateResourceGroup = null;
+ switch (ParameterSetName)
{
- if (this.ShouldProcess(this.HostName, string.Format("Deleting certificate - '{0}' from Web Application - {1}", this.HostName, this.WebAppName)))
- {
- var webapp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, Slot));
+ case ParameterSet1Name:
+ certificateResourceGroup = ResourceGroupName;
+ break;
+ case ParameterSet2Name:
+ webapp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, Slot));
var hostNameSslStates = CmdletHelpers.GetHostNameSslStatesFromSiteResponse(webapp, HostName).ToList();
if (hostNameSslStates.Count > 0)
{
WebsitesClient.UpdateHostNameSslState(ResourceGroupName, WebAppName, Slot, webapp.Location, HostName, SslState.Disabled, null);
}
- var certificateResourceGroup = CmdletHelpers.GetResourceGroupFromResourceId(webapp.ServerFarmId);
- var certificates = CmdletHelpers.GetCertificates(this.ResourcesClient, this.WebsitesClient, certificateResourceGroup, ThumbPrint);
- if (certificates.Length > 0)
+ certificateResourceGroup = CmdletHelpers.GetResourceGroupFromResourceId(webapp.ServerFarmId);
+ break;
+ }
+
+ var certificates = CmdletHelpers.GetCertificates(this.ResourcesClient, this.WebsitesClient, certificateResourceGroup, ThumbPrint);
+ if (certificates.Length > 0)
+ {
+ if (this.ShouldProcess(this.WebAppName, string.Format($"Removing an App service managed certificate for Web App '{WebAppName}'")))
+ {
+ var certName = !string.IsNullOrEmpty(HostName) ? HostName : certificates[0].Name;
+ try
{
- if (this.ShouldProcess(this.WebAppName, string.Format($"Removing an App service managed certificate for Web App '{WebAppName}'")))
- {
- var certName = !string.IsNullOrEmpty(HostName) ? HostName : certificates[0].Name;
- try
- {
- WebsitesClient.RemoveCertificate(certificateResourceGroup, certName);
- }
- catch (DefaultErrorResponseException e)
- {
- // This exception is thrown when certificate already exists. Let's swallow it and continue.
- if (e.Response.StatusCode != HttpStatusCode.Conflict)
- {
- throw;
- }
- }
- }
+ WebsitesClient.RemoveCertificate(certificateResourceGroup, certName);
+ }
+ catch (DefaultErrorResponseException)
+ {
+ throw;
}
-
}
}
+
}
}
}
diff --git a/src/Websites/Websites/help/New-AzWebAppCertificate.md b/src/Websites/Websites/help/New-AzWebAppCertificate.md
index b05fb0cf06ac..9130b27fafcf 100644
--- a/src/Websites/Websites/help/New-AzWebAppCertificate.md
+++ b/src/Websites/Websites/help/New-AzWebAppCertificate.md
@@ -31,6 +31,13 @@ This command create an App Service Managed Certificate for the given WebApp
### Example 2
```powershell
+PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Slot "test" -AddCertBinding
+```
+
+This command create an App Service Managed Certificate and binds to the given WebApp Slot.
+
+### Example 3
+```powershell
PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -AddCertBinding
```
diff --git a/src/Websites/Websites/help/Remove-AzWebAppCertificate.md b/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
index a6746c0d0609..8b2fc72e6186 100644
--- a/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
+++ b/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
@@ -24,11 +24,18 @@ The **Remove-AzWebAppCertificate** cmdlet creates an Azure App Service Managed C
### Example 1
```powershell
-PS C:\>Remove-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"
+PS C:\>Remove-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"
```
This command removes App Service Managed certificate for the given web app.
+### Example 2
+```powershell
+PS C:\>Remove-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"
+```
+
+This command removes SSL Binding and App Service Managed certificate for the given web app.
+
## PARAMETERS
### -DefaultProfile
From 38799333b3ea96a6f7f5c73ce9d3b9501aa2f099 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Wed, 18 Nov 2020 17:26:44 +0530
Subject: [PATCH 07/13] Modified tests are rerecorded
---
.../ScenarioTests/CertificatesTests.ps1 | 2 +-
.../TestNewAzWebAppCertificate.json | 271 ++++--
.../TestNewAzWebAppCertificateForSlot.json | 385 ++++----
...tNewAzWebAppCertificateWithSSLBinding.json | 866 ++++++++++++------
.../TestRemoveAzWebAppCertificate.json | 466 ++++------
5 files changed, 1136 insertions(+), 854 deletions(-)
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
index 0a075c4c4869..ad3336e16cea 100644
--- a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
@@ -85,7 +85,7 @@ function Test-NewAzWebAppCertificateForSlot
$rgname = "lketmtestantps10"
$appname = "lketmtestantps10"
$slot = "testslot"
- $slotHostname = "www.managedcerts.net"
+ $slotHostname = "testslot.adorenow.net"
$thumbprint=""
try{
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
index 8909d994ab00..3e7eea924d69 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b088146e-9997-417d-b26e-72d55ba78042"
+ "566b4b41-593f-4102-b5f0-d70e83fb258b"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9AD6EBD000\""
+ "\"1D6BDA12512920B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "953b6743-e008-4ee2-bb54-5af8bae45378"
+ "258c8e24-15b5-4707-9522-b00bf2ee7725"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11993"
],
"x-ms-correlation-request-id": [
- "66b851a1-286b-4012-ad27-66d9b061ce81"
+ "781cf1a0-8453-41e4-92d8-64c3275ac026"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113255Z:66b851a1-286b-4012-ad27-66d9b061ce81"
+ "SOUTHINDIA:20201118T115434Z:781cf1a0-8453-41e4-92d8-64c3275ac026"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:54 GMT"
+ "Wed, 18 Nov 2020 11:54:33 GMT"
],
"Content-Length": [
- "5532"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e4af256a-387b-4441-8106-7faf52d84d43"
+ "71a53198-6f7b-46d7-9b7e-0d072bb8856f"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9AD6EBD000\""
+ "\"1D6BDA12512920B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cbf3fcc9-77a1-4994-8099-d7272917e3f0"
+ "9ed848fb-d87b-41f6-aa55-bb01b00ffad2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11990"
],
"x-ms-correlation-request-id": [
- "703210d1-97e4-4694-9a1e-d098f8930168"
+ "008f83a7-50a7-4427-866b-28119f0edc7e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113303Z:703210d1-97e4-4694-9a1e-d098f8930168"
+ "SOUTHINDIA:20201118T115439Z:008f83a7-50a7-4427-866b-28119f0edc7e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:02 GMT"
+ "Wed, 18 Nov 2020 11:54:39 GMT"
],
"Content-Length": [
- "5532"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "731c678c-ffa9-4157-bd63-4c770b3f6aee"
+ "ab38c20c-c63d-4d3b-b5bf-3616500cf6ad"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7438d36f-a34f-4a5d-a500-48b1a1532fb5"
+ "a054e5f8-b481-4c9b-b357-8e5988ad69b9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,19 +186,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11992"
],
"x-ms-correlation-request-id": [
- "463911b9-9cae-4585-be45-31acfd084c9e"
+ "779b2e30-0b6e-4f9b-b3c1-5cf3400c44f9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113256Z:463911b9-9cae-4585-be45-31acfd084c9e"
+ "SOUTHINDIA:20201118T115435Z:779b2e30-0b6e-4f9b-b3c1-5cf3400c44f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:55 GMT"
+ "Wed, 18 Nov 2020 11:54:34 GMT"
],
"Content-Length": [
"4103"
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c44dfb6-b3ff-41cb-98c6-579091a07062"
+ "bf31547a-0ac5-4776-b2d5-6f2b80ae4133"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4de97f76-09da-4534-a3f8-060ef2696b26"
+ "ca7385ce-e7de-45a0-91f0-91b8454b1218"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,19 +255,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11989"
],
"x-ms-correlation-request-id": [
- "2d4b8ae7-266b-49dd-a1d4-36fecc60cdcc"
+ "ebd086d2-8c45-4717-b065-dd90a64f4498"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113304Z:2d4b8ae7-266b-49dd-a1d4-36fecc60cdcc"
+ "SOUTHINDIA:20201118T115440Z:ebd086d2-8c45-4717-b065-dd90a64f4498"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:03 GMT"
+ "Wed, 18 Nov 2020 11:54:39 GMT"
],
"Content-Length": [
"4103"
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78b4fa52-68b5-41fe-9ccd-e8c3780dd65b"
+ "18ead3a0-6b53-4571-b0e4-9fddbfec12d5"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "79b74399-ec38-43be-bf4d-4e0911b26f7b"
+ "0a01c69c-3555-4306-8102-98bcdcec26b1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -324,19 +324,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
+ "11993"
],
"x-ms-correlation-request-id": [
- "657522c3-7cb0-4b5a-bcd6-59a34bb2a85a"
+ "eb554ad1-7ecd-428d-8c6b-6087c3778d32"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113257Z:657522c3-7cb0-4b5a-bcd6-59a34bb2a85a"
+ "SOUTHINDIA:20201118T115436Z:eb554ad1-7ecd-428d-8c6b-6087c3778d32"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:56 GMT"
+ "Wed, 18 Nov 2020 11:54:35 GMT"
],
"Content-Length": [
"740"
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a8028254-0565-40a7-ba45-68cab305251b"
+ "8814f398-4b0f-400a-8c06-98d6d9b5acfd"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c787ee7d-fc2c-4f07-b313-8b4f8403f396"
+ "edd1d893-a42a-4bf8-a62d-f7f80964059b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -393,19 +393,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
+ "11990"
],
"x-ms-correlation-request-id": [
- "19e402d7-4235-4c91-b527-59ebd2ebdac7"
+ "62a3a95a-ff6c-4abb-92f5-a73186901993"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113305Z:19e402d7-4235-4c91-b527-59ebd2ebdac7"
+ "SOUTHINDIA:20201118T115440Z:62a3a95a-ff6c-4abb-92f5-a73186901993"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:04 GMT"
+ "Wed, 18 Nov 2020 11:54:40 GMT"
],
"Content-Length": [
"740"
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "19e5ad4d-ff93-43b2-bc67-59bf7db36f94"
+ "e5dbd5c7-cde7-4b30-8ae6-6e69af04d862"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "46b05ea7-393d-4e8b-9793-92da70f9dae9"
+ "215d99f2-953e-42e0-aff7-8c6e96aa69c3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -462,19 +462,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11998"
+ "11992"
],
"x-ms-correlation-request-id": [
- "c6931c46-de63-41f2-837e-15bcd346675b"
+ "d9b9a2e3-7eba-4fcf-b79e-35581bf29441"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113300Z:c6931c46-de63-41f2-837e-15bcd346675b"
+ "SOUTHINDIA:20201118T115437Z:d9b9a2e3-7eba-4fcf-b79e-35581bf29441"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:59 GMT"
+ "Wed, 18 Nov 2020 11:54:36 GMT"
],
"Content-Length": [
"290"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8d9568a5-f918-4a4f-9bcd-dcc6abbd2ebf"
+ "8114a78d-bf7b-49ac-9fd2-e841037ef43d"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "381aee2d-95b9-466e-be55-ce0447356549"
+ "b944fc26-c470-4743-8da4-9b4f65e07a25"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -531,19 +531,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11989"
],
"x-ms-correlation-request-id": [
- "8976ee84-aaee-431f-8bc5-6e15014b95a1"
+ "7b1fabf8-8956-4f58-adc9-111134ae0f6e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113306Z:8976ee84-aaee-431f-8bc5-6e15014b95a1"
+ "SOUTHINDIA:20201118T115441Z:7b1fabf8-8956-4f58-adc9-111134ae0f6e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:05 GMT"
+ "Wed, 18 Nov 2020 11:54:40 GMT"
],
"Content-Length": [
"290"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5bc2c8ff-fba8-4ca3-8128-64cc72aed4bb"
+ "a1eddaf5-c00d-4e96-ae45-daa588d7c556"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1ea83107-64b4-4d24-98a9-e1e5bdfb6afa"
+ "444462b9-0665-48d9-a6d6-35e2fbd2b6b5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -600,19 +600,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11997"
+ "11991"
],
"x-ms-correlation-request-id": [
- "439abae2-07ca-4eb6-a2c8-9636915c286f"
+ "20c64fb4-fec7-46b5-8d5e-52bd3a6a8082"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113301Z:439abae2-07ca-4eb6-a2c8-9636915c286f"
+ "SOUTHINDIA:20201118T115437Z:20c64fb4-fec7-46b5-8d5e-52bd3a6a8082"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:00 GMT"
+ "Wed, 18 Nov 2020 11:54:36 GMT"
],
"Content-Length": [
"287"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "711880f9-f38a-4e0c-8617-e2c400619bd5"
+ "f33a748e-3219-4706-9b0a-9851ba92a497"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9e90dada-1946-4a3b-9dc4-8f938a5c83cc"
+ "391d8ebe-44d8-4558-a97c-9d2c7d7d0630"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -669,19 +669,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11988"
],
"x-ms-correlation-request-id": [
- "d53d81a1-3da9-4872-9280-f3a7fde5892a"
+ "0d63c7ed-3731-45de-96d7-1ced24806e5e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113308Z:d53d81a1-3da9-4872-9280-f3a7fde5892a"
+ "SOUTHINDIA:20201118T115442Z:0d63c7ed-3731-45de-96d7-1ced24806e5e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:08 GMT"
+ "Wed, 18 Nov 2020 11:54:41 GMT"
],
"Content-Length": [
"287"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12467538-422c-433c-9104-ae86036f5482"
+ "320facb0-d9c5-4b80-934a-447bb456d779"
],
"Accept-Language": [
"en-US"
@@ -732,7 +732,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e23a62fe-494d-4725-83ec-bae545d5bed9"
+ "0d767477-6043-45cd-842c-21fbc353cb0d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -744,19 +744,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "ef8d3e94-c032-4ade-b516-5a5dad82480f"
+ "a2b0665a-9e16-439a-a236-01cc916e24f4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113302Z:ef8d3e94-c032-4ade-b516-5a5dad82480f"
+ "SOUTHINDIA:20201118T115438Z:a2b0665a-9e16-439a-a236-01cc916e24f4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:01 GMT"
+ "Wed, 18 Nov 2020 11:54:37 GMT"
],
"Content-Length": [
"905"
@@ -768,7 +768,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -778,7 +778,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2c30a59-ad26-41ab-8914-12c83e008e0a"
+ "61e40860-1619-47ed-98ae-52888ef87583"
],
"Accept-Language": [
"en-US"
@@ -801,7 +801,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ec0ab470-2dea-421e-8e22-b87c21fedf63"
+ "111cf2af-9329-4766-90ed-83ecda91fdf3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -813,19 +813,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11991"
],
"x-ms-correlation-request-id": [
- "f7939a4a-453d-491f-933b-27159bbb6b18"
+ "d13013e5-45c5-4ebb-bd0c-a50d22f8022a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113302Z:f7939a4a-453d-491f-933b-27159bbb6b18"
+ "SOUTHINDIA:20201118T115439Z:d13013e5-45c5-4ebb-bd0c-a50d22f8022a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:01 GMT"
+ "Wed, 18 Nov 2020 11:54:38 GMT"
],
"Content-Length": [
"905"
@@ -837,7 +837,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -847,7 +847,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f84a1e6-e872-4b53-bc85-a351fa5f620e"
+ "f053e599-b60c-4d86-89c7-252389a2b1ac"
],
"Accept-Language": [
"en-US"
@@ -870,7 +870,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "04544e2e-04c7-4109-a844-6ba510a29e5e"
+ "af259415-a52a-4651-a5e3-67dc1e818b27"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -882,19 +882,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11987"
],
"x-ms-correlation-request-id": [
- "970ddcc4-bca9-4443-8754-d92cc2eccda5"
+ "4f6a1a75-7d25-40c4-82fb-27be5bea7225"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113309Z:970ddcc4-bca9-4443-8754-d92cc2eccda5"
+ "SOUTHINDIA:20201118T115443Z:4f6a1a75-7d25-40c4-82fb-27be5bea7225"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:09 GMT"
+ "Wed, 18 Nov 2020 11:54:42 GMT"
],
"Content-Length": [
"905"
@@ -906,7 +906,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -916,7 +916,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c8ca3e6-81dc-4229-86f6-38f45d5bff74"
+ "6cad80da-a7c5-4336-a892-23a735310710"
],
"Accept-Language": [
"en-US"
@@ -936,16 +936,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11990"
],
"x-ms-request-id": [
- "7cb07b7f-17fb-48f4-b9b5-9a6f78298356"
+ "60d0572c-5932-4625-928c-e943748a9957"
],
"x-ms-correlation-request-id": [
- "7cb07b7f-17fb-48f4-b9b5-9a6f78298356"
+ "60d0572c-5932-4625-928c-e943748a9957"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113308Z:7cb07b7f-17fb-48f4-b9b5-9a6f78298356"
+ "SOUTHINDIA:20201118T115442Z:60d0572c-5932-4625-928c-e943748a9957"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -954,7 +954,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:08 GMT"
+ "Wed, 18 Nov 2020 11:54:41 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -963,10 +963,79 @@
"-1"
],
"Content-Length": [
- "243"
+ "485"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "fb0f028d-b026-4ce7-af98-f8bbdcd4290e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a92a2c0f-c3cc-496d-bc3d-ea30b9b7b227"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb3e7b1f-15e9-4833-acb2-8ff91d850ec5"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T115442Z:bb3e7b1f-15e9-4833-acb2-8ff91d850ec5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:54:42 GMT"
+ ],
+ "Content-Length": [
+ "930"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -976,7 +1045,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9b49d7eb-f197-4c06-bc3b-c3fc66c3ef20"
+ "709baf40-bc91-4831-800b-99b3b17a1b20"
],
"Accept-Language": [
"en-US"
@@ -999,7 +1068,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "de0754be-029c-4d70-a02e-9deefab01285"
+ "c7a5fd69-81f7-4d33-be47-be3b4241f207"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1011,19 +1080,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "601247fd-096e-4881-9e05-65e7c3153c0b"
+ "bc447a83-f2bd-441b-98ac-53da688312b2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113315Z:601247fd-096e-4881-9e05-65e7c3153c0b"
+ "SOUTHINDIA:20201118T115449Z:bc447a83-f2bd-441b-98ac-53da688312b2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:15 GMT"
+ "Wed, 18 Nov 2020 11:54:48 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
index 6a20c2f78182..ba069a67241b 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17f9af52-3ec7-465a-8bc6-8ed4817096b2"
+ "60feb1dc-cc38-4cb8-b03a-dae84de5c67b"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD8E48365155\""
+ "\"1D6BDA0EA87E580\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "da842273-e63e-4636-8f49-71b27b7c7364"
+ "e0a189e4-5ecc-4df2-8935-179c23c0b16c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11999"
],
"x-ms-correlation-request-id": [
- "e1e6292d-2b76-4a6d-90ae-8a813da0fd2c"
+ "e7b1de4b-6073-42e1-8fad-429320c2a48d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113236Z:e1e6292d-2b76-4a6d-90ae-8a813da0fd2c"
+ "SOUTHINDIA:20201118T115356Z:e7b1de4b-6073-42e1-8fad-429320c2a48d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:35 GMT"
+ "Wed, 18 Nov 2020 11:53:55 GMT"
],
"Content-Length": [
- "5929"
+ "5667"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\",\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"www.managedcerts.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"www.managedcerts.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T09:36:24.8533333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:49:48.12\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40c56077-8799-41bd-a4f7-f222d432bdb3"
+ "801659c9-5637-4620-8c6d-7ca7b1b7a584"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD8E48365155\""
+ "\"1D6BDA0EA87E580\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f18323b1-1476-43ee-b393-e633bf9bd0a5"
+ "a6ca2ba7-b03a-4816-910d-b0ec1c457f56"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11993"
],
"x-ms-correlation-request-id": [
- "c99d0ebc-3238-40a0-ada6-e72aae262119"
+ "022a95d6-5784-4b70-a86d-9478d1da14e4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113241Z:c99d0ebc-3238-40a0-ada6-e72aae262119"
+ "SOUTHINDIA:20201118T115426Z:022a95d6-5784-4b70-a86d-9478d1da14e4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:40 GMT"
+ "Wed, 18 Nov 2020 11:54:25 GMT"
],
"Content-Length": [
- "5929"
+ "5667"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\",\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"www.managedcerts.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"www.managedcerts.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T09:36:24.8533333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:49:48.12\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8045c214-9b11-4095-9e81-3b265c0b91c1"
+ "a831501e-3fc4-44cc-bfa8-55260a920b04"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "58163376-fb69-496d-8a1b-be1a377c2780"
+ "99f4605b-c245-402d-87f7-61be33e66982"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,19 +186,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11998"
],
"x-ms-correlation-request-id": [
- "85e6ce99-9a4f-459b-8180-685eb98fd961"
+ "0efc607d-f04c-4c0b-98cf-daa4215cbbf6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113237Z:85e6ce99-9a4f-459b-8180-685eb98fd961"
+ "SOUTHINDIA:20201118T115356Z:0efc607d-f04c-4c0b-98cf-daa4215cbbf6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:36 GMT"
+ "Wed, 18 Nov 2020 11:53:56 GMT"
],
"Content-Length": [
"3638"
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0a5830f-1e73-4864-ba2b-a5953e8d9814"
+ "24ceb553-f50e-4571-8cc6-ef5a207eaa22"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bc745789-aaea-45a4-830c-c16ae161cc8f"
+ "f3731cb2-9743-4339-a15f-88f5bcd3fefd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,19 +255,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11992"
],
"x-ms-correlation-request-id": [
- "eaba113d-7fb4-4d15-9d44-7881e2f42994"
+ "21ce68ec-1f33-4292-a7e6-ca23b9bf6ad3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113242Z:eaba113d-7fb4-4d15-9d44-7881e2f42994"
+ "SOUTHINDIA:20201118T115426Z:21ce68ec-1f33-4292-a7e6-ca23b9bf6ad3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:41 GMT"
+ "Wed, 18 Nov 2020 11:54:25 GMT"
],
"Content-Length": [
"3638"
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4132eb5b-531b-439a-8714-b3c059a24daf"
+ "c3aa26ff-1f99-42a8-bf50-5e7ad343a77a"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "785abbe0-3068-48b4-a5ff-cae228eb4317"
+ "07e96bc2-a5a0-4673-8e2a-ce9fe508ceeb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -324,19 +324,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11993"
+ "11999"
],
"x-ms-correlation-request-id": [
- "86b6a5d7-eaa7-4f4d-ba4b-0e05ea599b3d"
+ "674f033d-5b33-4261-81fd-8f31f1dff222"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113237Z:86b6a5d7-eaa7-4f4d-ba4b-0e05ea599b3d"
+ "SOUTHINDIA:20201118T115357Z:674f033d-5b33-4261-81fd-8f31f1dff222"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:37 GMT"
+ "Wed, 18 Nov 2020 11:53:57 GMT"
],
"Content-Length": [
"755"
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1136a6b8-5f3e-4c77-b02c-640229907021"
+ "acef4267-bf61-416f-a44b-6165ff0c5521"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e98b7d3e-db59-44c0-b8fb-743acc296858"
+ "d466b099-c92a-4e46-9fc7-7b7931de6a21"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -393,19 +393,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11990"
+ "11996"
],
"x-ms-correlation-request-id": [
- "74c4c1f9-8875-42a1-a5f0-d32f51798e06"
+ "711906b7-c4d4-47c6-9219-5eba09c00bd2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113242Z:74c4c1f9-8875-42a1-a5f0-d32f51798e06"
+ "SOUTHINDIA:20201118T115426Z:711906b7-c4d4-47c6-9219-5eba09c00bd2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:41 GMT"
+ "Wed, 18 Nov 2020 11:54:26 GMT"
],
"Content-Length": [
"755"
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aeafc07d-3d78-4d46-9f06-e0cc73da8f03"
+ "e2fa40d0-b7be-41e8-b206-913f1587c3a6"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "519483ab-8d18-47a0-b677-dc2f23c5147d"
+ "8e7dce7b-4502-446a-b4b8-efd7160cc83e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -462,19 +462,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11992"
+ "11998"
],
"x-ms-correlation-request-id": [
- "5a0113f6-6d5d-4cf8-8ae5-77c16ee81fca"
+ "f83ffd8e-01b0-40c6-82ae-4b2d1075c7eb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113238Z:5a0113f6-6d5d-4cf8-8ae5-77c16ee81fca"
+ "SOUTHINDIA:20201118T115358Z:f83ffd8e-01b0-40c6-82ae-4b2d1075c7eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:37 GMT"
+ "Wed, 18 Nov 2020 11:53:57 GMT"
],
"Content-Length": [
"305"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a0567fc-0e60-4ea5-9fb3-670440374d01"
+ "fbc64152-801b-4525-a27b-c82dfa46b128"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bf840b71-bde5-4af9-8a87-a7529d080dc3"
+ "a8473ff4-67b5-4925-b7d8-28f3de3ba1c3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -531,19 +531,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11989"
+ "11995"
],
"x-ms-correlation-request-id": [
- "2b1eb750-2dfb-4516-8e34-54d760998618"
+ "768880d3-df2b-42ce-9932-0ffa5e14d215"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113243Z:2b1eb750-2dfb-4516-8e34-54d760998618"
+ "SOUTHINDIA:20201118T115427Z:768880d3-df2b-42ce-9932-0ffa5e14d215"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:42 GMT"
+ "Wed, 18 Nov 2020 11:54:26 GMT"
],
"Content-Length": [
"305"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1cd2457f-87c4-4903-a6db-5e2c523e0734"
+ "f0e12ffa-67d4-43f3-8fe2-fd9263fdf77a"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9d025b12-33fe-4bcd-82bc-0ad8c125f0a0"
+ "36a4db8a-26e0-4002-9373-292ba4d3fcd4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -600,19 +600,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11991"
+ "11997"
],
"x-ms-correlation-request-id": [
- "cd40628c-56b4-429d-8710-50afec80e2b6"
+ "5780bf19-1512-408e-9fea-b0f6d95bf011"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113239Z:cd40628c-56b4-429d-8710-50afec80e2b6"
+ "SOUTHINDIA:20201118T115358Z:5780bf19-1512-408e-9fea-b0f6d95bf011"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:38 GMT"
+ "Wed, 18 Nov 2020 11:53:58 GMT"
],
"Content-Length": [
"302"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96b77ebb-424d-4e54-a8de-ae9ffb012fdf"
+ "db481d58-8d64-408d-9901-44f9f2726883"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a70b5fa2-cb2c-4aca-b48d-6832f889e003"
+ "d430969b-3f85-406f-822e-317327f096b0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -669,19 +669,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11988"
+ "11994"
],
"x-ms-correlation-request-id": [
- "322d1ee0-1974-41b4-8bc7-f8223c90aa62"
+ "2d299b1e-9e83-47cd-9f45-d4efb48369ef"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113243Z:322d1ee0-1974-41b4-8bc7-f8223c90aa62"
+ "SOUTHINDIA:20201118T115427Z:2d299b1e-9e83-47cd-9f45-d4efb48369ef"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:42 GMT"
+ "Wed, 18 Nov 2020 11:54:27 GMT"
],
"Content-Length": [
"302"
@@ -697,13 +697,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.managedcerts.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"testslot.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c47b73fc-851c-4d4d-80cc-1c010ca6d5bd"
+ "35b88b2d-4c45-4c95-82b4-c74cd593f54c"
],
"Accept-Language": [
"en-US"
@@ -718,7 +718,7 @@
"application/json; charset=utf-8"
],
"Content-Length": [
- "287"
+ "288"
]
},
"ResponseHeaders": {
@@ -728,12 +728,15 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net/operationresults/08eb41fc-99c5-440a-88e7-e572dc6324e8?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "f429d344-31ff-4d8c-8320-e759959d7d07"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -744,41 +747,41 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "b2905249-344b-4ddb-a61d-661fddd12041"
],
"x-ms-correlation-request-id": [
- "7fd93407-82c9-4f32-8527-005330801fce"
+ "b2905249-344b-4ddb-a61d-661fddd12041"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113240Z:7fd93407-82c9-4f32-8527-005330801fce"
+ "SOUTHINDIA:20201118T115407Z:b2905249-344b-4ddb-a61d-661fddd12041"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:39 GMT"
- ],
- "Content-Length": [
- "923"
- ],
- "Content-Type": [
- "application/json"
+ "Wed, 18 Nov 2020 11:54:07 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ffa33178-24f2-4db6-bd5c-2e7c3e1f4f6f"
+ "91e83f6b-e8ae-4d3f-a7d8-d9cf57a632e6"
],
"Accept-Language": [
"en-US"
@@ -800,9 +803,6 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "14bbc5bf-0a05-4461-952d-e443d4a4cb80"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -813,41 +813,44 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "9d66e3ca-aacd-41ed-9c94-ec505da1642d"
],
"x-ms-correlation-request-id": [
- "292ee857-d386-4885-a86d-a0eeb0204ce3"
+ "9d66e3ca-aacd-41ed-9c94-ec505da1642d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113240Z:292ee857-d386-4885-a86d-a0eeb0204ce3"
+ "SOUTHINDIA:20201118T115408Z:9d66e3ca-aacd-41ed-9c94-ec505da1642d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:39 GMT"
+ "Wed, 18 Nov 2020 11:54:07 GMT"
],
"Content-Length": [
- "923"
+ "455"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0050ba5d-259f-49f5-b6d5-ad01368c17bc"
+ "bbc67be7-5418-4674-9d00-1fb419b82d27"
],
"Accept-Language": [
"en-US"
@@ -869,9 +872,6 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "3062d2c7-8d36-4a5a-85ea-96d074b27e11"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -882,41 +882,44 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "27f191ba-e4ef-4478-bc35-730a3058865f"
],
"x-ms-correlation-request-id": [
- "d4885599-8587-4611-992f-825e7998a583"
+ "27f191ba-e4ef-4478-bc35-730a3058865f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113245Z:d4885599-8587-4611-992f-825e7998a583"
+ "SOUTHINDIA:20201118T115413Z:27f191ba-e4ef-4478-bc35-730a3058865f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:44 GMT"
+ "Wed, 18 Nov 2020 11:54:13 GMT"
],
"Content-Length": [
- "923"
+ "455"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "295519b4-8120-4a0d-9dc7-7e6de38be711"
+ "4cdb562b-a270-4b7d-92e1-9849c5edb7a8"
],
"Accept-Language": [
"en-US"
@@ -925,7 +928,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
]
},
"ResponseHeaders": {
@@ -935,48 +938,57 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11995"
],
"x-ms-request-id": [
- "01a6211e-6c19-4764-9f9b-2f61d5098e52"
+ "db5937c5-6871-4b4e-94df-c8d1438cb6c5"
],
"x-ms-correlation-request-id": [
- "01a6211e-6c19-4764-9f9b-2f61d5098e52"
+ "db5937c5-6871-4b4e-94df-c8d1438cb6c5"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113244Z:01a6211e-6c19-4764-9f9b-2f61d5098e52"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "SOUTHINDIA:20201118T115419Z:db5937c5-6871-4b4e-94df-c8d1438cb6c5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:43 GMT"
+ "Wed, 18 Nov 2020 11:54:19 GMT"
+ ],
+ "Content-Length": [
+ "455"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "483"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bbc2f4d2-57fc-4292-b41c-6efbe8725b38"
+ "2a5cca5a-4781-435a-8df8-f4539df38ac7"
],
"Accept-Language": [
"en-US"
@@ -999,7 +1011,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f646103d-8418-4efe-83c1-d03cef08a558"
+ "1e9b5437-44cf-432a-acb9-41840b9c0ade"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1011,22 +1023,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11994"
],
"x-ms-correlation-request-id": [
- "04f08aca-10cd-4ac4-a142-376e7a13e6a5"
+ "114bba57-cb65-4831-abc1-2eebe7bce992"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113244Z:04f08aca-10cd-4ac4-a142-376e7a13e6a5"
+ "SOUTHINDIA:20201118T115425Z:114bba57-cb65-4831-abc1-2eebe7bce992"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:43 GMT"
+ "Wed, 18 Nov 2020 11:54:24 GMT"
],
"Content-Length": [
- "905"
+ "930"
],
"Content-Type": [
"application/json"
@@ -1035,17 +1047,77 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c68c70de-76f8-499c-a4bc-eaf2d417f2ac"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-request-id": [
+ "873db81f-c159-45b4-92ad-68af52a104e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "873db81f-c159-45b4-92ad-68af52a104e1"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T115428Z:873db81f-c159-45b4-92ad-68af52a104e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:54:27 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "243"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bcef81e4-e6e9-4cfd-9fb9-96841a1bbc20"
+ "bd8215d3-dc25-4be6-8842-7e594d8e6e32"
],
"Accept-Language": [
"en-US"
@@ -1068,7 +1140,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c9e0345e-6075-4a2b-9eaa-74e1dde5fe7d"
+ "51622826-d19b-4c2c-93a9-1b145363bf65"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1079,29 +1151,32 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
],
"x-ms-correlation-request-id": [
- "41df6be9-8486-4d88-b7f9-c34661b75da3"
+ "965b3b91-0cb6-48a9-bae3-0cfce615aedf"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113251Z:41df6be9-8486-4d88-b7f9-c34661b75da3"
+ "SOUTHINDIA:20201118T115428Z:965b3b91-0cb6-48a9-bae3-0cfce615aedf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:51 GMT"
+ "Wed, 18 Nov 2020 11:54:28 GMT"
+ ],
+ "Content-Length": [
+ "905"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
index 499d97b25f4b..54af6197a9c5 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d87a12a-90bf-4260-8522-2e312761950d"
+ "38544cc6-a7a8-4740-90f4-afcdb2352872"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9AD6EBD000\""
+ "\"1D6BDA12512920B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1d060478-e3b4-46d8-adfe-ce5ea9f1e37d"
+ "ba837194-a222-4777-837c-8ce6e1c7f0df"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11995"
],
"x-ms-correlation-request-id": [
- "65a20895-84e9-496e-b8f1-8935637ca168"
+ "279b7cf9-93cf-41f8-859c-63bd23c7c1b2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113320Z:65a20895-84e9-496e-b8f1-8935637ca168"
+ "SOUTHINDIA:20201118T115455Z:279b7cf9-93cf-41f8-859c-63bd23c7c1b2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:20 GMT"
+ "Wed, 18 Nov 2020 11:54:54 GMT"
],
"Content-Length": [
- "5532"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d285bed9-f24d-4757-aed6-4e8062a39133"
+ "d1b4cfd5-0bfb-428a-9905-292d2149b627"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9AD6EBD000\""
+ "\"1D6BDA12512920B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "610a6249-6eb9-44fd-bf90-2d7f2c362fcd"
+ "9bd335d3-88f6-4eb2-a1dc-c0273b27edba"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11988"
],
"x-ms-correlation-request-id": [
- "5eeb0066-daec-477b-9e1a-a7682a3904e6"
+ "a8c6b9b2-4df0-44b2-8888-eb949b2b160f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113345Z:5eeb0066-daec-477b-9e1a-a7682a3904e6"
+ "SOUTHINDIA:20201118T115529Z:a8c6b9b2-4df0-44b2-8888-eb949b2b160f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:45 GMT"
+ "Wed, 18 Nov 2020 11:55:29 GMT"
],
"Content-Length": [
- "5532"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b84c32d9-5dbb-410c-ac24-33943d04f3b2"
+ "977aa130-5956-4e7d-9bcf-8faccf605021"
],
"Accept-Language": [
"en-US"
@@ -171,13 +171,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9EAFF41620\""
+ "\"1D6BDA1B8D59E00\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2919a43a-b0c5-4554-b5c2-b5c802de4116"
+ "7e64eb59-c2e0-44e2-bd96-65a9119a6361"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,19 +189,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11986"
],
"x-ms-correlation-request-id": [
- "7f399e94-7212-43a4-a6e0-dacabb279ba3"
+ "6efc4394-1344-4cb1-81ad-fce045f9d5da"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113354Z:7f399e94-7212-43a4-a6e0-dacabb279ba3"
+ "SOUTHINDIA:20201118T115537Z:6efc4394-1344-4cb1-81ad-fce045f9d5da"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:53 GMT"
+ "Wed, 18 Nov 2020 11:55:36 GMT"
],
"Content-Length": [
"5572"
@@ -213,7 +213,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -223,7 +223,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8acc2e08-bf39-4203-aa72-bbf8ee273c9b"
+ "43c02961-bfd8-4aed-b7c0-992270e82757"
],
"Accept-Language": [
"en-US"
@@ -243,13 +243,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9EAFF41620\""
+ "\"1D6BDA1B8D59E00\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ccb2a321-84a6-46a2-b382-1b5218b860f3"
+ "2c98d8cd-d7bb-4b1b-bf1c-3881a80932c6"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -261,19 +261,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11984"
],
"x-ms-correlation-request-id": [
- "2558a172-294e-4dcc-a8c9-1c94025b8fd1"
+ "ce4e5cc9-ca33-4a02-8af5-bc31c17d7255"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113358Z:2558a172-294e-4dcc-a8c9-1c94025b8fd1"
+ "SOUTHINDIA:20201118T115541Z:ce4e5cc9-ca33-4a02-8af5-bc31c17d7255"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:58 GMT"
+ "Wed, 18 Nov 2020 11:55:41 GMT"
],
"Content-Length": [
"5572"
@@ -285,7 +285,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -295,7 +295,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6033ba5f-e7bb-487a-b32b-9d78745a2df2"
+ "55d5ce55-3dd2-47ad-bf61-bbe2907f8535"
],
"Accept-Language": [
"en-US"
@@ -315,13 +315,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9EAFF41620\""
+ "\"1D6BDA1B8D59E00\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "304ebce0-d8c1-4797-ba30-3025814a0a96"
+ "7b22dc9a-2c6f-4b22-bc5a-18ef30916cd1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -333,19 +333,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11982"
],
"x-ms-correlation-request-id": [
- "bc49f99a-b9c3-4716-b0cd-de989d99a07d"
+ "5e46277a-0b3c-4214-9e42-ecd28b5b2e83"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113401Z:bc49f99a-b9c3-4716-b0cd-de989d99a07d"
+ "SOUTHINDIA:20201118T115545Z:5e46277a-0b3c-4214-9e42-ecd28b5b2e83"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:01 GMT"
+ "Wed, 18 Nov 2020 11:55:44 GMT"
],
"Content-Length": [
"5572"
@@ -357,7 +357,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -367,7 +367,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ec74de7e-fd76-4e91-b6ec-8fb7dc480f73"
+ "f78393b3-8b27-43f7-8c04-6060b4bd0f3a"
],
"Accept-Language": [
"en-US"
@@ -387,13 +387,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9EAFF41620\""
+ "\"1D6BDA1B8D59E00\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2c7a3e88-ebb3-47e6-ad6a-24635b43c9a4"
+ "d94fc005-95d7-4025-a1ee-ff553a6149ee"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -405,19 +405,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11980"
],
"x-ms-correlation-request-id": [
- "409aeebf-471f-45ee-a0f6-52aaf79bb787"
+ "36514c26-0648-4c2c-b23d-ad44b2c75436"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113404Z:409aeebf-471f-45ee-a0f6-52aaf79bb787"
+ "SOUTHINDIA:20201118T115548Z:36514c26-0648-4c2c-b23d-ad44b2c75436"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:04 GMT"
+ "Wed, 18 Nov 2020 11:55:47 GMT"
],
"Content-Length": [
"5572"
@@ -429,7 +429,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -439,7 +439,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "68c27d83-1aff-4ed0-bc0c-b9373d11b116"
+ "1c6c3df3-0ee6-46f9-9a46-aa7218a81529"
],
"Accept-Language": [
"en-US"
@@ -459,13 +459,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9EBADDF880\""
+ "\"1D6BDA1C36A8F95\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "09ca786d-95e5-4e5f-a489-f4447308983b"
+ "205f3e0d-c6f9-42e7-8e62-db62e2028999"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -480,19 +480,19 @@
"11976"
],
"x-ms-correlation-request-id": [
- "6ffe3754-2194-492e-83bb-53b9b5bb6290"
+ "af2d13b8-7247-4c54-964a-4c86374c9322"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113416Z:6ffe3754-2194-492e-83bb-53b9b5bb6290"
+ "SOUTHINDIA:20201118T115600Z:af2d13b8-7247-4c54-964a-4c86374c9322"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:16 GMT"
+ "Wed, 18 Nov 2020 11:56:00 GMT"
],
"Content-Length": [
- "5532"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -501,7 +501,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:34:09.16\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:51.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -511,7 +511,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdba3fd0-fd7f-4ef5-ab59-dbc9b07600e3"
+ "784bd374-43e6-4757-a2d4-e0b4b2703d30"
],
"Accept-Language": [
"en-US"
@@ -534,7 +534,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fed39193-6bc9-4bbf-8b64-2e0dd6e4966a"
+ "05335a42-ed3e-48e7-97d4-bca7e6fa71ce"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -546,19 +546,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11994"
],
"x-ms-correlation-request-id": [
- "7d98116c-3006-4c3a-9c4a-a9514e623976"
+ "215072bf-db3f-4caa-ade0-9389434bace4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113321Z:7d98116c-3006-4c3a-9c4a-a9514e623976"
+ "SOUTHINDIA:20201118T115456Z:215072bf-db3f-4caa-ade0-9389434bace4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:20 GMT"
+ "Wed, 18 Nov 2020 11:54:55 GMT"
],
"Content-Length": [
"4103"
@@ -580,7 +580,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91347148-7f02-47fc-a6cc-2b0288c2d79b"
+ "82f937ca-d397-4e34-af27-0e90fd821d9d"
],
"Accept-Language": [
"en-US"
@@ -603,7 +603,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ef1ebc22-703c-4587-b35d-1e3719b318fd"
+ "1e372de3-e955-4275-a976-9009a82746f5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -615,19 +615,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11987"
],
"x-ms-correlation-request-id": [
- "b84b9bd9-e080-46b6-af64-26434d90e156"
+ "fb1ac926-ce62-4ffc-ac23-76b1b5e3930a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113346Z:b84b9bd9-e080-46b6-af64-26434d90e156"
+ "SOUTHINDIA:20201118T115530Z:fb1ac926-ce62-4ffc-ac23-76b1b5e3930a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:45 GMT"
+ "Wed, 18 Nov 2020 11:55:30 GMT"
],
"Content-Length": [
"4103"
@@ -649,7 +649,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "eaa9427d-b10d-4133-89ed-391c80eb3b19"
+ "06fa1834-3363-45a8-923e-1ebea2dfcd0f"
],
"Accept-Language": [
"en-US"
@@ -672,7 +672,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "16cc1918-07f9-4688-8f77-fe5a8c35df8c"
+ "37dbeee4-6451-4019-8b64-bd0ef368d03c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -684,19 +684,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11985"
],
"x-ms-correlation-request-id": [
- "9176bd13-7056-44e3-b320-c3e196111ae0"
+ "304118dc-c356-41a2-9c22-d4778b930e3a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113355Z:9176bd13-7056-44e3-b320-c3e196111ae0"
+ "SOUTHINDIA:20201118T115538Z:304118dc-c356-41a2-9c22-d4778b930e3a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:54 GMT"
+ "Wed, 18 Nov 2020 11:55:37 GMT"
],
"Content-Length": [
"4103"
@@ -718,7 +718,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96a5b363-b597-4772-8044-9aa862840a5f"
+ "68db8b32-cc0d-4a12-99a5-79c768f6a968"
],
"Accept-Language": [
"en-US"
@@ -741,7 +741,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7b5f8f2e-8b8d-42a9-ae53-9ced3e4869ca"
+ "cd429611-ddd6-4bfa-bf01-e6a23b4cfc90"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -753,19 +753,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11983"
],
"x-ms-correlation-request-id": [
- "4f03a134-3940-4d3e-a1c1-cb3e15dc4372"
+ "3d23b153-6e7a-4783-a6ad-fc77fbfec820"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113358Z:4f03a134-3940-4d3e-a1c1-cb3e15dc4372"
+ "SOUTHINDIA:20201118T115542Z:3d23b153-6e7a-4783-a6ad-fc77fbfec820"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:58 GMT"
+ "Wed, 18 Nov 2020 11:55:41 GMT"
],
"Content-Length": [
"4103"
@@ -787,7 +787,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c89e035c-f6f9-4773-aaef-e059508cb09b"
+ "1ac0e695-1194-4ccc-bd4d-3eecb91cb8f3"
],
"Accept-Language": [
"en-US"
@@ -810,7 +810,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3652e4db-87a1-48bb-ac9b-22ac1880466a"
+ "a198ad16-c44d-4b76-a776-a390199b7a9a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -822,19 +822,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11981"
],
"x-ms-correlation-request-id": [
- "09f48149-cf74-478a-ba63-c9088afe54c3"
+ "61a83d83-95ba-4e8a-aea7-7bd5b9ffb0ce"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113401Z:09f48149-cf74-478a-ba63-c9088afe54c3"
+ "SOUTHINDIA:20201118T115545Z:61a83d83-95ba-4e8a-aea7-7bd5b9ffb0ce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:01 GMT"
+ "Wed, 18 Nov 2020 11:55:45 GMT"
],
"Content-Length": [
"4103"
@@ -856,7 +856,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "482b0a83-8098-4cfa-a84e-45b076718bac"
+ "f663fbef-f047-4489-927a-aab3e9f5ff34"
],
"Accept-Language": [
"en-US"
@@ -879,7 +879,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7bce62f3-7edc-4382-936b-6eb4d9cdc004"
+ "8c7866ac-0080-4951-ac44-2899ca0c2376"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -891,19 +891,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11979"
],
"x-ms-correlation-request-id": [
- "c21e66fc-25f5-435b-84ba-95bd5a63af6b"
+ "f73355fb-6356-4cf7-9fd1-18b2cc8cad73"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113405Z:c21e66fc-25f5-435b-84ba-95bd5a63af6b"
+ "SOUTHINDIA:20201118T115548Z:f73355fb-6356-4cf7-9fd1-18b2cc8cad73"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:04 GMT"
+ "Wed, 18 Nov 2020 11:55:48 GMT"
],
"Content-Length": [
"4103"
@@ -925,7 +925,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "72160996-7306-4f01-aa01-90c1f36f041b"
+ "6e77ba12-222f-4032-bc25-8402d3011889"
],
"Accept-Language": [
"en-US"
@@ -948,7 +948,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7f7e9b2f-acc2-49df-a9d3-daff71d7b352"
+ "f75e6dc9-0af5-4b01-aadd-3c4a48b90fdf"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -963,16 +963,16 @@
"11975"
],
"x-ms-correlation-request-id": [
- "b4942b09-bd9d-46b4-886d-8b5928ada401"
+ "f6732418-4142-4be9-909f-f3729bb32a5e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113417Z:b4942b09-bd9d-46b4-886d-8b5928ada401"
+ "SOUTHINDIA:20201118T115601Z:f6732418-4142-4be9-909f-f3729bb32a5e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:16 GMT"
+ "Wed, 18 Nov 2020 11:56:00 GMT"
],
"Content-Length": [
"4103"
@@ -994,7 +994,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8941e39c-dc79-4665-b00c-92f9361afb0f"
+ "0d870bf4-e5c8-42db-ac34-51c3ba66c917"
],
"Accept-Language": [
"en-US"
@@ -1017,7 +1017,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87f5740b-3d3b-4b40-b671-da9f81f0d771"
+ "7ca551b1-1c46-46c2-ad53-46e028f07ea5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1029,19 +1029,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11993"
+ "11999"
],
"x-ms-correlation-request-id": [
- "94337fa1-b2c5-4572-9740-2caffd64c5bd"
+ "a3cc5e0f-2a3c-411e-ae1c-67634eddf2c8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113322Z:94337fa1-b2c5-4572-9740-2caffd64c5bd"
+ "SOUTHINDIA:20201118T115457Z:a3cc5e0f-2a3c-411e-ae1c-67634eddf2c8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:21 GMT"
+ "Wed, 18 Nov 2020 11:54:56 GMT"
],
"Content-Length": [
"740"
@@ -1063,7 +1063,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f295c61e-0f24-42af-a5bf-5cb90ed3a3ad"
+ "15fb8a00-3911-4be2-ab10-81c36e346c75"
],
"Accept-Language": [
"en-US"
@@ -1086,7 +1086,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "89146886-ebd6-453e-bf10-7b6c2eab6735"
+ "e3b020b6-dee0-4e44-b0a1-525b0d2397ae"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1098,19 +1098,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11990"
+ "11996"
],
"x-ms-correlation-request-id": [
- "f23a7fef-b7d1-4176-aa52-30ad0bb517dc"
+ "11e2474b-f2ec-40db-8151-bb248658ef78"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113346Z:f23a7fef-b7d1-4176-aa52-30ad0bb517dc"
+ "SOUTHINDIA:20201118T115530Z:11e2474b-f2ec-40db-8151-bb248658ef78"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:46 GMT"
+ "Wed, 18 Nov 2020 11:55:30 GMT"
],
"Content-Length": [
"740"
@@ -1132,7 +1132,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8b05ea9-26db-4616-a95d-0e17338c89ee"
+ "6d317933-aa18-417a-9522-ec3e4f8310c7"
],
"Accept-Language": [
"en-US"
@@ -1155,7 +1155,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7ee4caa1-bc20-4193-9b19-b348233f0b33"
+ "014dc612-664e-414f-9531-90297b2a3674"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1167,19 +1167,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11987"
+ "11993"
],
"x-ms-correlation-request-id": [
- "8f1828d3-ee18-4de8-a1c3-fe06f56969ea"
+ "0d80e97f-f95a-470a-96e9-bb021b86e0aa"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113355Z:8f1828d3-ee18-4de8-a1c3-fe06f56969ea"
+ "SOUTHINDIA:20201118T115539Z:0d80e97f-f95a-470a-96e9-bb021b86e0aa"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:54 GMT"
+ "Wed, 18 Nov 2020 11:55:38 GMT"
],
"Content-Length": [
"740"
@@ -1201,7 +1201,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98e09c57-865c-4669-adcd-72faba865e1a"
+ "cbee6484-2d11-4300-851c-04d987af82fb"
],
"Accept-Language": [
"en-US"
@@ -1224,7 +1224,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "228aa066-1127-42f2-b35a-9079f59cc006"
+ "571bb889-1c0c-44c3-a9eb-1915d4aa8d41"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1236,19 +1236,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11984"
+ "11990"
],
"x-ms-correlation-request-id": [
- "694db9b3-7b55-4d79-88b2-92e6c981d4e5"
+ "ce9e271a-826f-401d-af95-173a5c96f962"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113359Z:694db9b3-7b55-4d79-88b2-92e6c981d4e5"
+ "SOUTHINDIA:20201118T115542Z:ce9e271a-826f-401d-af95-173a5c96f962"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:59 GMT"
+ "Wed, 18 Nov 2020 11:55:42 GMT"
],
"Content-Length": [
"740"
@@ -1270,7 +1270,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "573a4959-40b1-4eb7-9355-43fb6fdd07bd"
+ "f9399648-8d2c-4b99-ad8a-5cc1a5830e96"
],
"Accept-Language": [
"en-US"
@@ -1293,7 +1293,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "645ccb69-6362-4df9-94ab-f6cb4a18d8b9"
+ "2067cf69-a847-4d17-8363-3427432e1888"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1305,19 +1305,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11981"
+ "11987"
],
"x-ms-correlation-request-id": [
- "24993471-2225-4bc4-b265-af8cc8ca3a5e"
+ "70c67815-eb4e-4919-9897-cf2e6d4f34d8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113402Z:24993471-2225-4bc4-b265-af8cc8ca3a5e"
+ "SOUTHINDIA:20201118T115546Z:70c67815-eb4e-4919-9897-cf2e6d4f34d8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:02 GMT"
+ "Wed, 18 Nov 2020 11:55:45 GMT"
],
"Content-Length": [
"740"
@@ -1339,7 +1339,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e6d16e1-22c5-4823-a4e7-5bbee4f43447"
+ "22d8e598-f55f-4c9a-bcdb-9d319cd806c5"
],
"Accept-Language": [
"en-US"
@@ -1362,7 +1362,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7f6042c-7705-4c48-ba96-36147739acd7"
+ "6aad22de-af77-429d-956b-fccaa114dfc5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1374,19 +1374,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11978"
+ "11984"
],
"x-ms-correlation-request-id": [
- "77d96516-74f6-49ec-9567-aa27051b4933"
+ "fc7dcd7b-b3e1-4d3e-8c69-1724cb2920b4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113405Z:77d96516-74f6-49ec-9567-aa27051b4933"
+ "SOUTHINDIA:20201118T115549Z:fc7dcd7b-b3e1-4d3e-8c69-1724cb2920b4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:05 GMT"
+ "Wed, 18 Nov 2020 11:55:48 GMT"
],
"Content-Length": [
"740"
@@ -1408,7 +1408,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b178b0a8-4bc2-493a-8b77-674b5234d74c"
+ "256b4ac6-b720-4773-9878-9b3b4c841d7a"
],
"Accept-Language": [
"en-US"
@@ -1431,7 +1431,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e5230134-f047-4065-a573-dd6c90cd7bf3"
+ "6a117c66-5890-4334-87f1-27029b73cd47"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1443,19 +1443,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11975"
+ "11981"
],
"x-ms-correlation-request-id": [
- "949b8296-ea3a-446c-b520-b0b1f18d6bc2"
+ "18188d2b-e616-4f4e-a5af-f16ed4c2545e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113417Z:949b8296-ea3a-446c-b520-b0b1f18d6bc2"
+ "SOUTHINDIA:20201118T115601Z:18188d2b-e616-4f4e-a5af-f16ed4c2545e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:17 GMT"
+ "Wed, 18 Nov 2020 11:56:01 GMT"
],
"Content-Length": [
"740"
@@ -1477,7 +1477,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9f59b8b5-b224-4808-bedd-f2be31682b4d"
+ "353948c6-24a6-40a4-b330-65f2f5d73149"
],
"Accept-Language": [
"en-US"
@@ -1500,7 +1500,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "922b8334-7b9a-4593-816e-9773a65abd0f"
+ "32062633-65e1-4979-89cf-6af0ef0dd500"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1512,19 +1512,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11992"
+ "11998"
],
"x-ms-correlation-request-id": [
- "de7af905-0671-493f-ac1d-dbee75466f42"
+ "016c86ff-6571-4c76-bc3a-b159fe469fce"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113323Z:de7af905-0671-493f-ac1d-dbee75466f42"
+ "SOUTHINDIA:20201118T115457Z:016c86ff-6571-4c76-bc3a-b159fe469fce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:22 GMT"
+ "Wed, 18 Nov 2020 11:54:56 GMT"
],
"Content-Length": [
"290"
@@ -1546,7 +1546,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "186698af-61e6-4942-89aa-2461b5529df2"
+ "e163134f-ff13-45dc-8781-fea880d53e22"
],
"Accept-Language": [
"en-US"
@@ -1569,7 +1569,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0cf239c7-5835-4cb8-803c-811c7d5b7667"
+ "9be8d36f-3147-4f2e-8e0c-82a58f50b2f8"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1581,19 +1581,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11989"
+ "11995"
],
"x-ms-correlation-request-id": [
- "fb716a5c-19a5-419a-8d76-441ddeeca0db"
+ "c7cb150f-47df-47f9-8eff-d0543002cc68"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113347Z:fb716a5c-19a5-419a-8d76-441ddeeca0db"
+ "SOUTHINDIA:20201118T115531Z:c7cb150f-47df-47f9-8eff-d0543002cc68"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:46 GMT"
+ "Wed, 18 Nov 2020 11:55:31 GMT"
],
"Content-Length": [
"290"
@@ -1615,7 +1615,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e7bc94b9-61aa-4143-bbf8-8fe9ac22ee44"
+ "2ce4b916-9b6f-4be5-8440-26408b5ab193"
],
"Accept-Language": [
"en-US"
@@ -1638,7 +1638,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a33d567-1b77-47c4-bb73-f3496f228b6f"
+ "069cdb09-dbec-45ec-a856-60e0d9618bb2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1650,19 +1650,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11986"
+ "11992"
],
"x-ms-correlation-request-id": [
- "0d310d58-d7da-43be-9ee4-50ee7bae6f87"
+ "65c238c2-9958-4893-9646-076b19163bff"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113356Z:0d310d58-d7da-43be-9ee4-50ee7bae6f87"
+ "SOUTHINDIA:20201118T115540Z:65c238c2-9958-4893-9646-076b19163bff"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:55 GMT"
+ "Wed, 18 Nov 2020 11:55:39 GMT"
],
"Content-Length": [
"290"
@@ -1684,7 +1684,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2e3a9361-67a9-4246-b617-c84271fbe048"
+ "f57cabbe-f02f-4dc3-9609-6624954a7b71"
],
"Accept-Language": [
"en-US"
@@ -1707,7 +1707,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6f355720-448a-4995-87af-08af11a95b8b"
+ "8c76cf2d-5397-49f0-8afc-6b518cd68d40"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1719,19 +1719,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11983"
+ "11989"
],
"x-ms-correlation-request-id": [
- "a86402db-279c-4a84-9e97-695fcc3f5f87"
+ "b5235f82-c82d-4133-bbd5-04a59c0de0ce"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113359Z:a86402db-279c-4a84-9e97-695fcc3f5f87"
+ "SOUTHINDIA:20201118T115543Z:b5235f82-c82d-4133-bbd5-04a59c0de0ce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:59 GMT"
+ "Wed, 18 Nov 2020 11:55:42 GMT"
],
"Content-Length": [
"290"
@@ -1753,7 +1753,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a7f53569-f7e2-4737-bd91-818021345892"
+ "d3e5a610-4203-47ff-affd-c4bb012731c0"
],
"Accept-Language": [
"en-US"
@@ -1776,7 +1776,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1be1e0cd-7604-4bcf-b09e-09bd8d867643"
+ "06665e5a-f730-4a17-aa75-29dbcc890b42"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1788,19 +1788,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11980"
+ "11986"
],
"x-ms-correlation-request-id": [
- "f16d9910-f05b-4547-9823-61b45677ff43"
+ "ca04839a-2f8d-49b1-88ed-ce2366e16ee0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113402Z:f16d9910-f05b-4547-9823-61b45677ff43"
+ "SOUTHINDIA:20201118T115547Z:ca04839a-2f8d-49b1-88ed-ce2366e16ee0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:02 GMT"
+ "Wed, 18 Nov 2020 11:55:46 GMT"
],
"Content-Length": [
"290"
@@ -1822,7 +1822,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "636ab6af-27e4-4d7b-8512-73e38599c374"
+ "40e38c91-03ee-46cd-bfc7-646c5bb98c9c"
],
"Accept-Language": [
"en-US"
@@ -1845,7 +1845,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "61feb93f-f9b8-4e01-bc62-96adc0416b32"
+ "95584df6-6c58-4ed5-b1e6-f7ea71582a6b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1857,19 +1857,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11977"
+ "11983"
],
"x-ms-correlation-request-id": [
- "a6a9c699-550f-41fe-b9c4-0edc75b1e2c9"
+ "1fbd34f1-5b99-4807-9f6b-5670526475ed"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113406Z:a6a9c699-550f-41fe-b9c4-0edc75b1e2c9"
+ "SOUTHINDIA:20201118T115550Z:1fbd34f1-5b99-4807-9f6b-5670526475ed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:05 GMT"
+ "Wed, 18 Nov 2020 11:55:49 GMT"
],
"Content-Length": [
"290"
@@ -1891,7 +1891,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b0cb423-d471-470e-8b0a-24c956fb4751"
+ "67bef060-fe89-44f5-9f0e-0e1643ce7967"
],
"Accept-Language": [
"en-US"
@@ -1914,7 +1914,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b024c652-896c-418f-94b7-b2c35b9acfdd"
+ "1206b403-cb1d-4d92-bb23-bcab71e7f458"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1926,19 +1926,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11974"
+ "11980"
],
"x-ms-correlation-request-id": [
- "343197a5-d0a6-4d10-bffa-e78e4b24a767"
+ "a2d40a6c-5fdb-4157-ae47-851e1bc29c51"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113417Z:343197a5-d0a6-4d10-bffa-e78e4b24a767"
+ "SOUTHINDIA:20201118T115602Z:a2d40a6c-5fdb-4157-ae47-851e1bc29c51"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:17 GMT"
+ "Wed, 18 Nov 2020 11:56:01 GMT"
],
"Content-Length": [
"290"
@@ -1960,7 +1960,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1d8e51d6-aef7-4072-9e3d-33be09bad4db"
+ "d7de2f64-7d7f-40b5-8ea4-82e01701b21a"
],
"Accept-Language": [
"en-US"
@@ -1983,7 +1983,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ffe400f-d5f1-43b3-973c-8c86e7dfa74f"
+ "cc3fee04-1ba0-4e6f-adaf-a3b3ebf4c496"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1995,19 +1995,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11991"
+ "11997"
],
"x-ms-correlation-request-id": [
- "51d00284-aef8-42f4-96f3-089affc7c94e"
+ "a6b51903-a362-4e82-aec5-07522361cf5d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113323Z:51d00284-aef8-42f4-96f3-089affc7c94e"
+ "SOUTHINDIA:20201118T115458Z:a6b51903-a362-4e82-aec5-07522361cf5d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:23 GMT"
+ "Wed, 18 Nov 2020 11:54:57 GMT"
],
"Content-Length": [
"287"
@@ -2029,7 +2029,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "aa3bf41f-b25a-4b31-b760-2ba49fe5198f"
+ "032f3bfb-ba20-4176-8558-f54fd31a168c"
],
"Accept-Language": [
"en-US"
@@ -2052,7 +2052,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c0fb0ba2-0131-48c4-b527-f27cf39304e4"
+ "37157e97-fcdf-4ff3-bf0c-dec95b4bdc36"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2064,19 +2064,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11988"
+ "11994"
],
"x-ms-correlation-request-id": [
- "a1166001-fff2-42e9-89ff-d3129cd8c54a"
+ "317eb905-29ec-41a9-9d3a-64b2e54e9815"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113348Z:a1166001-fff2-42e9-89ff-d3129cd8c54a"
+ "SOUTHINDIA:20201118T115532Z:317eb905-29ec-41a9-9d3a-64b2e54e9815"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:47 GMT"
+ "Wed, 18 Nov 2020 11:55:31 GMT"
],
"Content-Length": [
"287"
@@ -2098,7 +2098,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "533e083a-8fb3-483a-977c-e7a6116065d8"
+ "3499fbdc-46e3-47df-9009-ec68831c9a9a"
],
"Accept-Language": [
"en-US"
@@ -2121,7 +2121,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "03feabe2-9784-41d8-8fe1-3ff1befc3f79"
+ "dfbe623e-7a5a-49d3-aab9-82742de1a341"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2133,19 +2133,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11985"
+ "11991"
],
"x-ms-correlation-request-id": [
- "8ac717c4-d4e4-4f0f-a803-9e823f9bed69"
+ "77c1f3d6-bcdd-4912-97b0-5f21259407d9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113357Z:8ac717c4-d4e4-4f0f-a803-9e823f9bed69"
+ "SOUTHINDIA:20201118T115540Z:77c1f3d6-bcdd-4912-97b0-5f21259407d9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:56 GMT"
+ "Wed, 18 Nov 2020 11:55:40 GMT"
],
"Content-Length": [
"287"
@@ -2167,7 +2167,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55fcf268-600a-431b-80b0-15c0b9f3c918"
+ "83a99cf7-752a-4ec2-aed7-207d7c957cef"
],
"Accept-Language": [
"en-US"
@@ -2190,7 +2190,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1cae1c7c-e00b-4344-9e79-e893044464f0"
+ "7111229b-e95e-4c5e-9fbd-011f94212f54"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2202,19 +2202,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11982"
+ "11988"
],
"x-ms-correlation-request-id": [
- "50161ede-66ad-458c-a9d0-6feed6a104af"
+ "784d9b72-0d26-4a43-9b98-ef5b3aaf64ab"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113400Z:50161ede-66ad-458c-a9d0-6feed6a104af"
+ "SOUTHINDIA:20201118T115544Z:784d9b72-0d26-4a43-9b98-ef5b3aaf64ab"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:00 GMT"
+ "Wed, 18 Nov 2020 11:55:43 GMT"
],
"Content-Length": [
"287"
@@ -2236,7 +2236,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "693e08c5-a3c4-48fa-b6de-d68b49bae88e"
+ "c2470b0f-8448-4d58-b10b-9bd8ad034eeb"
],
"Accept-Language": [
"en-US"
@@ -2259,7 +2259,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b83a9b81-ae54-4077-9c17-e9f0788f1796"
+ "72e55aa3-42f7-4fcf-a662-c0d2854b16f9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2271,19 +2271,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11979"
+ "11985"
],
"x-ms-correlation-request-id": [
- "99098ab9-156b-471a-9361-f6a15e05af7c"
+ "1d0d6bce-ea9b-44a4-9205-5ac6c8f9fb1d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113403Z:99098ab9-156b-471a-9361-f6a15e05af7c"
+ "SOUTHINDIA:20201118T115547Z:1d0d6bce-ea9b-44a4-9205-5ac6c8f9fb1d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:03 GMT"
+ "Wed, 18 Nov 2020 11:55:47 GMT"
],
"Content-Length": [
"287"
@@ -2305,7 +2305,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ed3ea98-4b28-4e9c-9f03-cd3202ea99cb"
+ "dd1d760c-11bb-47df-8cbf-1abbcd47ccf0"
],
"Accept-Language": [
"en-US"
@@ -2328,7 +2328,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "29e8b2f2-6e06-4c49-9831-4c08769c8e09"
+ "1210e14f-b888-4f96-9ae8-707e65db3000"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2340,19 +2340,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11976"
+ "11982"
],
"x-ms-correlation-request-id": [
- "3c5d0794-6bf6-43bd-b645-8cf6bc5ac86a"
+ "2f254df9-e8fd-43f9-bd89-b0db8455fe7f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113407Z:3c5d0794-6bf6-43bd-b645-8cf6bc5ac86a"
+ "SOUTHINDIA:20201118T115550Z:2f254df9-e8fd-43f9-bd89-b0db8455fe7f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:07 GMT"
+ "Wed, 18 Nov 2020 11:55:50 GMT"
],
"Content-Length": [
"287"
@@ -2374,7 +2374,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "706b2da6-f83a-4d89-a006-5987a50d1327"
+ "9ddbfe61-c0ff-4708-b56f-6ba5ce4614b7"
],
"Accept-Language": [
"en-US"
@@ -2397,7 +2397,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2584cb8f-2b16-4340-9004-f1f6c25ae417"
+ "06d2c0f2-7283-4aa0-8ee1-aa83c31c01d2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2409,19 +2409,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11973"
+ "11979"
],
"x-ms-correlation-request-id": [
- "4a7062f7-457c-46f0-8db0-5ca5db754a71"
+ "fc5008b3-6cb7-477b-be67-5d3f50438323"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113418Z:4a7062f7-457c-46f0-8db0-5ca5db754a71"
+ "SOUTHINDIA:20201118T115602Z:fc5008b3-6cb7-477b-be67-5d3f50438323"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:18 GMT"
+ "Wed, 18 Nov 2020 11:56:02 GMT"
],
"Content-Length": [
"287"
@@ -2443,7 +2443,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "47eb1444-a888-49ce-833c-8fd60a36c63a"
+ "d02e0465-55d9-4408-8d55-2894800381c0"
],
"Accept-Language": [
"en-US"
@@ -2469,7 +2469,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/0adcee99-81b1-4e75-a441-eb16cf055ae6?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/c85d6ab4-72f3-4245-9df4-98313e7c54ee?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -2487,22 +2487,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "cd65b646-9bcf-4c21-a7f3-ebe31afd1d7c"
+ "21ad1769-803c-4704-b26d-19da29701a23"
],
"x-ms-correlation-request-id": [
- "cd65b646-9bcf-4c21-a7f3-ebe31afd1d7c"
+ "21ad1769-803c-4704-b26d-19da29701a23"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113333Z:cd65b646-9bcf-4c21-a7f3-ebe31afd1d7c"
+ "SOUTHINDIA:20201118T115505Z:21ad1769-803c-4704-b26d-19da29701a23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:32 GMT"
+ "Wed, 18 Nov 2020 11:55:05 GMT"
],
"Expires": [
"-1"
@@ -2521,7 +2521,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f4885ede-ce91-4f73-882b-38f98a4d0e10"
+ "9f75b287-bd9d-4d7a-a745-5498857f08a7"
],
"Accept-Language": [
"en-US"
@@ -2553,22 +2553,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11993"
],
"x-ms-request-id": [
- "aa6a62e1-e777-4444-bfec-f42c10686a66"
+ "d8ad5b19-f087-4e09-a9e6-b1d40c35f7be"
],
"x-ms-correlation-request-id": [
- "aa6a62e1-e777-4444-bfec-f42c10686a66"
+ "d8ad5b19-f087-4e09-a9e6-b1d40c35f7be"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113334Z:aa6a62e1-e777-4444-bfec-f42c10686a66"
+ "SOUTHINDIA:20201118T115506Z:d8ad5b19-f087-4e09-a9e6-b1d40c35f7be"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:33 GMT"
+ "Wed, 18 Nov 2020 11:55:06 GMT"
],
"Content-Length": [
"435"
@@ -2590,7 +2590,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ef0f9e88-b397-45e1-b5e5-298f0ca353fb"
+ "582c5bd7-ea7f-411c-8b81-ee18749a47cc"
],
"Accept-Language": [
"en-US"
@@ -2622,22 +2622,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11992"
],
"x-ms-request-id": [
- "f08be47b-d6f6-4e4d-b8df-4ec5f45260d8"
+ "1aceca3e-d00f-426f-a0e9-3de3ea13eceb"
],
"x-ms-correlation-request-id": [
- "f08be47b-d6f6-4e4d-b8df-4ec5f45260d8"
+ "1aceca3e-d00f-426f-a0e9-3de3ea13eceb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113339Z:f08be47b-d6f6-4e4d-b8df-4ec5f45260d8"
+ "SOUTHINDIA:20201118T115512Z:1aceca3e-d00f-426f-a0e9-3de3ea13eceb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:38 GMT"
+ "Wed, 18 Nov 2020 11:55:12 GMT"
],
"Content-Length": [
"435"
@@ -2659,7 +2659,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7f06475f-d208-4386-95b1-0ca7033374ff"
+ "2f859633-f366-4dca-87f5-0513d32409ed"
],
"Accept-Language": [
"en-US"
@@ -2681,8 +2681,74 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
"x-ms-request-id": [
- "1e29e0af-ddb0-46d7-affa-7c9d8e823aeb"
+ "840d4a29-4204-4cf3-b296-7a523dd0c4ba"
+ ],
+ "x-ms-correlation-request-id": [
+ "840d4a29-4204-4cf3-b296-7a523dd0c4ba"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T115517Z:840d4a29-4204-4cf3-b296-7a523dd0c4ba"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:55:17 GMT"
+ ],
+ "Content-Length": [
+ "435"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1b66392c-0fb2-46d4-aa52-12fe7fc344af"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2694,19 +2760,91 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "8b7a4a26-8a4c-4833-b4eb-91e5c94a3111"
],
"x-ms-correlation-request-id": [
- "374ac17c-7669-45e2-a439-8e9d4cc8ec23"
+ "8b7a4a26-8a4c-4833-b4eb-91e5c94a3111"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113345Z:374ac17c-7669-45e2-a439-8e9d4cc8ec23"
+ "SOUTHINDIA:20201118T115523Z:8b7a4a26-8a4c-4833-b4eb-91e5c94a3111"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:44 GMT"
+ "Wed, 18 Nov 2020 11:55:23 GMT"
+ ],
+ "Content-Length": [
+ "435"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17364c66-b5aa-485a-b1ca-183ae75976d9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9c66e524-d70f-4a45-b874-9b59cb936cd6"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "570c2e49-a137-47e0-88c0-2ec7f2fbab82"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T115529Z:570c2e49-a137-47e0-88c0-2ec7f2fbab82"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:55:28 GMT"
],
"Content-Length": [
"905"
@@ -2718,7 +2856,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -2728,7 +2866,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7d5c0ba8-accb-4cbe-9437-3015ba9eb3da"
+ "e67beae6-b725-49ad-a1fc-86242a4c16fd"
],
"Accept-Language": [
"en-US"
@@ -2751,7 +2889,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a65d407-6c2d-4b1c-a1d7-077e2e09bf51"
+ "2d50ef14-b648-4e69-b39a-d97f322a495a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2766,16 +2904,16 @@
"11977"
],
"x-ms-correlation-request-id": [
- "bb27f52c-e549-41fd-8d15-fc96408f1c26"
+ "e1bc2784-1384-40cf-b3e3-9566fff6aaf9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113412Z:bb27f52c-e549-41fd-8d15-fc96408f1c26"
+ "SOUTHINDIA:20201118T115556Z:e1bc2784-1384-40cf-b3e3-9566fff6aaf9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:12 GMT"
+ "Wed, 18 Nov 2020 11:55:55 GMT"
],
"Content-Length": [
"905"
@@ -2787,17 +2925,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "335e222a-ea78-48c9-86bb-565219605fa0"
+ "b03bfe3c-cbc5-4761-9839-b74c9182a5fc"
],
"Accept-Language": [
"en-US"
@@ -2823,13 +2961,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9AD6EBD000\""
+ "\"1D6BDA12512920B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e56dd02a-5104-4744-a83c-1924552561dd"
+ "61e3c7da-3dc8-4da2-9004-7d79aea09c8e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2844,16 +2982,16 @@
"499"
],
"x-ms-correlation-request-id": [
- "508d3050-004d-4731-8412-b0ab2005e62c"
+ "e273b246-52e5-42f1-95bc-b572ad9e7827"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113354Z:508d3050-004d-4731-8412-b0ab2005e62c"
+ "SOUTHINDIA:20201118T115536Z:e273b246-52e5-42f1-95bc-b572ad9e7827"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:33:53 GMT"
+ "Wed, 18 Nov 2020 11:55:36 GMT"
],
"Content-Length": [
"5772"
@@ -2865,7 +3003,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"225CAA5075BEF9C8232E3600A66C616DE54B0E16\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:33:50.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2875,7 +3013,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0ca49c3e-b393-4087-867a-e076bfa53718"
+ "57253263-7dd0-44f5-980b-797a6b375944"
],
"Accept-Language": [
"en-US"
@@ -2901,13 +3039,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9EAFF41620\""
+ "\"1D6BDA1B8D59E00\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6a8b92f7-1261-43fd-af20-c5ab42d19084"
+ "a4c0b9c7-768c-437e-b44f-c2af4e761f9c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2922,19 +3060,19 @@
"498"
],
"x-ms-correlation-request-id": [
- "f2032df5-1ab0-408d-aca8-31cf3155be75"
+ "0290de22-ef08-4c62-86ee-56625c11713e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113411Z:f2032df5-1ab0-408d-aca8-31cf3155be75"
+ "SOUTHINDIA:20201118T115554Z:0290de22-ef08-4c62-86ee-56625c11713e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:11 GMT"
+ "Wed, 18 Nov 2020 11:55:54 GMT"
],
"Content-Length": [
- "5732"
+ "5737"
],
"Content-Type": [
"application/json"
@@ -2943,7 +3081,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:34:09.16\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:51.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2953,7 +3091,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d6065b3c-b714-4fbc-a370-63f8e198a733"
+ "17226ac4-b312-4172-8aee-6dbbfab529e7"
],
"Accept-Language": [
"en-US"
@@ -2973,16 +3111,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11997"
],
"x-ms-request-id": [
- "68a2b9c6-c8ab-4010-8146-8438870db4f6"
+ "7d7ac635-f14e-4811-a280-2e3473f8a8ef"
],
"x-ms-correlation-request-id": [
- "68a2b9c6-c8ab-4010-8146-8438870db4f6"
+ "7d7ac635-f14e-4811-a280-2e3473f8a8ef"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113411Z:68a2b9c6-c8ab-4010-8146-8438870db4f6"
+ "SOUTHINDIA:20201118T115555Z:7d7ac635-f14e-4811-a280-2e3473f8a8ef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2991,7 +3129,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:11 GMT"
+ "Wed, 18 Nov 2020 11:55:54 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3000,10 +3138,10 @@
"-1"
],
"Content-Length": [
- "243"
+ "485"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -3013,7 +3151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e0839419-432a-4fea-982d-608bbbb9f9b6"
+ "68088955-9b18-4c05-ac3a-e78ee49fd05f"
],
"Accept-Language": [
"en-US"
@@ -3033,16 +3171,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11996"
],
"x-ms-request-id": [
- "ea7c2a84-a2c3-4e65-86b5-e6676079b915"
+ "f139288c-fce2-4fae-b4da-482b1bb1ff4e"
],
"x-ms-correlation-request-id": [
- "ea7c2a84-a2c3-4e65-86b5-e6676079b915"
+ "f139288c-fce2-4fae-b4da-482b1bb1ff4e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113418Z:ea7c2a84-a2c3-4e65-86b5-e6676079b915"
+ "SOUTHINDIA:20201118T115603Z:f139288c-fce2-4fae-b4da-482b1bb1ff4e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3051,7 +3189,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:18 GMT"
+ "Wed, 18 Nov 2020 11:56:02 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3060,10 +3198,148 @@
"-1"
],
"Content-Length": [
- "12"
+ "253"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "44ca5724-59b9-4046-b4e9-96fce8e9ac72"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1536155a-e2a8-485a-89b7-d9ba31db90c6"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "6663ae1b-e875-483a-bdbe-8e1e6b3337f4"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T115555Z:6663ae1b-e875-483a-bdbe-8e1e6b3337f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:55:55 GMT"
+ ],
+ "Content-Length": [
+ "930"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "207fd465-9044-49b3-ac33-08fc8e5520dd"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba8b7345-0add-474c-9501-c9ac65025d6b"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-correlation-request-id": [
+ "584a91be-e12f-400a-80cb-d8202cec031c"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201118T115603Z:584a91be-e12f-400a-80cb-d8202cec031c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 18 Nov 2020 11:56:02 GMT"
+ ],
+ "Content-Length": [
+ "930"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -3073,7 +3349,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d25122e1-84a8-4245-9983-2bf847384748"
+ "87308a8c-f7d1-4331-933e-1d08d276e8f5"
],
"Accept-Language": [
"en-US"
@@ -3096,7 +3372,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "58e43be9-8bb3-429b-b238-8502c3ac08fa"
+ "87ebeaad-5030-47cd-932f-27e787d93d83"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -3108,19 +3384,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14999"
],
"x-ms-correlation-request-id": [
- "1be4e4ea-951c-49ef-b5a8-582c23843004"
+ "f075ed8c-cdfc-4491-b68f-11585a5ba4a1"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113416Z:1be4e4ea-951c-49ef-b5a8-582c23843004"
+ "SOUTHINDIA:20201118T115600Z:f075ed8c-cdfc-4491-b68f-11585a5ba4a1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:34:15 GMT"
+ "Wed, 18 Nov 2020 11:55:59 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
index 872490743f8f..a8a64d1a32f2 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b06931a5-061e-441e-8284-5809debe6104"
+ "d0a81ffa-6881-4fac-9e65-3ff328e0c3dd"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9AD6EBD000\""
+ "\"1D6BDA12512920B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "46a28f20-7197-4a54-aa47-4cbc7c490685"
+ "66ce4e06-7575-418a-982f-bded3f43a787"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11997"
],
"x-ms-correlation-request-id": [
- "a33143d8-dd9f-41da-87cb-acf0092c070b"
+ "33c6bd96-53af-430f-8b56-f5249772a65d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113149Z:a33143d8-dd9f-41da-87cb-acf0092c070b"
+ "SOUTHINDIA:20201118T115311Z:33c6bd96-53af-430f-8b56-f5249772a65d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:31:48 GMT"
+ "Wed, 18 Nov 2020 11:53:10 GMT"
],
"Content-Length": [
- "5532"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15c888f0-a7f4-4b6a-93bb-56734872ef06"
+ "e9ece146-3f3c-4ee6-a435-44b4ca08b578"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BD9AD6EBD000\""
+ "\"1D6BDA12512920B\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5d6fc52d-54dc-4c5b-b699-e709462b7a68"
+ "5b742a84-ff32-4172-9c61-0713f35799d6"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
+ "11991"
],
"x-ms-correlation-request-id": [
- "7c7b8fd0-dcb6-43c5-bc12-0ffc06531822"
+ "39db2c96-9715-4af3-8ee9-df53b90cd8e5"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113221Z:7c7b8fd0-dcb6-43c5-bc12-0ffc06531822"
+ "SOUTHINDIA:20201118T115340Z:39db2c96-9715-4af3-8ee9-df53b90cd8e5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:21 GMT"
+ "Wed, 18 Nov 2020 11:53:40 GMT"
],
"Content-Length": [
- "5532"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:06:18.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "89f8ba26-ef93-4c1d-a0f1-1e41c2c8b7b0"
+ "f9a2edc7-5bb0-4fd8-931e-b8eafbca9320"
],
"Accept-Language": [
"en-US"
@@ -174,7 +174,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9e46033f-7493-4756-90c8-8e852247ef9b"
+ "d4a18be1-a228-4a46-ad04-ce1586ba735a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,19 +186,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11996"
],
"x-ms-correlation-request-id": [
- "fc9f04a8-8c7f-43bc-9fb0-442adf4534ca"
+ "c6ca1a55-fc66-47a1-921e-74e1314debcf"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113149Z:fc9f04a8-8c7f-43bc-9fb0-442adf4534ca"
+ "SOUTHINDIA:20201118T115312Z:c6ca1a55-fc66-47a1-921e-74e1314debcf"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:31:49 GMT"
+ "Wed, 18 Nov 2020 11:53:11 GMT"
],
"Content-Length": [
"4103"
@@ -220,7 +220,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11daea7f-1c57-4653-b5af-c127123adb16"
+ "1e5c0e97-d905-46b1-bdba-754367e38f5e"
],
"Accept-Language": [
"en-US"
@@ -243,7 +243,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a6c3f2d4-311a-4de5-9238-02807f060a76"
+ "fa061f7c-3fe8-4a0b-8220-5485136a331e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,19 +255,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
+ "11990"
],
"x-ms-correlation-request-id": [
- "12aef3f1-2abe-47fa-8dda-60e19e1276ad"
+ "dd544af1-b580-4c4a-83d6-7cf1920dd694"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113221Z:12aef3f1-2abe-47fa-8dda-60e19e1276ad"
+ "SOUTHINDIA:20201118T115341Z:dd544af1-b580-4c4a-83d6-7cf1920dd694"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:21 GMT"
+ "Wed, 18 Nov 2020 11:53:41 GMT"
],
"Content-Length": [
"4103"
@@ -289,7 +289,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0717d113-8411-4a00-b385-3d9e232c0381"
+ "25960733-8919-421c-a2ca-8b664a7735d6"
],
"Accept-Language": [
"en-US"
@@ -312,7 +312,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e0a3193c-e719-4913-8c7b-6b58692419fb"
+ "613725dc-9cfc-45f9-951a-589a174d321a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -324,19 +324,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11978"
+ "11999"
],
"x-ms-correlation-request-id": [
- "224ebb33-0a79-48be-b948-9862f38934ec"
+ "24bdff22-dad4-4cd7-b1ed-037e258b9f8f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113152Z:224ebb33-0a79-48be-b948-9862f38934ec"
+ "SOUTHINDIA:20201118T115313Z:24bdff22-dad4-4cd7-b1ed-037e258b9f8f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:31:51 GMT"
+ "Wed, 18 Nov 2020 11:53:12 GMT"
],
"Content-Length": [
"740"
@@ -358,7 +358,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dde372d5-3b42-4ba9-869a-ea17b1a57523"
+ "6fbe1a9c-7626-4a5e-a860-3e5ce11cbf5c"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8bb4b574-fb95-4603-a5eb-e16ecc66f091"
+ "4a48d351-9fdf-420f-ba09-168f0ad14c8c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -393,19 +393,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11975"
+ "11996"
],
"x-ms-correlation-request-id": [
- "838d4590-7ea7-49ca-bbb0-46cceeabb6be"
+ "4674bf71-6056-4722-bc55-2c7e76fbf234"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113222Z:838d4590-7ea7-49ca-bbb0-46cceeabb6be"
+ "SOUTHINDIA:20201118T115341Z:4674bf71-6056-4722-bc55-2c7e76fbf234"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:22 GMT"
+ "Wed, 18 Nov 2020 11:53:41 GMT"
],
"Content-Length": [
"740"
@@ -427,7 +427,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0e4e7fa0-f707-48b0-a0e9-7f50899ca455"
+ "f83b676b-0655-4592-9635-d86bed865164"
],
"Accept-Language": [
"en-US"
@@ -450,7 +450,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d9195563-ba03-4f2c-b3c5-6bea641a4c37"
+ "f68c88d4-d02c-48c3-90e4-3993b88b64a0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -462,19 +462,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11977"
+ "11998"
],
"x-ms-correlation-request-id": [
- "f32bc9d4-3f3b-4935-abe7-3e3f18780433"
+ "ca33ecb4-e548-4e8d-989c-a95c36d963ba"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113152Z:f32bc9d4-3f3b-4935-abe7-3e3f18780433"
+ "SOUTHINDIA:20201118T115313Z:ca33ecb4-e548-4e8d-989c-a95c36d963ba"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:31:52 GMT"
+ "Wed, 18 Nov 2020 11:53:13 GMT"
],
"Content-Length": [
"290"
@@ -496,7 +496,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "13f52bf6-0164-4808-bec5-ec21d9e497c1"
+ "aa29ebd2-b473-4888-8e16-6fa2649734a6"
],
"Accept-Language": [
"en-US"
@@ -519,7 +519,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "474fcb6e-cc8e-4028-930b-ac3328ea1d99"
+ "73d04c49-ef38-49b9-b253-9618937f3a3a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -531,19 +531,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11974"
+ "11995"
],
"x-ms-correlation-request-id": [
- "2fac7617-5e3c-462b-b47f-4c6ae241e921"
+ "47bb8433-add0-4d7f-a314-4e53b22c8da3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113223Z:2fac7617-5e3c-462b-b47f-4c6ae241e921"
+ "SOUTHINDIA:20201118T115342Z:47bb8433-add0-4d7f-a314-4e53b22c8da3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:23 GMT"
+ "Wed, 18 Nov 2020 11:53:42 GMT"
],
"Content-Length": [
"290"
@@ -565,7 +565,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b4683487-da39-4882-8b62-fd017465d98d"
+ "c6f6fb45-9340-4804-816e-624da9f10297"
],
"Accept-Language": [
"en-US"
@@ -588,7 +588,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "97f3a4e0-83e9-453d-ad8c-c005d5453f46"
+ "2a9ba069-5da1-438d-b28f-b0ebc15b24f8"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -600,19 +600,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11976"
+ "11997"
],
"x-ms-correlation-request-id": [
- "686b8668-fa06-4915-a5d0-d8d753cfcbd2"
+ "d5975532-c8e4-4cea-818f-ab058ab8edce"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113153Z:686b8668-fa06-4915-a5d0-d8d753cfcbd2"
+ "SOUTHINDIA:20201118T115314Z:d5975532-c8e4-4cea-818f-ab058ab8edce"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:31:52 GMT"
+ "Wed, 18 Nov 2020 11:53:13 GMT"
],
"Content-Length": [
"287"
@@ -634,7 +634,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbad9f0b-4c1a-482a-80ec-0cd996233273"
+ "60680a19-e894-4333-8e55-c363a025c0cb"
],
"Accept-Language": [
"en-US"
@@ -657,7 +657,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1f9ac235-24c1-48b0-9592-4cc1ce2093e2"
+ "70af4df9-3027-4f6d-9a8c-8f25d7783461"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -669,19 +669,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11973"
+ "11994"
],
"x-ms-correlation-request-id": [
- "7255d6d5-13df-4336-acdd-1461711c9245"
+ "21307bd2-b6ff-4a6e-a8e7-da2cdc727eed"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113224Z:7255d6d5-13df-4336-acdd-1461711c9245"
+ "SOUTHINDIA:20201118T115342Z:21307bd2-b6ff-4a6e-a8e7-da2cdc727eed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:23 GMT"
+ "Wed, 18 Nov 2020 11:53:42 GMT"
],
"Content-Length": [
"287"
@@ -703,7 +703,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "042da302-9570-4164-b253-74871d4de836"
+ "71c02fd1-1fff-4b1e-9664-44e1e799f23a"
],
"Accept-Language": [
"en-US"
@@ -729,7 +729,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/dd2342d1-ea8a-42ac-930a-130ed78a3bfc?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/04a3100f-adb7-4b25-8858-67520b23b993?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -747,22 +747,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "5946603f-8410-4ebc-9dd1-4141561c8d89"
+ "8685ce54-673a-4818-8b96-e0a87d1574ca"
],
"x-ms-correlation-request-id": [
- "5946603f-8410-4ebc-9dd1-4141561c8d89"
+ "8685ce54-673a-4818-8b96-e0a87d1574ca"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113201Z:5946603f-8410-4ebc-9dd1-4141561c8d89"
+ "SOUTHINDIA:20201118T115322Z:8685ce54-673a-4818-8b96-e0a87d1574ca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:00 GMT"
+ "Wed, 18 Nov 2020 11:53:21 GMT"
],
"Expires": [
"-1"
@@ -781,7 +781,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d27e20f-fd71-4ddf-8554-349a24688507"
+ "3112df90-c2a2-42ad-9842-9e94fccc41bb"
],
"Accept-Language": [
"en-US"
@@ -813,22 +813,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11995"
],
"x-ms-request-id": [
- "e8d0567f-9789-475a-8a7f-3efc9c0317b6"
+ "aec6af00-a36b-49cc-ab40-d5ef52d0ac47"
],
"x-ms-correlation-request-id": [
- "e8d0567f-9789-475a-8a7f-3efc9c0317b6"
+ "aec6af00-a36b-49cc-ab40-d5ef52d0ac47"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113201Z:e8d0567f-9789-475a-8a7f-3efc9c0317b6"
+ "SOUTHINDIA:20201118T115323Z:aec6af00-a36b-49cc-ab40-d5ef52d0ac47"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:01 GMT"
+ "Wed, 18 Nov 2020 11:53:22 GMT"
],
"Content-Length": [
"435"
@@ -850,7 +850,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "59fe199a-92c0-4eb8-aa36-0561520e9628"
+ "a353faab-3816-4f71-890b-c8d62e524b6e"
],
"Accept-Language": [
"en-US"
@@ -882,22 +882,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11994"
],
"x-ms-request-id": [
- "ae736e3a-6c1a-406d-98ac-5ddfe21bf5dd"
+ "60b7db84-837d-478f-b687-47ad4d3f15ac"
],
"x-ms-correlation-request-id": [
- "ae736e3a-6c1a-406d-98ac-5ddfe21bf5dd"
+ "60b7db84-837d-478f-b687-47ad4d3f15ac"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113207Z:ae736e3a-6c1a-406d-98ac-5ddfe21bf5dd"
+ "SOUTHINDIA:20201118T115328Z:60b7db84-837d-478f-b687-47ad4d3f15ac"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:06 GMT"
+ "Wed, 18 Nov 2020 11:53:27 GMT"
],
"Content-Length": [
"435"
@@ -919,7 +919,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2151c50c-4e88-4b8b-8558-7d47161934cc"
+ "7aef21ce-a765-43bb-9639-9105adccb4a2"
],
"Accept-Language": [
"en-US"
@@ -951,25 +951,25 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "11993"
],
"x-ms-request-id": [
- "1cf07128-a069-49d1-9518-8189173d681e"
+ "06a01a16-a0ac-4d29-be8c-a71dea35a0c7"
],
"x-ms-correlation-request-id": [
- "1cf07128-a069-49d1-9518-8189173d681e"
+ "06a01a16-a0ac-4d29-be8c-a71dea35a0c7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113213Z:1cf07128-a069-49d1-9518-8189173d681e"
+ "SOUTHINDIA:20201118T115334Z:06a01a16-a0ac-4d29-be8c-a71dea35a0c7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:12 GMT"
+ "Wed, 18 Nov 2020 11:53:34 GMT"
],
"Content-Length": [
- "435"
+ "493"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -978,7 +978,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Certificate 834D125ECDF94BA8C12A98A81C279C080B199FCF was not found.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Certificate 834D125ECDF94BA8C12A98A81C279C080B199FCF was not found.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04031\",\r\n \"MessageTemplate\": \"Certificate {0} was not found.\",\r\n \"Parameters\": [\r\n \"834D125ECDF94BA8C12A98A81C279C080B199FCF\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Certificate 834D125ECDF94BA8C12A98A81C279C080B199FCF was not found.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
"StatusCode": 404
},
{
@@ -988,7 +988,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "098ccbd6-a906-4508-8133-74aef06ceb7a"
+ "4d6bb5e5-5724-495d-a8b4-64c7e0130c39"
],
"Accept-Language": [
"en-US"
@@ -1011,7 +1011,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "90c6a9a4-dab4-4cc5-a389-ef326fafe579"
+ "3023ef1a-412e-4913-80c9-d67052444e28"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1023,19 +1023,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
+ "11992"
],
"x-ms-correlation-request-id": [
- "9e70d9bb-9b69-464a-abf6-ac961074d716"
+ "39f23355-852d-47d9-9a11-ea4693da92b1"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113220Z:9e70d9bb-9b69-464a-abf6-ac961074d716"
+ "SOUTHINDIA:20201118T115339Z:39f23355-852d-47d9-9a11-ea4693da92b1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:19 GMT"
+ "Wed, 18 Nov 2020 11:53:39 GMT"
],
"Content-Length": [
"905"
@@ -1047,7 +1047,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"BCF31D60D6280228F2F70FE8457D5EDE55F0211B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1057,7 +1057,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "92ecad74-56d6-4515-bc3b-6e40e550dd52"
+ "7514ed97-fa15-4b70-9d38-09ff47ffa548"
],
"Accept-Language": [
"en-US"
@@ -1077,16 +1077,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11999"
],
"x-ms-request-id": [
- "04010a20-91d8-46e6-8260-0fe91349f4d8"
+ "5cb6b144-4808-4db6-92d5-6474cf557d64"
],
"x-ms-correlation-request-id": [
- "04010a20-91d8-46e6-8260-0fe91349f4d8"
+ "5cb6b144-4808-4db6-92d5-6474cf557d64"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113224Z:04010a20-91d8-46e6-8260-0fe91349f4d8"
+ "SOUTHINDIA:20201118T115343Z:5cb6b144-4808-4db6-92d5-6474cf557d64"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1095,7 +1095,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:24 GMT"
+ "Wed, 18 Nov 2020 11:53:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1104,148 +1104,10 @@
"-1"
],
"Content-Length": [
- "251"
+ "12"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f6543241-52f1-4aac-802f-8690a20196ef"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "4bb58c62-e0c9-4048-ae42-3ed86a1c47db"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
- ],
- "x-ms-correlation-request-id": [
- "0c9180a5-61c3-4d55-8821-9296f7c0c358"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113225Z:0c9180a5-61c3-4d55-8821-9296f7c0c358"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:32:25 GMT"
- ],
- "Content-Length": [
- "923"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5tYW5hZ2VkY2VydHMubmV0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "ff4a879e-38b6-4bc4-ba94-5e5f2c16c6ba"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "8596b5ff-e03e-42fd-ac1b-ea569673e696"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-correlation-request-id": [
- "018386db-6afa-46c5-b366-ed7688b3efe8"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113227Z:018386db-6afa-46c5-b366-ed7688b3efe8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:32:27 GMT"
- ],
- "Content-Length": [
- "923"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CC767B9C74A3224B8D7CC1D98C3659539FB1C2E2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
@@ -1255,7 +1117,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c43a1365-bfdc-4f5d-bad0-f2f3cec24403"
+ "3b08678a-db51-4f6f-a443-12d54ff738fd"
],
"Accept-Language": [
"en-US"
@@ -1275,16 +1137,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11998"
],
"x-ms-request-id": [
- "7f5c0991-2b71-4b58-a6df-16fffb251287"
+ "94d93079-2da6-473d-80d5-5e6d9b22034d"
],
"x-ms-correlation-request-id": [
- "7f5c0991-2b71-4b58-a6df-16fffb251287"
+ "94d93079-2da6-473d-80d5-5e6d9b22034d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113225Z:7f5c0991-2b71-4b58-a6df-16fffb251287"
+ "SOUTHINDIA:20201118T115343Z:94d93079-2da6-473d-80d5-5e6d9b22034d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1293,7 +1155,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:25 GMT"
+ "Wed, 18 Nov 2020 11:53:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1302,10 +1164,10 @@
"-1"
],
"Content-Length": [
- "2328"
+ "2088"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -1315,7 +1177,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "11d15a6f-05d0-4ef8-93a9-ccbfe0d470bb"
+ "5a6a2af5-4798-415a-b634-71b56de77bd3"
],
"Accept-Language": [
"en-US"
@@ -1338,7 +1200,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "355cab24-45af-4098-b9ac-8632569bfdda"
+ "fc9a7b89-5162-4a38-865b-34f46db76bcc"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1350,19 +1212,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
+ "11989"
],
"x-ms-correlation-request-id": [
- "908cbf85-c656-4061-9eed-1d2fdf850ad8"
+ "56a4883c-933e-4ff8-a9d0-53b3e238f0ca"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113225Z:908cbf85-c656-4061-9eed-1d2fdf850ad8"
+ "SOUTHINDIA:20201118T115344Z:56a4883c-933e-4ff8-a9d0-53b3e238f0ca"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:25 GMT"
+ "Wed, 18 Nov 2020 11:53:44 GMT"
],
"Content-Length": [
"935"
@@ -1384,7 +1246,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9942a9cd-2833-446a-9553-adea2c2ed727"
+ "1de75041-835a-4d30-853d-a6179bc71b49"
],
"Accept-Language": [
"en-US"
@@ -1407,7 +1269,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d04aadc3-47a0-4052-9d47-14b636d31193"
+ "e8dc94ec-3a8e-4139-a251-af21e86172d0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1419,19 +1281,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
+ "11988"
],
"x-ms-correlation-request-id": [
- "cbe2eecc-083e-475f-be2b-3078d81420ac"
+ "2a920274-3565-4877-86ae-cad00f30ce6d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113226Z:cbe2eecc-083e-475f-be2b-3078d81420ac"
+ "SOUTHINDIA:20201118T115344Z:2a920274-3565-4877-86ae-cad00f30ce6d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:26 GMT"
+ "Wed, 18 Nov 2020 11:53:44 GMT"
],
"Content-Length": [
"861"
@@ -1453,7 +1315,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e6faf1df-5cce-4659-9082-57ca5654b2ed"
+ "4a26d7c1-e3c3-4aa4-b0d3-5831f0346bdb"
],
"Accept-Language": [
"en-US"
@@ -1476,7 +1338,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f00edbb3-b7c2-4015-b74b-cac2bd523888"
+ "e6bfa304-a605-4670-925b-05820a02f000"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1488,19 +1350,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
+ "11987"
],
"x-ms-correlation-request-id": [
- "e784fbb6-2a33-48a1-a6d4-25be9956c60c"
+ "9e8d319b-8962-46b5-b527-b1e362c62610"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113227Z:e784fbb6-2a33-48a1-a6d4-25be9956c60c"
+ "SOUTHINDIA:20201118T115345Z:9e8d319b-8962-46b5-b527-b1e362c62610"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:26 GMT"
+ "Wed, 18 Nov 2020 11:53:44 GMT"
],
"Content-Length": [
"904"
@@ -1522,7 +1384,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "947c2c40-09a0-4fc7-b0bb-440a7b097cf1"
+ "f59a017f-4c45-47b2-a67a-1c90616090eb"
],
"Accept-Language": [
"en-US"
@@ -1545,7 +1407,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "01e35999-62da-476d-a294-fad9dd0db5c2"
+ "ef4013d8-1ed2-466a-a80a-4674f3ab35d8"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1557,19 +1419,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
+ "11986"
],
"x-ms-correlation-request-id": [
- "2845d2b5-fdce-4b7e-a960-076caeb8cd3c"
+ "84c3473a-6cf7-4d2e-a433-debb66f1eafc"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113227Z:2845d2b5-fdce-4b7e-a960-076caeb8cd3c"
+ "SOUTHINDIA:20201118T115345Z:84c3473a-6cf7-4d2e-a433-debb66f1eafc"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:27 GMT"
+ "Wed, 18 Nov 2020 11:53:45 GMT"
],
"Content-Length": [
"1140"
@@ -1591,7 +1453,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c3e5f88-8daf-48a1-bb7c-732252522d34"
+ "63324bac-98ba-4476-a92e-fa42e162e73a"
],
"Accept-Language": [
"en-US"
@@ -1614,7 +1476,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "677b06f1-5da4-40b1-8581-6a23858d85ff"
+ "eeba899d-5a6f-4753-b293-5df8f412a7a7"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1626,19 +1488,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
+ "11985"
],
"x-ms-correlation-request-id": [
- "72f1c701-1a69-4f71-8be8-7b2764f0b1fa"
+ "fb943147-8cb5-40f6-9425-de6e635dd89f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113228Z:72f1c701-1a69-4f71-8be8-7b2764f0b1fa"
+ "SOUTHINDIA:20201118T115346Z:fb943147-8cb5-40f6-9425-de6e635dd89f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:28 GMT"
+ "Wed, 18 Nov 2020 11:53:45 GMT"
],
"Content-Length": [
"1102"
@@ -1660,7 +1522,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "092ac29b-0279-4210-ba9d-7725c6c1e1c0"
+ "3f0f9d65-4b20-478c-9892-f2f2d85aa805"
],
"Accept-Language": [
"en-US"
@@ -1683,7 +1545,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0dd46890-d3cf-45a5-ac94-5ccec9b5aebf"
+ "30ed3e69-1ed9-4337-bb24-ad49b52152a2"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1695,19 +1557,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
+ "11984"
],
"x-ms-correlation-request-id": [
- "dfdd23d6-40d4-4cab-ad08-2e3467e7ff7c"
+ "34e1addc-ef73-4ea2-b2b1-e1a5234709eb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113228Z:dfdd23d6-40d4-4cab-ad08-2e3467e7ff7c"
+ "SOUTHINDIA:20201118T115346Z:34e1addc-ef73-4ea2-b2b1-e1a5234709eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:28 GMT"
+ "Wed, 18 Nov 2020 11:53:46 GMT"
],
"Content-Length": [
"1078"
@@ -1729,7 +1591,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63085682-eaea-4f33-bb42-2d05ca7d4f0f"
+ "388f9a9e-d887-45a1-8fc5-bedded97fdbd"
],
"Accept-Language": [
"en-US"
@@ -1752,7 +1614,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7c7d2379-2488-4d9d-bed7-a8b9b26d48fd"
+ "16ab7bea-4179-4e21-a1a7-6d265d9b668f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1764,19 +1626,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
+ "11983"
],
"x-ms-correlation-request-id": [
- "4684e927-477e-42d0-b2a4-0a0b2079c8b3"
+ "2cfd761b-30f2-46f0-8f69-f88366a7adf7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113229Z:4684e927-477e-42d0-b2a4-0a0b2079c8b3"
+ "SOUTHINDIA:20201118T115346Z:2cfd761b-30f2-46f0-8f69-f88366a7adf7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:29 GMT"
+ "Wed, 18 Nov 2020 11:53:46 GMT"
],
"Content-Length": [
"840"
@@ -1798,7 +1660,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f58531e-2c25-4f44-bf07-e1d2508b78b6"
+ "1ee0a033-d80b-4166-8adc-4f1efc0ba6b0"
],
"Accept-Language": [
"en-US"
@@ -1821,7 +1683,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "338a2a71-ca53-47c6-9168-f70602381956"
+ "e6195e36-0dc4-467d-acfa-8dbd7bf829da"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1833,19 +1695,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
+ "11982"
],
"x-ms-correlation-request-id": [
- "b3e6e935-f6da-43e0-bdc2-994d561df534"
+ "bff0ad3b-9df7-47fa-8513-b03da93b1698"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T113229Z:b3e6e935-f6da-43e0-bdc2-994d561df534"
+ "SOUTHINDIA:20201118T115347Z:bff0ad3b-9df7-47fa-8513-b03da93b1698"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:32:29 GMT"
+ "Wed, 18 Nov 2020 11:53:47 GMT"
],
"Content-Length": [
"831"
From 3cbcfd5a98e47acb13fa52322164ec8760181973 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Wed, 18 Nov 2020 19:17:26 +0530
Subject: [PATCH 08/13] Fixed build issue
---
.../Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
index d3112de7d9c1..f0f9a89b0301 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
@@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
///
/// This commandlet will let you delete a managed certificate
///
- [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", SupportsShouldProcess = true), OutputType(typeof(void))]
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", DefaultParameterSetName = ParameterSet1Name, SupportsShouldProcess = true), OutputType(typeof(void))]
public class RemoveAzureWebAppCertificate : WebAppBaseClientCmdLet
{
const string ParameterSet1Name = "S1";
From bf8ba412271a54f18c2ece6970afabf647e76269 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Mon, 23 Nov 2020 13:42:23 +0530
Subject: [PATCH 09/13] addressed Code review comments
---
.../ScenarioTests/CertificatesTests.ps1 | 8 +-
.../TestNewAzWebAppCertificate.json | 537 ++-----
.../TestNewAzWebAppCertificateForSlot.json | 602 +-------
...tNewAzWebAppCertificateWithSSLBinding.json | 1346 +++++------------
.../TestRemoveAzWebAppCertificate.json | 965 +++---------
src/Websites/Websites/ChangeLog.md | 4 +-
.../Certificates/NewAzureWebAppCertificate.cs | 35 +-
.../RemoveAzureWebAppCertificate.cs | 53 +-
.../help/Remove-AzWebAppCertificate.md | 55 +-
9 files changed, 803 insertions(+), 2802 deletions(-)
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
index ad3336e16cea..e89636d3e76a 100644
--- a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
@@ -35,7 +35,7 @@ function Test-NewAzWebAppCertificate
finally{
# Cleanup
- Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -ThumbPrint $thumbprint
}
}
@@ -71,7 +71,7 @@ function Test-NewAzWebAppCertificateWithSSLBinding
# Cleanup
Remove-AzWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Force
- Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -ThumbPrint $thumbprint
}
}
@@ -100,7 +100,7 @@ function Test-NewAzWebAppCertificateForSlot
finally{
# Cleanup
- Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -ThumbPrint $thumbprint
}
}
@@ -124,7 +124,7 @@ function Test-RemoveAzWebAppCertificate
# Assert
Assert-AreEqual $prodHostname $cert.SubjectName
- Remove-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -ThumbPrint $thumbprint
+ Remove-AzWebAppCertificate -ResourceGroupName $rgname -ThumbPrint $thumbprint
$certificate = Get-AzWebAppCertificate -Thumbprint $thumbprint
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
index 3e7eea924d69..86f259ff88b5 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "566b4b41-593f-4102-b5f0-d70e83fb258b"
+ "45139bc8-efda-47f7-b47c-8f62d94f997d"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA12512920B\""
+ "\"1D6C16FDC413580\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "258c8e24-15b5-4707-9522-b00bf2ee7725"
+ "b0c1d240-5ec0-49d1-ae76-7f45ab4c4702"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,94 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-correlation-request-id": [
- "781cf1a0-8453-41e4-92d8-64c3275ac026"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115434Z:781cf1a0-8453-41e4-92d8-64c3275ac026"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:54:33 GMT"
- ],
- "Content-Length": [
- "5537"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "71a53198-6f7b-46d7-9b7e-0d072bb8856f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "\"1D6BDA12512920B\""
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "9ed848fb-d87b-41f6-aa55-bb01b00ffad2"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11996"
],
"x-ms-correlation-request-id": [
- "008f83a7-50a7-4427-866b-28119f0edc7e"
+ "a2bcbc57-1d96-48ca-9fa0-09626c5c93ee"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115439Z:008f83a7-50a7-4427-866b-28119f0edc7e"
+ "CENTRALINDIA:20201123T080950Z:a2bcbc57-1d96-48ca-9fa0-09626c5c93ee"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:39 GMT"
+ "Mon, 23 Nov 2020 08:09:49 GMT"
],
"Content-Length": [
- "5537"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -141,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:43.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ab38c20c-c63d-4d3b-b5bf-3616500cf6ad"
+ "6f6780b1-88ab-4904-8033-dbc3ebf9200a"
],
"Accept-Language": [
"en-US"
@@ -174,7 +102,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a054e5f8-b481-4c9b-b357-8e5988ad69b9"
+ "5d87aaaf-73be-468e-80c3-431871c8a538"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,88 +114,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11995"
],
"x-ms-correlation-request-id": [
- "779b2e30-0b6e-4f9b-b3c1-5cf3400c44f9"
+ "bbe4279a-34c1-48eb-9c6f-80521b013fc1"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115435Z:779b2e30-0b6e-4f9b-b3c1-5cf3400c44f9"
+ "CENTRALINDIA:20201123T080951Z:bbe4279a-34c1-48eb-9c6f-80521b013fc1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:34 GMT"
- ],
- "Content-Length": [
- "4103"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bf31547a-0ac5-4776-b2d5-6f2b80ae4133"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "ca7385ce-e7de-45a0-91f0-91b8454b1218"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-correlation-request-id": [
- "ebd086d2-8c45-4717-b065-dd90a64f4498"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115440Z:ebd086d2-8c45-4717-b065-dd90a64f4498"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:54:39 GMT"
+ "Mon, 23 Nov 2020 08:09:51 GMT"
],
"Content-Length": [
"4103"
@@ -289,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "18ead3a0-6b53-4571-b0e4-9fddbfec12d5"
+ "55d2f628-80a4-4250-90d2-37a992de2f16"
],
"Accept-Language": [
"en-US"
@@ -312,7 +171,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0a01c69c-3555-4306-8102-98bcdcec26b1"
+ "c3ebd029-c3e9-49d1-b709-671f6361d44c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -324,88 +183,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11993"
+ "11996"
],
"x-ms-correlation-request-id": [
- "eb554ad1-7ecd-428d-8c6b-6087c3778d32"
+ "43e9fe32-6e17-4952-927c-ac840cbde770"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115436Z:eb554ad1-7ecd-428d-8c6b-6087c3778d32"
+ "CENTRALINDIA:20201123T080952Z:43e9fe32-6e17-4952-927c-ac840cbde770"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:35 GMT"
- ],
- "Content-Length": [
- "740"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "8814f398-4b0f-400a-8c06-98d6d9b5acfd"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "edd1d893-a42a-4bf8-a62d-f7f80964059b"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11990"
- ],
- "x-ms-correlation-request-id": [
- "62a3a95a-ff6c-4abb-92f5-a73186901993"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115440Z:62a3a95a-ff6c-4abb-92f5-a73186901993"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:54:40 GMT"
+ "Mon, 23 Nov 2020 08:09:52 GMT"
],
"Content-Length": [
"740"
@@ -427,7 +217,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e5dbd5c7-cde7-4b30-8ae6-6e69af04d862"
+ "50ab673e-a67e-4d72-965b-c50bab3a570d"
],
"Accept-Language": [
"en-US"
@@ -450,7 +240,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "215d99f2-953e-42e0-aff7-8c6e96aa69c3"
+ "df3e8018-4fec-46a0-a000-4b3bd7173137"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -462,19 +252,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11992"
+ "11995"
],
"x-ms-correlation-request-id": [
- "d9b9a2e3-7eba-4fcf-b79e-35581bf29441"
+ "59e662cd-b18c-4013-a120-0906d9a1246e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115437Z:d9b9a2e3-7eba-4fcf-b79e-35581bf29441"
+ "CENTRALINDIA:20201123T080952Z:59e662cd-b18c-4013-a120-0906d9a1246e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:36 GMT"
+ "Mon, 23 Nov 2020 08:09:52 GMT"
],
"Content-Length": [
"290"
@@ -490,13 +280,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8114a78d-bf7b-49ac-9fd2-e841037ef43d"
+ "98ca37bb-1894-4b8c-9500-44f5b6688e3f"
],
"Accept-Language": [
"en-US"
@@ -519,7 +309,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b944fc26-c470-4743-8da4-9b4f65e07a25"
+ "db778598-6879-4cf6-90dd-65e12b5b16e3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -531,22 +321,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11989"
+ "11994"
],
"x-ms-correlation-request-id": [
- "7b1fabf8-8956-4f58-adc9-111134ae0f6e"
+ "e32391b7-3ab4-44bd-af0d-ccaac26e5fed"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115441Z:7b1fabf8-8956-4f58-adc9-111134ae0f6e"
+ "CENTRALINDIA:20201123T080953Z:e32391b7-3ab4-44bd-af0d-ccaac26e5fed"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:40 GMT"
+ "Mon, 23 Nov 2020 08:09:53 GMT"
],
"Content-Length": [
- "290"
+ "287"
],
"Content-Type": [
"application/json"
@@ -555,17 +345,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a1eddaf5-c00d-4e96-ae45-daa588d7c556"
+ "5e2a3442-5afd-44a5-a8c7-5269bdf365cc"
],
"Accept-Language": [
"en-US"
@@ -575,6 +365,12 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "283"
]
},
"ResponseHeaders": {
@@ -584,12 +380,15 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/e17ff3c9-43e6-4488-a48e-e2b556c9c4bb?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "444462b9-0665-48d9-a6d6-35e2fbd2b6b5"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -599,42 +398,42 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11991"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "f924f673-3162-440b-b253-4a734195063c"
],
"x-ms-correlation-request-id": [
- "20c64fb4-fec7-46b5-8d5e-52bd3a6a8082"
+ "f924f673-3162-440b-b253-4a734195063c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115437Z:20c64fb4-fec7-46b5-8d5e-52bd3a6a8082"
+ "CENTRALINDIA:20201123T081003Z:f924f673-3162-440b-b253-4a734195063c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:36 GMT"
- ],
- "Content-Length": [
- "287"
- ],
- "Content-Type": [
- "application/json"
+ "Mon, 23 Nov 2020 08:10:03 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f33a748e-3219-4706-9b0a-9851ba92a497"
+ "1e3b85e1-8ced-4720-acc0-8bf651e5943f"
],
"Accept-Language": [
"en-US"
@@ -656,9 +455,6 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "391d8ebe-44d8-4558-a97c-9d2c7d7d0630"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -668,42 +464,45 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11988"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "a34e0e64-63a9-4b40-808b-3ffc298abcfe"
],
"x-ms-correlation-request-id": [
- "0d63c7ed-3731-45de-96d7-1ced24806e5e"
+ "a34e0e64-63a9-4b40-808b-3ffc298abcfe"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115442Z:0d63c7ed-3731-45de-96d7-1ced24806e5e"
+ "CENTRALINDIA:20201123T081004Z:a34e0e64-63a9-4b40-808b-3ffc298abcfe"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:41 GMT"
+ "Mon, 23 Nov 2020 08:10:03 GMT"
],
"Content-Length": [
- "287"
+ "435"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "320facb0-d9c5-4b80-934a-447bb456d779"
+ "293f1d04-63c5-46e2-a64e-1c879d4c7c81"
],
"Accept-Language": [
"en-US"
@@ -713,12 +512,6 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "283"
]
},
"ResponseHeaders": {
@@ -731,9 +524,6 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "0d767477-6043-45cd-842c-21fbc353cb0d"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -743,33 +533,36 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "397e24aa-3432-42a2-872b-eddd1a1103e3"
],
"x-ms-correlation-request-id": [
- "a2b0665a-9e16-439a-a236-01cc916e24f4"
+ "397e24aa-3432-42a2-872b-eddd1a1103e3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115438Z:a2b0665a-9e16-439a-a236-01cc916e24f4"
+ "CENTRALINDIA:20201123T081009Z:397e24aa-3432-42a2-872b-eddd1a1103e3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:37 GMT"
+ "Mon, 23 Nov 2020 08:10:09 GMT"
],
"Content-Length": [
- "905"
+ "435"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
@@ -778,7 +571,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "61e40860-1619-47ed-98ae-52888ef87583"
+ "d30e11a0-6aa2-45ad-a816-4c6401b0061f"
],
"Accept-Language": [
"en-US"
@@ -800,9 +593,6 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "111cf2af-9329-4766-90ed-83ecda91fdf3"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -813,32 +603,35 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "7b9f0297-a4eb-4b4b-9993-45c9d19ee794"
],
"x-ms-correlation-request-id": [
- "d13013e5-45c5-4ebb-bd0c-a50d22f8022a"
+ "7b9f0297-a4eb-4b4b-9993-45c9d19ee794"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115439Z:d13013e5-45c5-4ebb-bd0c-a50d22f8022a"
+ "CENTRALINDIA:20201123T081014Z:7b9f0297-a4eb-4b4b-9993-45c9d19ee794"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:38 GMT"
+ "Mon, 23 Nov 2020 08:10:14 GMT"
],
"Content-Length": [
- "905"
+ "435"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
@@ -847,7 +640,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f053e599-b60c-4d86-89c7-252389a2b1ac"
+ "cdc03bdb-d7ab-4c09-852a-cbb7f4021d23"
],
"Accept-Language": [
"en-US"
@@ -870,7 +663,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "af259415-a52a-4651-a5e3-67dc1e818b27"
+ "d33c7dcb-9ea8-40f5-bd4e-6be89416d575"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -882,19 +675,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11991"
],
"x-ms-correlation-request-id": [
- "4f6a1a75-7d25-40c4-82fb-27be5bea7225"
+ "8a747c30-da39-44bc-9881-4ae010080771"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115443Z:4f6a1a75-7d25-40c4-82fb-27be5bea7225"
+ "CENTRALINDIA:20201123T081020Z:8a747c30-da39-44bc-9881-4ae010080771"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:42 GMT"
+ "Mon, 23 Nov 2020 08:10:19 GMT"
],
"Content-Length": [
"905"
@@ -906,7 +699,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"C1CC3D2E3BC3E583D4235D975B53A5962F2DB2AD\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -916,7 +709,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6cad80da-a7c5-4336-a892-23a735310710"
+ "8f9164d3-8015-424c-acdc-bb602083a0b7"
],
"Accept-Language": [
"en-US"
@@ -936,16 +729,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11999"
],
"x-ms-request-id": [
- "60d0572c-5932-4625-928c-e943748a9957"
+ "d2ec0fc5-c2c1-46e1-b0c5-8056429a7613"
],
"x-ms-correlation-request-id": [
- "60d0572c-5932-4625-928c-e943748a9957"
+ "d2ec0fc5-c2c1-46e1-b0c5-8056429a7613"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115442Z:60d0572c-5932-4625-928c-e943748a9957"
+ "WESTINDIA:20201123T081021Z:d2ec0fc5-c2c1-46e1-b0c5-8056429a7613"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -954,7 +747,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:41 GMT"
+ "Mon, 23 Nov 2020 08:10:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -963,10 +756,10 @@
"-1"
],
"Content-Length": [
- "485"
+ "253"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -976,7 +769,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb0f028d-b026-4ce7-af98-f8bbdcd4290e"
+ "091df364-dba3-4384-b7f7-bdebedef2c82"
],
"Accept-Language": [
"en-US"
@@ -999,7 +792,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a92a2c0f-c3cc-496d-bc3d-ea30b9b7b227"
+ "8e1554f1-b1ee-45eb-a79a-72329af64148"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1011,19 +804,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11990"
],
"x-ms-correlation-request-id": [
- "bb3e7b1f-15e9-4833-acb2-8ff91d850ec5"
+ "3a078361-9cc6-4020-9a4d-36c1869df521"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115442Z:bb3e7b1f-15e9-4833-acb2-8ff91d850ec5"
+ "CENTRALINDIA:20201123T081021Z:3a078361-9cc6-4020-9a4d-36c1869df521"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:42 GMT"
+ "Mon, 23 Nov 2020 08:10:21 GMT"
],
"Content-Length": [
"930"
@@ -1035,73 +828,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "DELETE",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "709baf40-bc91-4831-800b-99b3b17a1b20"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "c7a5fd69-81f7-4d33-be47-be3b4241f207"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
- ],
- "x-ms-correlation-request-id": [
- "bc447a83-f2bd-441b-98ac-53da688312b2"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115449Z:bc447a83-f2bd-441b-98ac-53da688312b2"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:54:48 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"D6CCF51819274501188BEA29AD17FFF3FBB386CD\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
index ba069a67241b..9aeb6a25bcc1 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60feb1dc-cc38-4cb8-b03a-dae84de5c67b"
+ "d3c5d538-152a-414f-a4c6-f7242f658f1a"
],
"Accept-Language": [
"en-US"
@@ -33,7 +33,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e0a189e4-5ecc-4df2-8935-179c23c0b16c"
+ "480db5d5-ca88-4baf-b0dd-fc12fb46a8cc"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,91 +45,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-correlation-request-id": [
- "e7b1de4b-6073-42e1-8fad-429320c2a48d"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115356Z:e7b1de4b-6073-42e1-8fad-429320c2a48d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:55 GMT"
- ],
- "Content-Length": [
- "5667"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:49:48.12\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "801659c9-5637-4620-8c6d-7ca7b1b7a584"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "\"1D6BDA0EA87E580\""
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "a6ca2ba7-b03a-4816-910d-b0ec1c457f56"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11998"
],
"x-ms-correlation-request-id": [
- "022a95d6-5784-4b70-a86d-9478d1da14e4"
+ "86cce3ef-921b-4c01-b120-8b7d10940dae"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115426Z:022a95d6-5784-4b70-a86d-9478d1da14e4"
+ "WESTINDIA:20201123T080915Z:86cce3ef-921b-4c01-b120-8b7d10940dae"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:25 GMT"
+ "Mon, 23 Nov 2020 08:09:15 GMT"
],
"Content-Length": [
"5667"
@@ -151,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a831501e-3fc4-44cc-bfa8-55260a920b04"
+ "c743a2f3-1d92-4757-a27a-22c34d92c539"
],
"Accept-Language": [
"en-US"
@@ -174,7 +102,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "99f4605b-c245-402d-87f7-61be33e66982"
+ "08c9ccb9-3d60-48d9-bb85-30291c992db4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,88 +114,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-correlation-request-id": [
- "0efc607d-f04c-4c0b-98cf-daa4215cbbf6"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115356Z:0efc607d-f04c-4c0b-98cf-daa4215cbbf6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:56 GMT"
- ],
- "Content-Length": [
- "3638"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 \"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 },\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 \"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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "24ceb553-f50e-4571-8cc6-ef5a207eaa22"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "f3731cb2-9743-4339-a15f-88f5bcd3fefd"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11997"
],
"x-ms-correlation-request-id": [
- "21ce68ec-1f33-4292-a7e6-ca23b9bf6ad3"
+ "0237aca5-476f-4c57-a841-027bbe10dc0b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115426Z:21ce68ec-1f33-4292-a7e6-ca23b9bf6ad3"
+ "WESTINDIA:20201123T080917Z:0237aca5-476f-4c57-a841-027bbe10dc0b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:25 GMT"
+ "Mon, 23 Nov 2020 08:09:17 GMT"
],
"Content-Length": [
"3638"
@@ -289,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3aa26ff-1f99-42a8-bf50-5e7ad343a77a"
+ "bad7edb1-1ba3-4ec6-8bd4-e52e5c0093a6"
],
"Accept-Language": [
"en-US"
@@ -312,7 +171,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "07e96bc2-a5a0-4673-8e2a-ce9fe508ceeb"
+ "5566750b-9d66-4f6b-8575-4df162409bef"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -327,85 +186,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "674f033d-5b33-4261-81fd-8f31f1dff222"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115357Z:674f033d-5b33-4261-81fd-8f31f1dff222"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:57 GMT"
- ],
- "Content-Length": [
- "755"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "acef4267-bf61-416f-a44b-6165ff0c5521"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "d466b099-c92a-4e46-9fc7-7b7931de6a21"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
- ],
- "x-ms-correlation-request-id": [
- "711906b7-c4d4-47c6-9219-5eba09c00bd2"
+ "b76c6dc6-1f06-47c1-9e66-470f3f7276b0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115426Z:711906b7-c4d4-47c6-9219-5eba09c00bd2"
+ "WESTINDIA:20201123T080919Z:b76c6dc6-1f06-47c1-9e66-470f3f7276b0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:26 GMT"
+ "Mon, 23 Nov 2020 08:09:19 GMT"
],
"Content-Length": [
"755"
@@ -427,7 +217,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e2fa40d0-b7be-41e8-b206-913f1587c3a6"
+ "34b5ecd2-84c2-457d-8ded-48f69750828f"
],
"Accept-Language": [
"en-US"
@@ -450,7 +240,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8e7dce7b-4502-446a-b4b8-efd7160cc83e"
+ "dd4357d7-ae3e-4383-9130-77730aa5be22"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -465,85 +255,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "f83ffd8e-01b0-40c6-82ae-4b2d1075c7eb"
+ "1794f064-6511-4d74-96b8-403140b3d314"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115358Z:f83ffd8e-01b0-40c6-82ae-4b2d1075c7eb"
+ "WESTINDIA:20201123T080919Z:1794f064-6511-4d74-96b8-403140b3d314"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:57 GMT"
- ],
- "Content-Length": [
- "305"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "fbc64152-801b-4525-a27b-c82dfa46b128"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "a8473ff4-67b5-4925-b7d8-28f3de3ba1c3"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
- ],
- "x-ms-correlation-request-id": [
- "768880d3-df2b-42ce-9932-0ffa5e14d215"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115427Z:768880d3-df2b-42ce-9932-0ffa5e14d215"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:54:26 GMT"
+ "Mon, 23 Nov 2020 08:09:19 GMT"
],
"Content-Length": [
"305"
@@ -565,7 +286,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f0e12ffa-67d4-43f3-8fe2-fd9263fdf77a"
+ "74461ce4-8855-4eba-9cf5-91348437de2e"
],
"Accept-Language": [
"en-US"
@@ -588,7 +309,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "36a4db8a-26e0-4002-9373-292ba4d3fcd4"
+ "e9241e95-c5ec-4e1b-a5ab-662a8de9ed97"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -603,85 +324,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "5780bf19-1512-408e-9fea-b0f6d95bf011"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115358Z:5780bf19-1512-408e-9fea-b0f6d95bf011"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:58 GMT"
- ],
- "Content-Length": [
- "302"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "db481d58-8d64-408d-9901-44f9f2726883"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "d430969b-3f85-406f-822e-317327f096b0"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
- ],
- "x-ms-correlation-request-id": [
- "2d299b1e-9e83-47cd-9f45-d4efb48369ef"
+ "c3521294-1759-461e-98ba-7479b6ea230e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115427Z:2d299b1e-9e83-47cd-9f45-d4efb48369ef"
+ "WESTINDIA:20201123T080920Z:c3521294-1759-461e-98ba-7479b6ea230e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:27 GMT"
+ "Mon, 23 Nov 2020 08:09:20 GMT"
],
"Content-Length": [
"302"
@@ -703,7 +355,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"testslot.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "35b88b2d-4c45-4c95-82b4-c74cd593f54c"
+ "27f0c5e2-f098-4a3e-9a44-2b33457d6f41"
],
"Accept-Language": [
"en-US"
@@ -729,7 +381,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net/operationresults/08eb41fc-99c5-440a-88e7-e572dc6324e8?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net/operationresults/6311e281-058d-4701-be4d-dc20d5428901?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -750,19 +402,19 @@
"1199"
],
"x-ms-request-id": [
- "b2905249-344b-4ddb-a61d-661fddd12041"
+ "a0664953-b611-41ca-90d1-fcddb6191c39"
],
"x-ms-correlation-request-id": [
- "b2905249-344b-4ddb-a61d-661fddd12041"
+ "a0664953-b611-41ca-90d1-fcddb6191c39"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115407Z:b2905249-344b-4ddb-a61d-661fddd12041"
+ "WESTINDIA:20201123T080930Z:a0664953-b611-41ca-90d1-fcddb6191c39"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:07 GMT"
+ "Mon, 23 Nov 2020 08:09:30 GMT"
],
"Expires": [
"-1"
@@ -781,76 +433,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "91e83f6b-e8ae-4d3f-a7d8-d9cf57a632e6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "9d66e3ca-aacd-41ed-9c94-ec505da1642d"
- ],
- "x-ms-correlation-request-id": [
- "9d66e3ca-aacd-41ed-9c94-ec505da1642d"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115408Z:9d66e3ca-aacd-41ed-9c94-ec505da1642d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:54:07 GMT"
- ],
- "Content-Length": [
- "455"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bbc67be7-5418-4674-9d00-1fb419b82d27"
+ "c3515ec8-0e16-41c5-95b2-3802de63d846"
],
"Accept-Language": [
"en-US"
@@ -885,19 +468,19 @@
"11996"
],
"x-ms-request-id": [
- "27f191ba-e4ef-4478-bc35-730a3058865f"
+ "47d9caf4-c7c1-4ac5-a4a3-c77e057d149b"
],
"x-ms-correlation-request-id": [
- "27f191ba-e4ef-4478-bc35-730a3058865f"
+ "47d9caf4-c7c1-4ac5-a4a3-c77e057d149b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115413Z:27f191ba-e4ef-4478-bc35-730a3058865f"
+ "WESTINDIA:20201123T080931Z:47d9caf4-c7c1-4ac5-a4a3-c77e057d149b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:13 GMT"
+ "Mon, 23 Nov 2020 08:09:30 GMT"
],
"Content-Length": [
"455"
@@ -919,7 +502,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4cdb562b-a270-4b7d-92e1-9849c5edb7a8"
+ "08467b36-e370-4af0-bd6c-5b24461ab1bf"
],
"Accept-Language": [
"en-US"
@@ -954,19 +537,19 @@
"11995"
],
"x-ms-request-id": [
- "db5937c5-6871-4b4e-94df-c8d1438cb6c5"
+ "7185dc61-00f5-48ea-a9bf-a9065bb70d04"
],
"x-ms-correlation-request-id": [
- "db5937c5-6871-4b4e-94df-c8d1438cb6c5"
+ "7185dc61-00f5-48ea-a9bf-a9065bb70d04"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115419Z:db5937c5-6871-4b4e-94df-c8d1438cb6c5"
+ "WESTINDIA:20201123T080936Z:7185dc61-00f5-48ea-a9bf-a9065bb70d04"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:19 GMT"
+ "Mon, 23 Nov 2020 08:09:36 GMT"
],
"Content-Length": [
"455"
@@ -988,7 +571,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2a5cca5a-4781-435a-8df8-f4539df38ac7"
+ "3809c738-5009-4403-a4a3-172fddcc612e"
],
"Accept-Language": [
"en-US"
@@ -1011,7 +594,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1e9b5437-44cf-432a-acb9-41840b9c0ade"
+ "8cb1fb0a-ccd8-4de3-a2e1-3384b9a1aaad"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1026,19 +609,19 @@
"11994"
],
"x-ms-correlation-request-id": [
- "114bba57-cb65-4831-abc1-2eebe7bce992"
+ "28b92a42-98a3-4237-b088-5edcfea0ad8f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115425Z:114bba57-cb65-4831-abc1-2eebe7bce992"
+ "WESTINDIA:20201123T080942Z:28b92a42-98a3-4237-b088-5edcfea0ad8f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:24 GMT"
+ "Mon, 23 Nov 2020 08:09:41 GMT"
],
"Content-Length": [
- "930"
+ "890"
],
"Content-Type": [
"application/json"
@@ -1047,7 +630,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"D6CCF51819274501188BEA29AD17FFF3FBB386CD\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1057,7 +640,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c68c70de-76f8-499c-a4bc-eaf2d417f2ac"
+ "d3f1b625-a645-462b-980a-1dd0de381bec"
],
"Accept-Language": [
"en-US"
@@ -1077,16 +660,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11999"
],
"x-ms-request-id": [
- "873db81f-c159-45b4-92ad-68af52a104e1"
+ "38754c4a-bed1-4663-ba0a-52b84efb2101"
],
"x-ms-correlation-request-id": [
- "873db81f-c159-45b4-92ad-68af52a104e1"
+ "38754c4a-bed1-4663-ba0a-52b84efb2101"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115428Z:873db81f-c159-45b4-92ad-68af52a104e1"
+ "CENTRALINDIA:20201123T080942Z:38754c4a-bed1-4663-ba0a-52b84efb2101"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1095,7 +678,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:27 GMT"
+ "Mon, 23 Nov 2020 08:09:42 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1104,79 +687,10 @@
"-1"
],
"Content-Length": [
- "243"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "bd8215d3-dc25-4be6-8842-7e594d8e6e32"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "51622826-d19b-4c2c-93a9-1b145363bf65"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-correlation-request-id": [
- "965b3b91-0cb6-48a9-bae3-0cfce615aedf"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115428Z:965b3b91-0cb6-48a9-bae3-0cfce615aedf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:54:28 GMT"
- ],
- "Content-Length": [
- "905"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
+ "12"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
index 54af6197a9c5..709bfaa96e45 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "38544cc6-a7a8-4740-90f4-afcdb2352872"
+ "23fb275d-48a6-4eb8-8cc5-729c44b44301"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA12512920B\""
+ "\"1D6BEA1474B3C15\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ba837194-a222-4777-837c-8ce6e1c7f0df"
+ "2a177284-a6d5-45c1-9a6c-5418c69cb828"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,19 +45,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11999"
],
"x-ms-correlation-request-id": [
- "279b7cf9-93cf-41f8-859c-63bd23c7c1b2"
+ "703e16be-224f-41ce-8dc7-db3054f412c2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115455Z:279b7cf9-93cf-41f8-859c-63bd23c7c1b2"
+ "CENTRALINDIA:20201123T080755Z:703e16be-224f-41ce-8dc7-db3054f412c2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:54 GMT"
+ "Mon, 23 Nov 2020 08:07:54 GMT"
],
"Content-Length": [
"5537"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-19T18:24:54.9133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d1b4cfd5-0bfb-428a-9905-292d2149b627"
+ "c17ce73e-3cf5-450b-a007-70db39425fdf"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA12512920B\""
+ "\"1D6BEA1474B3C15\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9bd335d3-88f6-4eb2-a1dc-c0273b27edba"
+ "10838b27-f2df-4aac-8642-36ff9d8bb9ac"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,19 +117,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11994"
],
"x-ms-correlation-request-id": [
- "a8c6b9b2-4df0-44b2-8888-eb949b2b160f"
+ "4f42df2c-9b67-400c-bffa-812bba2df931"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115529Z:a8c6b9b2-4df0-44b2-8888-eb949b2b160f"
+ "CENTRALINDIA:20201123T080819Z:4f42df2c-9b67-400c-bffa-812bba2df931"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:29 GMT"
+ "Mon, 23 Nov 2020 08:08:19 GMT"
],
"Content-Length": [
"5537"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-19T18:24:54.9133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "977aa130-5956-4e7d-9bcf-8faccf605021"
+ "0423db46-15af-402a-bed0-a8d3351340c2"
],
"Accept-Language": [
"en-US"
@@ -171,13 +171,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA1B8D59E00\""
+ "\"1D6C16FD16E3680\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7e64eb59-c2e0-44e2-bd96-65a9119a6361"
+ "abb2a1c8-f76c-4939-87ee-728446c506a3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,19 +189,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11992"
],
"x-ms-correlation-request-id": [
- "6efc4394-1344-4cb1-81ad-fce045f9d5da"
+ "2bd7708f-e1a9-4e37-bf3a-c6021a612542"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115537Z:6efc4394-1344-4cb1-81ad-fce045f9d5da"
+ "CENTRALINDIA:20201123T080829Z:2bd7708f-e1a9-4e37-bf3a-c6021a612542"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:36 GMT"
+ "Mon, 23 Nov 2020 08:08:28 GMT"
],
"Content-Length": [
"5572"
@@ -213,7 +213,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -223,7 +223,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "43c02961-bfd8-4aed-b7c0-992270e82757"
+ "492ba283-9f50-4d88-95d0-e9e130ceefc0"
],
"Accept-Language": [
"en-US"
@@ -243,13 +243,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA1B8D59E00\""
+ "\"1D6C16FD16E3680\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2c98d8cd-d7bb-4b1b-bf1c-3881a80932c6"
+ "6f028294-dc63-4b21-8426-74689a874944"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -261,19 +261,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11990"
],
"x-ms-correlation-request-id": [
- "ce4e5cc9-ca33-4a02-8af5-bc31c17d7255"
+ "c49b31d3-2d05-4f1b-9a00-519d9c333fc4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115541Z:ce4e5cc9-ca33-4a02-8af5-bc31c17d7255"
+ "CENTRALINDIA:20201123T080832Z:c49b31d3-2d05-4f1b-9a00-519d9c333fc4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:41 GMT"
+ "Mon, 23 Nov 2020 08:08:32 GMT"
],
"Content-Length": [
"5572"
@@ -285,7 +285,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -295,7 +295,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55d5ce55-3dd2-47ad-bf61-bbe2907f8535"
+ "e0edc65e-c803-4925-bee2-122e8a6fdc33"
],
"Accept-Language": [
"en-US"
@@ -315,13 +315,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA1B8D59E00\""
+ "\"1D6C16FD16E3680\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7b22dc9a-2c6f-4b22-bc5a-18ef30916cd1"
+ "c0997fd2-2462-439f-8635-66d94ed2a443"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -333,19 +333,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11988"
],
"x-ms-correlation-request-id": [
- "5e46277a-0b3c-4214-9e42-ecd28b5b2e83"
+ "964bd20e-abc0-4f67-ac59-a22aaa9ce337"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115545Z:5e46277a-0b3c-4214-9e42-ecd28b5b2e83"
+ "CENTRALINDIA:20201123T080835Z:964bd20e-abc0-4f67-ac59-a22aaa9ce337"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:44 GMT"
+ "Mon, 23 Nov 2020 08:08:34 GMT"
],
"Content-Length": [
"5572"
@@ -357,7 +357,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -367,7 +367,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f78393b3-8b27-43f7-8c04-6060b4bd0f3a"
+ "c23e14c8-62f0-42da-bc96-7e192c829825"
],
"Accept-Language": [
"en-US"
@@ -387,13 +387,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA1B8D59E00\""
+ "\"1D6C16FD16E3680\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d94fc005-95d7-4025-a1ee-ff553a6149ee"
+ "6ed449e5-fac9-4e95-94f1-5ab862a2841d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -405,19 +405,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11986"
],
"x-ms-correlation-request-id": [
- "36514c26-0648-4c2c-b23d-ad44b2c75436"
+ "cdda5fdc-9295-483d-973f-abf2fbe62ff8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115548Z:36514c26-0648-4c2c-b23d-ad44b2c75436"
+ "CENTRALINDIA:20201123T080838Z:cdda5fdc-9295-483d-973f-abf2fbe62ff8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:47 GMT"
+ "Mon, 23 Nov 2020 08:08:37 GMT"
],
"Content-Length": [
"5572"
@@ -429,17 +429,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1c6c3df3-0ee6-46f9-9a46-aa7218a81529"
+ "ca950f49-e4ec-46b2-b581-6440daf5583c"
],
"Accept-Language": [
"en-US"
@@ -458,14 +458,11 @@
"Pragma": [
"no-cache"
],
- "ETag": [
- "\"1D6BDA1C36A8F95\""
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "205f3e0d-c6f9-42e7-8e62-db62e2028999"
+ "ad64321e-ede3-493f-860e-4f38ae632ebb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -477,22 +474,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
+ "11998"
],
"x-ms-correlation-request-id": [
- "af2d13b8-7247-4c54-964a-4c86374c9322"
+ "07ed8bda-ba3b-4d13-8075-82d5deddab91"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115600Z:af2d13b8-7247-4c54-964a-4c86374c9322"
+ "CENTRALINDIA:20201123T080756Z:07ed8bda-ba3b-4d13-8075-82d5deddab91"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:56:00 GMT"
+ "Mon, 23 Nov 2020 08:07:55 GMT"
],
"Content-Length": [
- "5537"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -501,7 +498,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:51.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
@@ -511,7 +508,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "784bd374-43e6-4757-a2d4-e0b4b2703d30"
+ "e6cdb60b-3233-4bf5-9292-bb756781902f"
],
"Accept-Language": [
"en-US"
@@ -534,7 +531,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "05335a42-ed3e-48e7-97d4-bca7e6fa71ce"
+ "0ba2556b-e0bd-46f9-863c-7909bc356990"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -546,19 +543,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11993"
],
"x-ms-correlation-request-id": [
- "215072bf-db3f-4caa-ade0-9389434bace4"
+ "89ad02d0-b47c-4dc6-8f7f-e642e8761325"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115456Z:215072bf-db3f-4caa-ade0-9389434bace4"
+ "CENTRALINDIA:20201123T080820Z:89ad02d0-b47c-4dc6-8f7f-e642e8761325"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:55 GMT"
+ "Mon, 23 Nov 2020 08:08:20 GMT"
],
"Content-Length": [
"4103"
@@ -580,7 +577,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82f937ca-d397-4e34-af27-0e90fd821d9d"
+ "576f7a79-62cf-44cc-a61b-5c3388da493f"
],
"Accept-Language": [
"en-US"
@@ -603,7 +600,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1e372de3-e955-4275-a976-9009a82746f5"
+ "3f296328-8eca-4560-8085-573b54c32288"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -615,19 +612,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11991"
],
"x-ms-correlation-request-id": [
- "fb1ac926-ce62-4ffc-ac23-76b1b5e3930a"
+ "af642d1a-d0be-4f9f-b7e4-03cce51e022e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115530Z:fb1ac926-ce62-4ffc-ac23-76b1b5e3930a"
+ "CENTRALINDIA:20201123T080830Z:af642d1a-d0be-4f9f-b7e4-03cce51e022e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:30 GMT"
+ "Mon, 23 Nov 2020 08:08:29 GMT"
],
"Content-Length": [
"4103"
@@ -649,7 +646,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "06fa1834-3363-45a8-923e-1ebea2dfcd0f"
+ "1b173a70-4820-4aad-a85d-7ea6ed41ef4b"
],
"Accept-Language": [
"en-US"
@@ -672,7 +669,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "37dbeee4-6451-4019-8b64-bd0ef368d03c"
+ "3e88f4da-f002-4686-9559-575259e69f48"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -684,19 +681,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11989"
],
"x-ms-correlation-request-id": [
- "304118dc-c356-41a2-9c22-d4778b930e3a"
+ "e1d186ff-4883-457f-9166-85585522a702"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115538Z:304118dc-c356-41a2-9c22-d4778b930e3a"
+ "CENTRALINDIA:20201123T080832Z:e1d186ff-4883-457f-9166-85585522a702"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:37 GMT"
+ "Mon, 23 Nov 2020 08:08:32 GMT"
],
"Content-Length": [
"4103"
@@ -718,7 +715,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "68db8b32-cc0d-4a12-99a5-79c768f6a968"
+ "944fd550-4135-42ba-a5b4-c53e15c8117e"
],
"Accept-Language": [
"en-US"
@@ -741,7 +738,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cd429611-ddd6-4bfa-bf01-e6a23b4cfc90"
+ "bd94d697-bd43-4afa-94a0-4aa2ef13577c"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -753,19 +750,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11987"
],
"x-ms-correlation-request-id": [
- "3d23b153-6e7a-4783-a6ad-fc77fbfec820"
+ "c7e6fa90-1501-4e38-b45b-96eaf841012e"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115542Z:3d23b153-6e7a-4783-a6ad-fc77fbfec820"
+ "CENTRALINDIA:20201123T080836Z:c7e6fa90-1501-4e38-b45b-96eaf841012e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:41 GMT"
+ "Mon, 23 Nov 2020 08:08:35 GMT"
],
"Content-Length": [
"4103"
@@ -787,7 +784,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ac0e695-1194-4ccc-bd4d-3eecb91cb8f3"
+ "7b421781-3208-4f36-986e-9f3048c301d4"
],
"Accept-Language": [
"en-US"
@@ -810,7 +807,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a198ad16-c44d-4b76-a776-a390199b7a9a"
+ "b76fe9f7-44eb-41a6-82c5-82baf09ceeec"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -822,19 +819,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11985"
],
"x-ms-correlation-request-id": [
- "61a83d83-95ba-4e8a-aea7-7bd5b9ffb0ce"
+ "8d6e660d-65af-42b8-877a-5c681d50c4d6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115545Z:61a83d83-95ba-4e8a-aea7-7bd5b9ffb0ce"
+ "CENTRALINDIA:20201123T080838Z:8d6e660d-65af-42b8-877a-5c681d50c4d6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:45 GMT"
+ "Mon, 23 Nov 2020 08:08:38 GMT"
],
"Content-Length": [
"4103"
@@ -850,13 +847,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f663fbef-f047-4489-927a-aab3e9f5ff34"
+ "6537cd7e-5e60-4bff-94f0-6dcae679c8be"
],
"Accept-Language": [
"en-US"
@@ -879,7 +876,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8c7866ac-0080-4951-ac44-2899ca0c2376"
+ "ea4172e6-da73-4129-9a72-f83471a983f0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -890,23 +887,23 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11999"
],
"x-ms-correlation-request-id": [
- "f73355fb-6356-4cf7-9fd1-18b2cc8cad73"
+ "268a74fe-bac6-415c-90cd-b52d589358e7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115548Z:f73355fb-6356-4cf7-9fd1-18b2cc8cad73"
+ "CENTRALINDIA:20201123T080756Z:268a74fe-bac6-415c-90cd-b52d589358e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:48 GMT"
+ "Mon, 23 Nov 2020 08:07:56 GMT"
],
"Content-Length": [
- "4103"
+ "740"
],
"Content-Type": [
"application/json"
@@ -915,17 +912,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6e77ba12-222f-4032-bc25-8402d3011889"
+ "7c99787d-fd87-455f-abd1-80e35a865ee6"
],
"Accept-Language": [
"en-US"
@@ -948,7 +945,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f75e6dc9-0af5-4b01-aadd-3c4a48b90fdf"
+ "22651df4-e36f-405c-969c-1bf58b7d19e9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -959,23 +956,23 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11996"
],
"x-ms-correlation-request-id": [
- "f6732418-4142-4be9-909f-f3729bb32a5e"
+ "76b4c4b9-7ff4-45db-8ffb-9c3fa34d174b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115601Z:f6732418-4142-4be9-909f-f3729bb32a5e"
+ "CENTRALINDIA:20201123T080821Z:76b4c4b9-7ff4-45db-8ffb-9c3fa34d174b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:56:00 GMT"
+ "Mon, 23 Nov 2020 08:08:21 GMT"
],
"Content-Length": [
- "4103"
+ "740"
],
"Content-Type": [
"application/json"
@@ -984,7 +981,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -994,7 +991,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d870bf4-e5c8-42db-ac34-51c3ba66c917"
+ "d5266c7b-31da-42fa-9144-d338d827c43f"
],
"Accept-Language": [
"en-US"
@@ -1017,7 +1014,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7ca551b1-1c46-46c2-ad53-46e028f07ea5"
+ "fbefc037-d51a-4974-b46e-415289386626"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1029,19 +1026,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
+ "11993"
],
"x-ms-correlation-request-id": [
- "a3cc5e0f-2a3c-411e-ae1c-67634eddf2c8"
+ "40f88dbb-44ab-4eec-b0c9-0c0bc1889fd2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115457Z:a3cc5e0f-2a3c-411e-ae1c-67634eddf2c8"
+ "CENTRALINDIA:20201123T080830Z:40f88dbb-44ab-4eec-b0c9-0c0bc1889fd2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:56 GMT"
+ "Mon, 23 Nov 2020 08:08:29 GMT"
],
"Content-Length": [
"740"
@@ -1063,7 +1060,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "15fb8a00-3911-4be2-ab10-81c36e346c75"
+ "26fb60a9-cd24-41f5-9740-fed0700b79e3"
],
"Accept-Language": [
"en-US"
@@ -1086,7 +1083,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e3b020b6-dee0-4e44-b0a1-525b0d2397ae"
+ "40260e93-d431-4b62-ada8-2e5bcde661a5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1098,19 +1095,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
+ "11990"
],
"x-ms-correlation-request-id": [
- "11e2474b-f2ec-40db-8151-bb248658ef78"
+ "b1461e62-5661-4641-930f-70566585ea4b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115530Z:11e2474b-f2ec-40db-8151-bb248658ef78"
+ "CENTRALINDIA:20201123T080833Z:b1461e62-5661-4641-930f-70566585ea4b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:30 GMT"
+ "Mon, 23 Nov 2020 08:08:32 GMT"
],
"Content-Length": [
"740"
@@ -1132,7 +1129,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6d317933-aa18-417a-9522-ec3e4f8310c7"
+ "846c702a-5aa8-44f7-8748-9169e104c9a3"
],
"Accept-Language": [
"en-US"
@@ -1155,7 +1152,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "014dc612-664e-414f-9531-90297b2a3674"
+ "c8b58d37-d42b-4e95-be9e-6af401ac7f40"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1167,19 +1164,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11993"
+ "11987"
],
"x-ms-correlation-request-id": [
- "0d80e97f-f95a-470a-96e9-bb021b86e0aa"
+ "ee167025-7154-4469-b88c-4d1f6ab76e55"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115539Z:0d80e97f-f95a-470a-96e9-bb021b86e0aa"
+ "CENTRALINDIA:20201123T080836Z:ee167025-7154-4469-b88c-4d1f6ab76e55"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:38 GMT"
+ "Mon, 23 Nov 2020 08:08:36 GMT"
],
"Content-Length": [
"740"
@@ -1201,7 +1198,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "cbee6484-2d11-4300-851c-04d987af82fb"
+ "c0f67d19-f7a8-4c6e-b1c8-272bf88326de"
],
"Accept-Language": [
"en-US"
@@ -1224,7 +1221,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "571bb889-1c0c-44c3-a9eb-1915d4aa8d41"
+ "7169752a-9c5c-4cfc-a636-bc8dca0899d8"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1236,19 +1233,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11990"
+ "11984"
],
"x-ms-correlation-request-id": [
- "ce9e271a-826f-401d-af95-173a5c96f962"
+ "c8575e42-2498-4835-9200-4a5d61bcd874"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115542Z:ce9e271a-826f-401d-af95-173a5c96f962"
+ "CENTRALINDIA:20201123T080839Z:c8575e42-2498-4835-9200-4a5d61bcd874"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:42 GMT"
+ "Mon, 23 Nov 2020 08:08:38 GMT"
],
"Content-Length": [
"740"
@@ -1264,13 +1261,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f9399648-8d2c-4b99-ad8a-5cc1a5830e96"
+ "dda73ab6-1ac0-4764-bd3f-28dcc0f80a38"
],
"Accept-Language": [
"en-US"
@@ -1293,7 +1290,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2067cf69-a847-4d17-8363-3427432e1888"
+ "d3239eaf-7112-4d47-b5a1-aa65bfdb6077"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1305,22 +1302,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11987"
+ "11998"
],
"x-ms-correlation-request-id": [
- "70c67815-eb4e-4919-9897-cf2e6d4f34d8"
+ "2f0a7abc-c207-464c-9c9e-916e1f778fe3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115546Z:70c67815-eb4e-4919-9897-cf2e6d4f34d8"
+ "CENTRALINDIA:20201123T080757Z:2f0a7abc-c207-464c-9c9e-916e1f778fe3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:45 GMT"
+ "Mon, 23 Nov 2020 08:07:56 GMT"
],
"Content-Length": [
- "740"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1329,17 +1326,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "22d8e598-f55f-4c9a-bcdb-9d319cd806c5"
+ "f20878b8-d272-4759-a166-cb91138d3d6d"
],
"Accept-Language": [
"en-US"
@@ -1362,7 +1359,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6aad22de-af77-429d-956b-fccaa114dfc5"
+ "bff13b4d-ec15-4091-b099-a7920921b57e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1374,22 +1371,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11984"
+ "11995"
],
"x-ms-correlation-request-id": [
- "fc7dcd7b-b3e1-4d3e-8c69-1724cb2920b4"
+ "a40c661b-04f5-4d07-b74d-f0e98a95d157"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115549Z:fc7dcd7b-b3e1-4d3e-8c69-1724cb2920b4"
+ "CENTRALINDIA:20201123T080822Z:a40c661b-04f5-4d07-b74d-f0e98a95d157"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:48 GMT"
+ "Mon, 23 Nov 2020 08:08:22 GMT"
],
"Content-Length": [
- "740"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1398,17 +1395,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "256b4ac6-b720-4773-9878-9b3b4c841d7a"
+ "f36c40ad-119d-4bbd-8198-0f6f16efb21f"
],
"Accept-Language": [
"en-US"
@@ -1431,7 +1428,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6a117c66-5890-4334-87f1-27029b73cd47"
+ "43bf8065-5e1d-4b9b-a93c-7a23d9b8d58f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1443,22 +1440,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11981"
+ "11992"
],
"x-ms-correlation-request-id": [
- "18188d2b-e616-4f4e-a5af-f16ed4c2545e"
+ "870c0fc4-f948-4d04-976a-542d5f9d6272"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115601Z:18188d2b-e616-4f4e-a5af-f16ed4c2545e"
+ "CENTRALINDIA:20201123T080831Z:870c0fc4-f948-4d04-976a-542d5f9d6272"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:56:01 GMT"
+ "Mon, 23 Nov 2020 08:08:31 GMT"
],
"Content-Length": [
- "740"
+ "290"
],
"Content-Type": [
"application/json"
@@ -1467,7 +1464,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
@@ -1477,7 +1474,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "353948c6-24a6-40a4-b330-65f2f5d73149"
+ "0d63aec5-cac1-4175-9426-f7ab4d5e2bd8"
],
"Accept-Language": [
"en-US"
@@ -1500,7 +1497,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "32062633-65e1-4979-89cf-6af0ef0dd500"
+ "f7e3d608-8179-49c6-a9c7-79d848aab302"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1512,19 +1509,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11998"
+ "11989"
],
"x-ms-correlation-request-id": [
- "016c86ff-6571-4c76-bc3a-b159fe469fce"
+ "4527659e-8c94-4a2b-b996-9a9b447fb386"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115457Z:016c86ff-6571-4c76-bc3a-b159fe469fce"
+ "CENTRALINDIA:20201123T080833Z:4527659e-8c94-4a2b-b996-9a9b447fb386"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:56 GMT"
+ "Mon, 23 Nov 2020 08:08:33 GMT"
],
"Content-Length": [
"290"
@@ -1546,7 +1543,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e163134f-ff13-45dc-8781-fea880d53e22"
+ "49029337-66b3-44e4-b4cf-512a3e7ad374"
],
"Accept-Language": [
"en-US"
@@ -1569,7 +1566,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9be8d36f-3147-4f2e-8e0c-82a58f50b2f8"
+ "3f1ee88e-857e-4851-a6c9-744a051d18a3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1581,19 +1578,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11986"
],
"x-ms-correlation-request-id": [
- "c7cb150f-47df-47f9-8eff-d0543002cc68"
+ "5f3a85f0-9c08-4d50-9095-a2171b78ce39"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115531Z:c7cb150f-47df-47f9-8eff-d0543002cc68"
+ "CENTRALINDIA:20201123T080837Z:5f3a85f0-9c08-4d50-9095-a2171b78ce39"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:31 GMT"
+ "Mon, 23 Nov 2020 08:08:36 GMT"
],
"Content-Length": [
"290"
@@ -1615,7 +1612,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2ce4b916-9b6f-4be5-8440-26408b5ab193"
+ "b1ce257c-c150-42e3-9394-46ab14dcd4a0"
],
"Accept-Language": [
"en-US"
@@ -1638,7 +1635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "069cdb09-dbec-45ec-a856-60e0d9618bb2"
+ "268c3c81-672f-4dbf-bc4a-7d6e093321b7"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1650,19 +1647,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11992"
+ "11983"
],
"x-ms-correlation-request-id": [
- "65c238c2-9958-4893-9646-076b19163bff"
+ "a4671464-2566-4069-9ded-3b312b8eb3f9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115540Z:65c238c2-9958-4893-9646-076b19163bff"
+ "CENTRALINDIA:20201123T080840Z:a4671464-2566-4069-9ded-3b312b8eb3f9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:39 GMT"
+ "Mon, 23 Nov 2020 08:08:39 GMT"
],
"Content-Length": [
"290"
@@ -1678,13 +1675,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f57cabbe-f02f-4dc3-9609-6624954a7b71"
+ "fd6ddf53-a6b6-4c4e-9355-e8ff2a7c7360"
],
"Accept-Language": [
"en-US"
@@ -1707,7 +1704,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8c76cf2d-5397-49f0-8afc-6b518cd68d40"
+ "8a3fef6e-bb1c-4133-a8dd-1f26b05f97fa"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1719,22 +1716,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11989"
+ "11997"
],
"x-ms-correlation-request-id": [
- "b5235f82-c82d-4133-bbd5-04a59c0de0ce"
+ "2c04ad37-0d31-4713-8de8-0e4f69580fd5"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115543Z:b5235f82-c82d-4133-bbd5-04a59c0de0ce"
+ "CENTRALINDIA:20201123T080758Z:2c04ad37-0d31-4713-8de8-0e4f69580fd5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:42 GMT"
+ "Mon, 23 Nov 2020 08:07:58 GMT"
],
"Content-Length": [
- "290"
+ "287"
],
"Content-Type": [
"application/json"
@@ -1743,17 +1740,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3e5a610-4203-47ff-affd-c4bb012731c0"
+ "3e1b6463-0efc-45e4-aa63-b45eaf253232"
],
"Accept-Language": [
"en-US"
@@ -1776,7 +1773,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06665e5a-f730-4a17-aa75-29dbcc890b42"
+ "3ee86a72-30fe-420d-8268-688efd14cbb0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1788,22 +1785,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11986"
+ "11994"
],
"x-ms-correlation-request-id": [
- "ca04839a-2f8d-49b1-88ed-ce2366e16ee0"
+ "51c4b590-5679-4137-9efb-017ae6f39780"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115547Z:ca04839a-2f8d-49b1-88ed-ce2366e16ee0"
+ "CENTRALINDIA:20201123T080823Z:51c4b590-5679-4137-9efb-017ae6f39780"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:46 GMT"
+ "Mon, 23 Nov 2020 08:08:22 GMT"
],
"Content-Length": [
- "290"
+ "287"
],
"Content-Type": [
"application/json"
@@ -1812,17 +1809,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "40e38c91-03ee-46cd-bfc7-646c5bb98c9c"
+ "78969afd-62c1-40dc-898a-61b720717d2e"
],
"Accept-Language": [
"en-US"
@@ -1845,7 +1842,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "95584df6-6c58-4ed5-b1e6-f7ea71582a6b"
+ "4991fbbc-d471-4e95-bc50-c8d8740ef949"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1857,22 +1854,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11983"
+ "11991"
],
"x-ms-correlation-request-id": [
- "1fbd34f1-5b99-4807-9f6b-5670526475ed"
+ "4122190c-f57d-4e22-a11b-c74738af6e29"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115550Z:1fbd34f1-5b99-4807-9f6b-5670526475ed"
+ "CENTRALINDIA:20201123T080831Z:4122190c-f57d-4e22-a11b-c74738af6e29"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:49 GMT"
+ "Mon, 23 Nov 2020 08:08:31 GMT"
],
"Content-Length": [
- "290"
+ "287"
],
"Content-Type": [
"application/json"
@@ -1881,17 +1878,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67bef060-fe89-44f5-9f0e-0e1643ce7967"
+ "1e1e6c9b-a0af-4aca-a54a-6d0eee540bbf"
],
"Accept-Language": [
"en-US"
@@ -1914,7 +1911,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1206b403-cb1d-4d92-bb23-bcab71e7f458"
+ "6056305f-b5b0-4b4f-91c2-8b9602b54841"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1926,22 +1923,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11980"
+ "11988"
],
"x-ms-correlation-request-id": [
- "a2d40a6c-5fdb-4157-ae47-851e1bc29c51"
+ "49894d89-2f65-422e-89f6-18e17d68f0c3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115602Z:a2d40a6c-5fdb-4157-ae47-851e1bc29c51"
+ "CENTRALINDIA:20201123T080834Z:49894d89-2f65-422e-89f6-18e17d68f0c3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:56:01 GMT"
+ "Mon, 23 Nov 2020 08:08:34 GMT"
],
"Content-Length": [
- "290"
+ "287"
],
"Content-Type": [
"application/json"
@@ -1950,7 +1947,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
"StatusCode": 200
},
{
@@ -1960,7 +1957,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d7de2f64-7d7f-40b5-8ea4-82e01701b21a"
+ "8ba143d9-6739-45cb-91a9-6c3dd4f89cc2"
],
"Accept-Language": [
"en-US"
@@ -1983,7 +1980,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "cc3fee04-1ba0-4e6f-adaf-a3b3ebf4c496"
+ "662b74df-46db-433c-bdbd-386fa0dcec2b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1995,19 +1992,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11997"
+ "11985"
],
"x-ms-correlation-request-id": [
- "a6b51903-a362-4e82-aec5-07522361cf5d"
+ "757363ce-96b4-4831-ad65-128b6149bf33"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115458Z:a6b51903-a362-4e82-aec5-07522361cf5d"
+ "CENTRALINDIA:20201123T080837Z:757363ce-96b4-4831-ad65-128b6149bf33"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:54:57 GMT"
+ "Mon, 23 Nov 2020 08:08:37 GMT"
],
"Content-Length": [
"287"
@@ -2029,7 +2026,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "032f3bfb-ba20-4176-8558-f54fd31a168c"
+ "14248b88-be27-454a-b8c1-9d6477006e75"
],
"Accept-Language": [
"en-US"
@@ -2052,7 +2049,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "37157e97-fcdf-4ff3-bf0c-dec95b4bdc36"
+ "ed19cc3b-19ed-43e3-bfd6-118fcc6c72ce"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2064,19 +2061,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11982"
],
"x-ms-correlation-request-id": [
- "317eb905-29ec-41a9-9d3a-64b2e54e9815"
+ "bba9b1d5-de0f-4d8b-bd40-0fcbe5f51340"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115532Z:317eb905-29ec-41a9-9d3a-64b2e54e9815"
+ "CENTRALINDIA:20201123T080840Z:bba9b1d5-de0f-4d8b-bd40-0fcbe5f51340"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:31 GMT"
+ "Mon, 23 Nov 2020 08:08:40 GMT"
],
"Content-Length": [
"287"
@@ -2092,13 +2089,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3499fbdc-46e3-47df-9009-ec68831c9a9a"
+ "179901bd-abe7-4929-a126-8e906f159397"
],
"Accept-Language": [
"en-US"
@@ -2108,6 +2105,12 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "283"
]
},
"ResponseHeaders": {
@@ -2117,12 +2120,15 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/517e2399-bd90-46cd-9d4a-0bb5cc950e01?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "dfbe623e-7a5a-49d3-aab9-82742de1a341"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -2132,42 +2138,42 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11991"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "08b071c7-7b5c-4de7-8725-4e96fb36a200"
],
"x-ms-correlation-request-id": [
- "77c1f3d6-bcdd-4912-97b0-5f21259407d9"
+ "08b071c7-7b5c-4de7-8725-4e96fb36a200"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115540Z:77c1f3d6-bcdd-4912-97b0-5f21259407d9"
+ "CENTRALINDIA:20201123T080807Z:08b071c7-7b5c-4de7-8725-4e96fb36a200"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:40 GMT"
- ],
- "Content-Length": [
- "287"
- ],
- "Content-Type": [
- "application/json"
+ "Mon, 23 Nov 2020 08:08:06 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "83a99cf7-752a-4ec2-aed7-207d7c957cef"
+ "a34da0f2-7284-4336-b356-f842a886b12c"
],
"Accept-Language": [
"en-US"
@@ -2189,9 +2195,6 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "7111229b-e95e-4c5e-9fbd-011f94212f54"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -2201,42 +2204,45 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11988"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "0c14f6c6-8ac7-4d6e-99f9-aec19aa17042"
],
"x-ms-correlation-request-id": [
- "784d9b72-0d26-4a43-9b98-ef5b3aaf64ab"
+ "0c14f6c6-8ac7-4d6e-99f9-aec19aa17042"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115544Z:784d9b72-0d26-4a43-9b98-ef5b3aaf64ab"
+ "CENTRALINDIA:20201123T080807Z:0c14f6c6-8ac7-4d6e-99f9-aec19aa17042"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:43 GMT"
+ "Mon, 23 Nov 2020 08:08:07 GMT"
],
"Content-Length": [
- "287"
+ "435"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c2470b0f-8448-4d58-b10b-9bd8ad034eeb"
+ "2c567945-17b4-4d75-b44c-b30578cb0d86"
],
"Accept-Language": [
"en-US"
@@ -2258,9 +2264,6 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "72e55aa3-42f7-4fcf-a662-c0d2854b16f9"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -2270,42 +2273,45 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11985"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "f4bffcf3-7264-4eae-b60d-6a40c36e6788"
],
"x-ms-correlation-request-id": [
- "1d0d6bce-ea9b-44a4-9205-5ac6c8f9fb1d"
+ "f4bffcf3-7264-4eae-b60d-6a40c36e6788"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115547Z:1d0d6bce-ea9b-44a4-9205-5ac6c8f9fb1d"
+ "CENTRALINDIA:20201123T080813Z:f4bffcf3-7264-4eae-b60d-6a40c36e6788"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:47 GMT"
+ "Mon, 23 Nov 2020 08:08:12 GMT"
],
"Content-Length": [
- "287"
+ "435"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd1d760c-11bb-47df-8cbf-1abbcd47ccf0"
+ "c4b0ad6e-b4ae-4a7d-8841-3be9272665fa"
],
"Accept-Language": [
"en-US"
@@ -2328,7 +2334,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1210e14f-b888-4f96-9ae8-707e65db3000"
+ "b43915e7-d71d-427d-a2ce-37841c8771e5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2339,23 +2345,23 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11982"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
],
"x-ms-correlation-request-id": [
- "2f254df9-e8fd-43f9-bd89-b0db8455fe7f"
+ "76705f61-c541-49d8-a249-d595a00b590d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115550Z:2f254df9-e8fd-43f9-bd89-b0db8455fe7f"
+ "CENTRALINDIA:20201123T080819Z:76705f61-c541-49d8-a249-d595a00b590d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:50 GMT"
+ "Mon, 23 Nov 2020 08:08:19 GMT"
],
"Content-Length": [
- "287"
+ "905"
],
"Content-Type": [
"application/json"
@@ -2364,17 +2370,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ddbfe61-c0ff-4708-b56f-6ba5ce4614b7"
+ "f79bb45b-7efd-4707-9b6b-2a7adbef526e"
],
"Accept-Language": [
"en-US"
@@ -2397,7 +2403,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "06d2c0f2-7283-4aa0-8ee1-aa83c31c01d2"
+ "4986b750-d2b2-4af8-b893-481fbf490e8e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2408,23 +2414,23 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11979"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
],
"x-ms-correlation-request-id": [
- "fc5008b3-6cb7-477b-be67-5d3f50438323"
+ "4bce5770-ff56-4726-9fac-4f28cbee87fb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115602Z:fc5008b3-6cb7-477b-be67-5d3f50438323"
+ "CENTRALINDIA:20201123T080847Z:4bce5770-ff56-4726-9fac-4f28cbee87fb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:56:02 GMT"
+ "Mon, 23 Nov 2020 08:08:47 GMT"
],
"Content-Length": [
- "287"
+ "905"
],
"Content-Type": [
"application/json"
@@ -2433,509 +2439,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d02e0465-55d9-4408-8d55-2894800381c0"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "283"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/c85d6ab4-72f3-4245-9df4-98313e7c54ee?api-version=2020-06-01"
- ],
- "Retry-After": [
- "15"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "21ad1769-803c-4704-b26d-19da29701a23"
- ],
- "x-ms-correlation-request-id": [
- "21ad1769-803c-4704-b26d-19da29701a23"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115505Z:21ad1769-803c-4704-b26d-19da29701a23"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:05 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "9f75b287-bd9d-4d7a-a745-5498857f08a7"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-request-id": [
- "d8ad5b19-f087-4e09-a9e6-b1d40c35f7be"
- ],
- "x-ms-correlation-request-id": [
- "d8ad5b19-f087-4e09-a9e6-b1d40c35f7be"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115506Z:d8ad5b19-f087-4e09-a9e6-b1d40c35f7be"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:06 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "582c5bd7-ea7f-411c-8b81-ee18749a47cc"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-request-id": [
- "1aceca3e-d00f-426f-a0e9-3de3ea13eceb"
- ],
- "x-ms-correlation-request-id": [
- "1aceca3e-d00f-426f-a0e9-3de3ea13eceb"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115512Z:1aceca3e-d00f-426f-a0e9-3de3ea13eceb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:12 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2f859633-f366-4dca-87f5-0513d32409ed"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-request-id": [
- "840d4a29-4204-4cf3-b296-7a523dd0c4ba"
- ],
- "x-ms-correlation-request-id": [
- "840d4a29-4204-4cf3-b296-7a523dd0c4ba"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115517Z:840d4a29-4204-4cf3-b296-7a523dd0c4ba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:17 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1b66392c-0fb2-46d4-aa52-12fe7fc344af"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-request-id": [
- "8b7a4a26-8a4c-4833-b4eb-91e5c94a3111"
- ],
- "x-ms-correlation-request-id": [
- "8b7a4a26-8a4c-4833-b4eb-91e5c94a3111"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115523Z:8b7a4a26-8a4c-4833-b4eb-91e5c94a3111"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:23 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "17364c66-b5aa-485a-b1ca-183ae75976d9"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "9c66e524-d70f-4a45-b874-9b59cb936cd6"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-correlation-request-id": [
- "570c2e49-a137-47e0-88c0-2ec7f2fbab82"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115529Z:570c2e49-a137-47e0-88c0-2ec7f2fbab82"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:28 GMT"
- ],
- "Content-Length": [
- "905"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e67beae6-b725-49ad-a1fc-86242a4c16fd"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "2d50ef14-b648-4e69-b39a-d97f322a495a"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-correlation-request-id": [
- "e1bc2784-1384-40cf-b3e3-9566fff6aaf9"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115556Z:e1bc2784-1384-40cf-b3e3-9566fff6aaf9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:55 GMT"
- ],
- "Content-Length": [
- "905"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "b03bfe3c-cbc5-4761-9839-b74c9182a5fc"
+ "a2a1c9ec-e467-4ea8-9609-49ccfe3b26a1"
],
"Accept-Language": [
"en-US"
@@ -2961,13 +2475,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA12512920B\""
+ "\"1D6BEA1474B3C15\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "61e3c7da-3dc8-4da2-9004-7d79aea09c8e"
+ "2a590729-1816-4fe6-9892-4e24486fdc4b"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2982,16 +2496,16 @@
"499"
],
"x-ms-correlation-request-id": [
- "e273b246-52e5-42f1-95bc-b572ad9e7827"
+ "d1c8b793-86d2-42db-bfe1-87ee477a23e7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115536Z:e273b246-52e5-42f1-95bc-b572ad9e7827"
+ "CENTRALINDIA:20201123T080828Z:d1c8b793-86d2-42db-bfe1-87ee477a23e7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:36 GMT"
+ "Mon, 23 Nov 2020 08:08:28 GMT"
],
"Content-Length": [
"5772"
@@ -3003,7 +2517,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"70689554B33198CF06D6B59DA69DA9C9AEE20A2B\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:34.24\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -3013,7 +2527,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "57253263-7dd0-44f5-980b-797a6b375944"
+ "7c3629dc-6485-4e7e-9e83-ffed03905ee3"
],
"Accept-Language": [
"en-US"
@@ -3039,13 +2553,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA1B8D59E00\""
+ "\"1D6C16FD16E3680\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a4c0b9c7-768c-437e-b44f-c2af4e761f9c"
+ "1509ecc2-b0d1-4836-b13b-59a14cd1f0dd"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -3060,19 +2574,19 @@
"498"
],
"x-ms-correlation-request-id": [
- "0290de22-ef08-4c62-86ee-56625c11713e"
+ "bd0aef8f-ffd5-42ac-919e-75a34ee7b736"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115554Z:0290de22-ef08-4c62-86ee-56625c11713e"
+ "CENTRALINDIA:20201123T080846Z:bd0aef8f-ffd5-42ac-919e-75a34ee7b736"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:54 GMT"
+ "Mon, 23 Nov 2020 08:08:46 GMT"
],
"Content-Length": [
- "5737"
+ "5732"
],
"Content-Type": [
"application/json"
@@ -3081,7 +2595,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:55:51.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:43.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -3091,7 +2605,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "17226ac4-b312-4172-8aee-6dbbfab529e7"
+ "be2045eb-3663-4d49-887a-76cbc79d9303"
],
"Accept-Language": [
"en-US"
@@ -3111,16 +2625,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11999"
],
"x-ms-request-id": [
- "7d7ac635-f14e-4811-a280-2e3473f8a8ef"
+ "3dde4dcc-7891-4e65-a55f-0e940eade707"
],
"x-ms-correlation-request-id": [
- "7d7ac635-f14e-4811-a280-2e3473f8a8ef"
+ "3dde4dcc-7891-4e65-a55f-0e940eade707"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115555Z:7d7ac635-f14e-4811-a280-2e3473f8a8ef"
+ "CENTRALINDIA:20201123T080846Z:3dde4dcc-7891-4e65-a55f-0e940eade707"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3129,7 +2643,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:54 GMT"
+ "Mon, 23 Nov 2020 08:08:46 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3138,10 +2652,10 @@
"-1"
],
"Content-Length": [
- "485"
+ "243"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -3151,7 +2665,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "68088955-9b18-4c05-ac3a-e78ee49fd05f"
+ "73e3c2d0-bef1-4358-a79a-cc9a298c587c"
],
"Accept-Language": [
"en-US"
@@ -3171,16 +2685,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-request-id": [
- "f139288c-fce2-4fae-b4da-482b1bb1ff4e"
+ "029344da-6b5b-4fe4-9071-6926592d64c1"
],
"x-ms-correlation-request-id": [
- "f139288c-fce2-4fae-b4da-482b1bb1ff4e"
+ "029344da-6b5b-4fe4-9071-6926592d64c1"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115603Z:f139288c-fce2-4fae-b4da-482b1bb1ff4e"
+ "CENTRALINDIA:20201123T080851Z:029344da-6b5b-4fe4-9071-6926592d64c1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -3189,7 +2703,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:56:02 GMT"
+ "Mon, 23 Nov 2020 08:08:50 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -3198,148 +2712,10 @@
"-1"
],
"Content-Length": [
- "253"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "44ca5724-59b9-4046-b4e9-96fce8e9ac72"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "1536155a-e2a8-485a-89b7-d9ba31db90c6"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-correlation-request-id": [
- "6663ae1b-e875-483a-bdbe-8e1e6b3337f4"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115555Z:6663ae1b-e875-483a-bdbe-8e1e6b3337f4"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:55:55 GMT"
- ],
- "Content-Length": [
- "930"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "207fd465-9044-49b3-ac33-08fc8e5520dd"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "ba8b7345-0add-474c-9501-c9ac65025d6b"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-correlation-request-id": [
- "584a91be-e12f-400a-80cb-d8202cec031c"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115603Z:584a91be-e12f-400a-80cb-d8202cec031c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:56:02 GMT"
- ],
- "Content-Length": [
- "930"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
+ "12"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"55F5E40A4934BE1D2725D0404CA4FB1E0A97C210\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
@@ -3349,7 +2725,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "87308a8c-f7d1-4331-933e-1d08d276e8f5"
+ "a8b61ace-d86e-4290-a0ef-d7cabc05d4f6"
],
"Accept-Language": [
"en-US"
@@ -3372,7 +2748,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "87ebeaad-5030-47cd-932f-27e787d93d83"
+ "3cbab2be-83d9-4452-9146-022460d08ad8"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -3387,16 +2763,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "f075ed8c-cdfc-4491-b68f-11585a5ba4a1"
+ "33df3d13-be0e-420e-8219-849d5ca85efb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115600Z:f075ed8c-cdfc-4491-b68f-11585a5ba4a1"
+ "CENTRALINDIA:20201123T080850Z:33df3d13-be0e-420e-8219-849d5ca85efb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:55:59 GMT"
+ "Mon, 23 Nov 2020 08:08:50 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
index a8a64d1a32f2..38cfb5821cdd 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d0a81ffa-6881-4fac-9e65-3ff328e0c3dd"
+ "3d156fc1-57a2-4f65-9e4a-74644a4de094"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA12512920B\""
+ "\"1D6BEA1474B3C15\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "66ce4e06-7575-418a-982f-bded3f43a787"
+ "7ddaf732-a08f-4a9e-9259-140e2736fb04"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,508 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-correlation-request-id": [
- "33c6bd96-53af-430f-8b56-f5249772a65d"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115311Z:33c6bd96-53af-430f-8b56-f5249772a65d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:10 GMT"
- ],
- "Content-Length": [
- "5537"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "e9ece146-3f3c-4ee6-a435-44b4ca08b578"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "\"1D6BDA12512920B\""
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "5b742a84-ff32-4172-9c61-0713f35799d6"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-correlation-request-id": [
- "39db2c96-9715-4af3-8ee9-df53b90cd8e5"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115340Z:39db2c96-9715-4af3-8ee9-df53b90cd8e5"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:40 GMT"
- ],
- "Content-Length": [
- "5537"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:51:26.3366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f9a2edc7-5bb0-4fd8-931e-b8eafbca9320"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "d4a18be1-a228-4a46-ad04-ce1586ba735a"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-correlation-request-id": [
- "c6ca1a55-fc66-47a1-921e-74e1314debcf"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115312Z:c6ca1a55-fc66-47a1-921e-74e1314debcf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:11 GMT"
- ],
- "Content-Length": [
- "4103"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1e5c0e97-d905-46b1-bdba-754367e38f5e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "fa061f7c-3fe8-4a0b-8220-5485136a331e"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-correlation-request-id": [
- "dd544af1-b580-4c4a-83d6-7cf1920dd694"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115341Z:dd544af1-b580-4c4a-83d6-7cf1920dd694"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:41 GMT"
- ],
- "Content-Length": [
- "4103"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "25960733-8919-421c-a2ca-8b664a7735d6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "613725dc-9cfc-45f9-951a-589a174d321a"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
- ],
- "x-ms-correlation-request-id": [
- "24bdff22-dad4-4cd7-b1ed-037e258b9f8f"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115313Z:24bdff22-dad4-4cd7-b1ed-037e258b9f8f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:12 GMT"
- ],
- "Content-Length": [
- "740"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "6fbe1a9c-7626-4a5e-a860-3e5ce11cbf5c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "4a48d351-9fdf-420f-ba09-168f0ad14c8c"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
- ],
- "x-ms-correlation-request-id": [
- "4674bf71-6056-4722-bc55-2c7e76fbf234"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115341Z:4674bf71-6056-4722-bc55-2c7e76fbf234"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:41 GMT"
- ],
- "Content-Length": [
- "740"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f83b676b-0655-4592-9635-d86bed865164"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "f68c88d4-d02c-48c3-90e4-3993b88b64a0"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11998"
- ],
- "x-ms-correlation-request-id": [
- "ca33ecb4-e548-4e8d-989c-a95c36d963ba"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115313Z:ca33ecb4-e548-4e8d-989c-a95c36d963ba"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:13 GMT"
- ],
- "Content-Length": [
- "290"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "aa29ebd2-b473-4888-8e16-6fa2649734a6"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "73d04c49-ef38-49b9-b253-9618937f3a3a"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11998"
],
"x-ms-correlation-request-id": [
- "47bb8433-add0-4d7f-a314-4e53b22c8da3"
+ "87de876a-d36d-4d4c-bf62-580f3ad505f3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115342Z:47bb8433-add0-4d7f-a314-4e53b22c8da3"
+ "CENTRALINDIA:20201123T080717Z:87de876a-d36d-4d4c-bf62-580f3ad505f3"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:42 GMT"
+ "Mon, 23 Nov 2020 08:07:17 GMT"
],
"Content-Length": [
- "290"
+ "5537"
],
"Content-Type": [
"application/json"
@@ -555,17 +69,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-19T18:24:54.9133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "POST",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6f6fb45-9340-4804-816e-624da9f10297"
+ "00886075-49bc-4a24-8a1b-5f07e1a335ca"
],
"Accept-Language": [
"en-US"
@@ -588,7 +102,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a9ba069-5da1-438d-b28f-b0ebc15b24f8"
+ "e6edd35d-92b1-4f2b-8c26-6e3b3cd4a57e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -599,23 +113,23 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-correlation-request-id": [
- "d5975532-c8e4-4cea-818f-ab058ab8edce"
+ "5dfd41ff-0912-4e3a-9d6b-7f6784b15397"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115314Z:d5975532-c8e4-4cea-818f-ab058ab8edce"
+ "CENTRALINDIA:20201123T080718Z:5dfd41ff-0912-4e3a-9d6b-7f6784b15397"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:13 GMT"
+ "Mon, 23 Nov 2020 08:07:17 GMT"
],
"Content-Length": [
- "287"
+ "4103"
],
"Content-Type": [
"application/json"
@@ -624,17 +138,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\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\": \"\",\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\": \"VS2019\",\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\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"azureStorageAccounts\": {},\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\": true,\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\": true,\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 {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\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 \"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 },\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 \"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 }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "60680a19-e894-4333-8e55-c363a025c0cb"
+ "6ffd5e44-7dfc-456a-919d-6fd842f70495"
],
"Accept-Language": [
"en-US"
@@ -657,7 +171,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "70af4df9-3027-4f6d-9a8c-8f25d7783461"
+ "fde7774b-ba08-40b6-9e6a-7298213a836f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -669,22 +183,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11999"
],
"x-ms-correlation-request-id": [
- "21307bd2-b6ff-4a6e-a8e7-da2cdc727eed"
+ "55ba9161-fce7-4ba2-a87e-f852e28bd69c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115342Z:21307bd2-b6ff-4a6e-a8e7-da2cdc727eed"
+ "CENTRALINDIA:20201123T080719Z:55ba9161-fce7-4ba2-a87e-f852e28bd69c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:42 GMT"
+ "Mon, 23 Nov 2020 08:07:18 GMT"
],
"Content-Length": [
- "287"
+ "740"
],
"Content-Type": [
"application/json"
@@ -693,17 +207,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "71c02fd1-1fff-4b1e-9664-44e1e799f23a"
+ "0b145836-9dbe-4577-82ef-e64854087f0f"
],
"Accept-Language": [
"en-US"
@@ -713,12 +227,6 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "283"
]
},
"ResponseHeaders": {
@@ -728,15 +236,12 @@
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/04a3100f-adb7-4b25-8858-67520b23b993?api-version=2020-06-01"
- ],
- "Retry-After": [
- "15"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-request-id": [
+ "e46c08bf-dd9f-432e-a834-e28091b928d7"
+ ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -746,42 +251,42 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-request-id": [
- "8685ce54-673a-4818-8b96-e0a87d1574ca"
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11998"
],
"x-ms-correlation-request-id": [
- "8685ce54-673a-4818-8b96-e0a87d1574ca"
+ "a8e122a1-97e1-4c15-b63e-ae162d676a00"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115322Z:8685ce54-673a-4818-8b96-e0a87d1574ca"
+ "CENTRALINDIA:20201123T080720Z:a8e122a1-97e1-4c15-b63e-ae162d676a00"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:21 GMT"
+ "Mon, 23 Nov 2020 08:07:19 GMT"
+ ],
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
- "ResponseBody": "",
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3112df90-c2a2-42ad-9842-9e94fccc41bb"
+ "e80f115e-027f-4ee4-8d72-df9171d5d883"
],
"Accept-Language": [
"en-US"
@@ -803,6 +308,9 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-request-id": [
+ "6913042c-e487-4a63-baf2-440d8e061b26"
+ ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -812,45 +320,42 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-request-id": [
- "aec6af00-a36b-49cc-ab40-d5ef52d0ac47"
+ "x-ms-ratelimit-remaining-subscription-resource-requests": [
+ "11997"
],
"x-ms-correlation-request-id": [
- "aec6af00-a36b-49cc-ab40-d5ef52d0ac47"
+ "d5d20d6f-0b0d-47a3-9519-ae0e82ad2722"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115323Z:aec6af00-a36b-49cc-ab40-d5ef52d0ac47"
+ "CENTRALINDIA:20201123T080720Z:d5d20d6f-0b0d-47a3-9519-ae0e82ad2722"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:22 GMT"
+ "Mon, 23 Nov 2020 08:07:19 GMT"
],
"Content-Length": [
- "435"
+ "287"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}",
+ "StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a353faab-3816-4f71-890b-c8d62e524b6e"
+ "2b1cce01-74b9-4300-a134-a644c9811d57"
],
"Accept-Language": [
"en-US"
@@ -860,6 +365,12 @@
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "283"
]
},
"ResponseHeaders": {
@@ -872,6 +383,9 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-request-id": [
+ "d5ba2ae2-916e-407d-9e37-d5fcc13ec8af"
+ ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -881,45 +395,42 @@
"X-Powered-By": [
"ASP.NET"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-request-id": [
- "60b7db84-837d-478f-b687-47ad4d3f15ac"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "60b7db84-837d-478f-b687-47ad4d3f15ac"
+ "557662a6-ee57-43ae-8713-66ab925b1c02"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115328Z:60b7db84-837d-478f-b687-47ad4d3f15ac"
+ "CENTRALINDIA:20201123T080722Z:557662a6-ee57-43ae-8713-66ab925b1c02"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:27 GMT"
+ "Mon, 23 Nov 2020 08:07:21 GMT"
],
"Content-Length": [
- "435"
+ "905"
],
"Content-Type": [
- "application/json; charset=utf-8"
+ "application/json"
],
"Expires": [
"-1"
]
},
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FA3D541AF1E13AC71C7A7BB74381486651E6EDC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7aef21ce-a765-43bb-9639-9105adccb4a2"
+ "2bd19a9d-c4b3-40ca-bb09-e8f5a3f2c239"
],
"Accept-Language": [
"en-US"
@@ -928,7 +439,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
]
},
"ResponseHeaders": {
@@ -938,48 +449,39 @@
"Pragma": [
"no-cache"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11999"
],
"x-ms-request-id": [
- "06a01a16-a0ac-4d29-be8c-a71dea35a0c7"
+ "632caa97-8e77-43f9-b37b-431aeed69c74"
],
"x-ms-correlation-request-id": [
- "06a01a16-a0ac-4d29-be8c-a71dea35a0c7"
+ "632caa97-8e77-43f9-b37b-431aeed69c74"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115334Z:06a01a16-a0ac-4d29-be8c-a71dea35a0c7"
+ "CENTRALINDIA:20201123T080722Z:632caa97-8e77-43f9-b37b-431aeed69c74"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:34 GMT"
- ],
- "Content-Length": [
- "493"
+ "Mon, 23 Nov 2020 08:07:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "243"
]
},
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Certificate 834D125ECDF94BA8C12A98A81C279C080B199FCF was not found.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Certificate 834D125ECDF94BA8C12A98A81C279C080B199FCF was not found.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04031\",\r\n \"MessageTemplate\": \"Certificate {0} was not found.\",\r\n \"Parameters\": [\r\n \"834D125ECDF94BA8C12A98A81C279C080B199FCF\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Certificate 834D125ECDF94BA8C12A98A81C279C080B199FCF was not found.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
@@ -988,7 +490,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4d6bb5e5-5724-495d-a8b4-64c7e0130c39"
+ "a040e10c-78f8-406e-bf88-49c7bf07233f"
],
"Accept-Language": [
"en-US"
@@ -1011,7 +513,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3023ef1a-412e-4913-80c9-d67052444e28"
+ "f2076984-1f9b-4658-9088-b8a3f4db7a57"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1023,19 +525,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11996"
],
"x-ms-correlation-request-id": [
- "39f23355-852d-47d9-9a11-ea4693da92b1"
+ "c8a1563f-e90f-4639-8e8b-545812247a23"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115339Z:39f23355-852d-47d9-9a11-ea4693da92b1"
+ "CENTRALINDIA:20201123T080723Z:c8a1563f-e90f-4639-8e8b-545812247a23"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:39 GMT"
+ "Mon, 23 Nov 2020 08:07:22 GMT"
],
"Content-Length": [
"905"
@@ -1047,17 +549,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-18T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-18T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"834D125ECDF94BA8C12A98A81C279C080B199FCF\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FA3D541AF1E13AC71C7A7BB74381486651E6EDC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7514ed97-fa15-4b70-9d38-09ff47ffa548"
+ "67b872bf-107d-4313-8435-c3fad31638bb"
],
"Accept-Language": [
"en-US"
@@ -1066,7 +568,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
]
},
"ResponseHeaders": {
@@ -1076,38 +578,44 @@
"Pragma": [
"no-cache"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5cb6b144-4808-4db6-92d5-6474cf557d64"
+ "9d5f0c0d-5dae-40cd-b66e-22fee76b5aa2"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "5cb6b144-4808-4db6-92d5-6474cf557d64"
+ "af0bf815-cf71-4520-9cb9-7cf1fd8d862f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115343Z:5cb6b144-4808-4db6-92d5-6474cf557d64"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALINDIA:20201123T080731Z:af0bf815-cf71-4520-9cb9-7cf1fd8d862f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:42 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Mon, 23 Nov 2020 08:07:31 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "12"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseBody": "",
"StatusCode": 200
},
{
@@ -1117,7 +625,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b08678a-db51-4f6f-a443-12d54ff738fd"
+ "0b9e12a2-37eb-489c-bd34-c41be145624e"
],
"Accept-Language": [
"en-US"
@@ -1140,13 +648,13 @@
"11998"
],
"x-ms-request-id": [
- "94d93079-2da6-473d-80d5-5e6d9b22034d"
+ "128ebe10-86f7-4b30-825e-095f1ad6cf8c"
],
"x-ms-correlation-request-id": [
- "94d93079-2da6-473d-80d5-5e6d9b22034d"
+ "128ebe10-86f7-4b30-825e-095f1ad6cf8c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115343Z:94d93079-2da6-473d-80d5-5e6d9b22034d"
+ "CENTRALINDIA:20201123T080731Z:128ebe10-86f7-4b30-825e-095f1ad6cf8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1155,7 +663,7 @@
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:42 GMT"
+ "Mon, 23 Nov 2020 08:07:31 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1164,10 +672,10 @@
"-1"
],
"Content-Length": [
- "2088"
+ "1864"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -1177,7 +685,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5a6a2af5-4798-415a-b634-71b56de77bd3"
+ "b68a654a-bad0-42df-b569-124293d21c3d"
],
"Accept-Language": [
"en-US"
@@ -1200,7 +708,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fc9a7b89-5162-4a38-865b-34f46db76bcc"
+ "1cb7b475-8742-490d-98e6-c1d28e7448ee"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1212,19 +720,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11995"
],
"x-ms-correlation-request-id": [
- "56a4883c-933e-4ff8-a9d0-53b3e238f0ca"
+ "99c80820-d7d6-441d-83b6-24ec6c0eff92"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115344Z:56a4883c-933e-4ff8-a9d0-53b3e238f0ca"
+ "CENTRALINDIA:20201123T080732Z:99c80820-d7d6-441d-83b6-24ec6c0eff92"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:44 GMT"
+ "Mon, 23 Nov 2020 08:07:32 GMT"
],
"Content-Length": [
"935"
@@ -1246,7 +754,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1de75041-835a-4d30-853d-a6179bc71b49"
+ "78c25e50-b623-4099-841a-ee72fedd0586"
],
"Accept-Language": [
"en-US"
@@ -1269,7 +777,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e8dc94ec-3a8e-4139-a251-af21e86172d0"
+ "98bf5a9d-4ce8-47e5-b28b-739765ce7c3d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1281,19 +789,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11994"
],
"x-ms-correlation-request-id": [
- "2a920274-3565-4877-86ae-cad00f30ce6d"
+ "466f19af-e46e-4ef9-8c75-b395796c11e2"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115344Z:2a920274-3565-4877-86ae-cad00f30ce6d"
+ "CENTRALINDIA:20201123T080732Z:466f19af-e46e-4ef9-8c75-b395796c11e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:44 GMT"
+ "Mon, 23 Nov 2020 08:07:32 GMT"
],
"Content-Length": [
"861"
@@ -1315,7 +823,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4a26d7c1-e3c3-4aa4-b0d3-5831f0346bdb"
+ "5c67cc21-49c5-4c3a-a238-7ffeb30c26b2"
],
"Accept-Language": [
"en-US"
@@ -1338,7 +846,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6bfa304-a605-4670-925b-05820a02f000"
+ "000bbd23-eddb-45be-b1dc-6c33c9a423bb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1350,19 +858,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11993"
],
"x-ms-correlation-request-id": [
- "9e8d319b-8962-46b5-b527-b1e362c62610"
+ "86407af1-73ff-49b7-9bae-de5c7fd256e0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115345Z:9e8d319b-8962-46b5-b527-b1e362c62610"
+ "CENTRALINDIA:20201123T080733Z:86407af1-73ff-49b7-9bae-de5c7fd256e0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:44 GMT"
+ "Mon, 23 Nov 2020 08:07:33 GMT"
],
"Content-Length": [
"904"
@@ -1378,82 +886,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL0IzRjQxNUE5QjZFM0VDNzk2ODJCRjZFQzVDOUFEMDZCMUE1MjgxQjQtdGVzdGFzcHRvZDEwOS1BU0V0ZXN0MTA5YXBwc2VFYXN0VVN3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "f59a017f-4c45-47b2-a67a-1c90616090eb"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "ef4013d8-1ed2-466a-a80a-4674f3ab35d8"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-correlation-request-id": [
- "84c3473a-6cf7-4d2e-a433-debb66f1eafc"
- ],
- "x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115345Z:84c3473a-6cf7-4d2e-a433-debb66f1eafc"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Wed, 18 Nov 2020 11:53:45 GMT"
- ],
- "Content-Length": [
- "1140"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"ECC\",\r\n \"hostNames\": [\r\n \"ECC\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"ECC\",\r\n \"issueDate\": \"2020-11-18T11:25:30+05:30\",\r\n \"expirationDate\": \"2021-11-13T11:25:30+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3Rhc3B0b2QxMDktdGVzdGt2aW16LXRlc3RjZXJ0MjgxMHo/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "63324bac-98ba-4476-a92e-fa42e162e73a"
+ "a3066800-32ec-4a4f-a3ee-a884b1f25684"
],
"Accept-Language": [
"en-US"
@@ -1476,7 +915,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "eeba899d-5a6f-4753-b293-5df8f412a7a7"
+ "6436d3c0-02c1-4de6-be8a-3642ceae870f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1488,22 +927,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11992"
],
"x-ms-correlation-request-id": [
- "fb943147-8cb5-40f6-9425-de6e635dd89f"
+ "1fb1d3c1-b303-4154-998f-250616361d01"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115346Z:fb943147-8cb5-40f6-9425-de6e635dd89f"
+ "CENTRALINDIA:20201123T080733Z:1fb1d3c1-b303-4154-998f-250616361d01"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:45 GMT"
+ "Mon, 23 Nov 2020 08:07:33 GMT"
],
"Content-Length": [
- "1102"
+ "907"
],
"Content-Type": [
"application/json"
@@ -1512,17 +951,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-20T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-20T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"ABEAC8C833D47F8C5EC76BA5F45D508CD7F0FFA3\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RrdjE2MTEtdGVzdGNlcnRuYW1lMTYxMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL0IzRjQxNUE5QjZFM0VDNzk2ODJCRjZFQzVDOUFEMDZCMUE1MjgxQjQtdGVzdGFzcHRvZDEwOS1BU0V0ZXN0MTA5YXBwc2VFYXN0VVN3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3f0f9d65-4b20-478c-9892-f2f2d85aa805"
+ "3365e259-890c-4c0d-9614-dbf9b721247e"
],
"Accept-Language": [
"en-US"
@@ -1545,7 +984,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "30ed3e69-1ed9-4337-bb24-ad49b52152a2"
+ "5ce5b719-c475-4ed3-9e6d-1d7fe04f20ce"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1557,22 +996,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11991"
],
"x-ms-correlation-request-id": [
- "34e1addc-ef73-4ea2-b2b1-e1a5234709eb"
+ "caeb4104-3fd0-4a7d-9ef1-5a3604423400"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115346Z:34e1addc-ef73-4ea2-b2b1-e1a5234709eb"
+ "CENTRALINDIA:20201123T080735Z:caeb4104-3fd0-4a7d-9ef1-5a3604423400"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:46 GMT"
+ "Mon, 23 Nov 2020 08:07:34 GMT"
],
"Content-Length": [
- "1078"
+ "1140"
],
"Content-Type": [
"application/json"
@@ -1581,17 +1020,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"ECC\",\r\n \"hostNames\": [\r\n \"ECC\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"ECC\",\r\n \"issueDate\": \"2020-11-18T11:25:30+05:30\",\r\n \"expirationDate\": \"2021-11-13T11:25:30+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3RyY2Rlc3QxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RjZXJ0MTExMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3Rhc3B0b2QxMDktdGVzdGt2aW16LXRlc3RjZXJ0MjgxMHo/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "388f9a9e-d887-45a1-8fc5-bedded97fdbd"
+ "af94a61f-491e-44a8-af46-8789901786a0"
],
"Accept-Language": [
"en-US"
@@ -1614,7 +1053,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "16ab7bea-4179-4e21-a1a7-6d265d9b668f"
+ "e74921f0-193a-4200-9022-45a5afa80fd5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1626,22 +1065,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11990"
],
"x-ms-correlation-request-id": [
- "2cfd761b-30f2-46f0-8f69-f88366a7adf7"
+ "517517eb-8846-461f-a277-a0ec161af3f0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115346Z:2cfd761b-30f2-46f0-8f69-f88366a7adf7"
+ "CENTRALINDIA:20201123T080735Z:517517eb-8846-461f-a277-a0ec161af3f0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:46 GMT"
+ "Mon, 23 Nov 2020 08:07:35 GMT"
],
"Content-Length": [
- "840"
+ "1102"
],
"Content-Type": [
"application/json"
@@ -1650,17 +1089,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcert1110\",\r\n \"name\": \"testcert1110\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-10T19:12:17+05:30\",\r\n \"expirationDate\": \"2021-11-10T19:22:17+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F9F7AF2E7651ADF2A4E32BC2FC270B20968D59F1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3RyY2Rlc3QxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RjZXJ0aWZpY2F0ZTI2MTA/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3Rhc3B0b2QxMDkvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RrdjE2MTEtdGVzdGNlcnRuYW1lMTYxMT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ee0a033-d80b-4166-8adc-4f1efc0ba6b0"
+ "dde7d407-a73c-4df2-9381-214fe094ceee"
],
"Accept-Language": [
"en-US"
@@ -1683,7 +1122,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6195e36-0dc4-467d-acfa-8dbd7bf829da"
+ "b6b85ac6-942d-4e65-9562-ddc0a701eb21"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1695,22 +1134,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11989"
],
"x-ms-correlation-request-id": [
- "bff0ad3b-9df7-47fa-8513-b03da93b1698"
+ "fa060db0-ad27-4a5e-851c-f0203860cda4"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20201118T115347Z:bff0ad3b-9df7-47fa-8513-b03da93b1698"
+ "CENTRALINDIA:20201123T080735Z:fa060db0-ad27-4a5e-851c-f0203860cda4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Wed, 18 Nov 2020 11:53:47 GMT"
+ "Mon, 23 Nov 2020 08:07:35 GMT"
],
"Content-Length": [
- "831"
+ "1078"
],
"Content-Type": [
"application/json"
@@ -1719,7 +1158,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testrcdest118/providers/Microsoft.Web/certificates/testcertificate2610\",\r\n \"name\": \"testcertificate2610\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"domainappz.com\",\r\n \"hostNames\": [\r\n \"domainappz.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"domainappz.com\",\r\n \"issueDate\": \"2020-10-26T13:12:34+05:30\",\r\n \"expirationDate\": \"2021-10-26T13:22:34+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"08A32C0CB6392803BB4CC1361D76545F840B3A75\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index b7e9c17855d0..ce8e55d746ba 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -18,12 +18,14 @@
- Additional information about change #1
-->
## Upcoming Release
-* Added support for new access restriction features: ServiceTag, multi-ip and http-headers
* Added support for App Service Managed certificates
-New Cmdlets
-New-AzWebAppCertificate
-Remove-AzWebAppCertificate
+## Version 2.0.0
+* Added support for new access restriction features: ServiceTag, multi-ip and http-headers
+
## Version 2.0.0
* Added support for Premium V3 pricing tier
* Updated the WebSites SDK to 3.1.0
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
index 1110f3ab8853..5467991c3479 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
@@ -23,6 +23,7 @@
using System.Linq;
using System.Management.Automation;
using System.Net;
+using System.Text;
using System.Threading;
using System.Threading.Tasks;
@@ -69,7 +70,7 @@ public override void ExecuteCmdlet()
{
if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
{
- //PSSite webApp = null;
+ HttpStatusCode statusCode = HttpStatusCode.OK;
var webApp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, Slot));
var location = webApp.Location;
@@ -85,10 +86,11 @@ public override void ExecuteCmdlet()
{
try
{
- WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
+ createdCertdetails=WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
}
catch (DefaultErrorResponseException e)
{
+ statusCode = e.Response.StatusCode;
// 'Conflict' exception is thrown when certificate already exists. Let's swallow it and continue.
//'Accepted' exception is thrown by default for create cert method.
if (e.Response.StatusCode != HttpStatusCode.Conflict &&
@@ -98,8 +100,11 @@ public override void ExecuteCmdlet()
}
}
//Try to get the certificate post the create call return 'Accepted' status
- if (createdCertdetails == null)
- for (; ; )
+ var watch = new System.Diagnostics.Stopwatch();
+ if (statusCode == HttpStatusCode.Accepted)
+ {
+ watch.Start();
+ for (; watch.Elapsed.Minutes < 6;)
{
try
{
@@ -111,8 +116,17 @@ public override void ExecuteCmdlet()
//if 'NotFound' lets retry for every 5 seconds to get the certificate
if (e.Response.StatusCode == HttpStatusCode.NotFound)
Thread.Sleep(5000);
+ else
+ throw;
}
}
+ watch.Stop();
+ if (createdCertdetails == null)
+ {
+ throw new Exception(string.Format($"The creation of the managed certificate '{this.HostName}' is taking longer than expected." +
+ $" Please re-try the operation '{CreateInputCommand()}'"));
+ }
+ }
//Add only when user is opted for Binding
if (AddBinding)
{
@@ -130,5 +144,18 @@ public override void ExecuteCmdlet()
}
}
+
+ private string CreateInputCommand()
+ {
+ StringBuilder command = new StringBuilder("New-AzWebAppCertificate ");
+ command.Append($"-ResourceGroupName {this.ResourceGroupName} -WebAppName {this.WebAppName} -HostName {this.HostName} ");
+ if (Slot != null)
+ command.Append($"-Slot {this.Slot} ");
+ if (AddBinding)
+ command.Append($"-AddBinding ");
+ if (SslState != null)
+ command.Append($"-SslState {this.SslState} ");
+ return command.ToString(); ;
+ }
}
}
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
index f0f9a89b0301..7121eee6636f 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
@@ -26,71 +26,40 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
///
/// This commandlet will let you delete a managed certificate
///
- [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", DefaultParameterSetName = ParameterSet1Name, SupportsShouldProcess = true), OutputType(typeof(void))]
+ [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", SupportsShouldProcess = true), OutputType(typeof(void))]
public class RemoveAzureWebAppCertificate : WebAppBaseClientCmdLet
{
const string ParameterSet1Name = "S1";
const string ParameterSet2Name = "S2";
[Parameter(ParameterSetName = ParameterSet1Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
- [Parameter(ParameterSetName = ParameterSet2Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
+ //[Parameter(ParameterSetName = ParameterSet2Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
[ResourceGroupCompleter]
[ValidateNotNullOrEmpty]
public string ResourceGroupName { get; set; }
[Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space.")]
- [Parameter(ParameterSetName = ParameterSet2Name, Position = 3, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space.")]
+ //[Parameter(ParameterSetName = ParameterSet2Name, Position = 3, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space.")]
[ValidateNotNullOrEmpty]
public string ThumbPrint { get; set; }
-
- [Parameter(ParameterSetName = ParameterSet2Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")]
- [ResourceNameCompleter("Microsoft.Web/sites", "ResourceGroupName")]
- [ValidateNotNullOrEmpty]
- public string WebAppName { get; set; }
-
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
- [Parameter(ParameterSetName = ParameterSet2Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
- [ResourceNameCompleter("Microsoft.Web/sites/slots", "ResourceGroupName", "WebAppName")]
- [ValidateNotNullOrEmpty]
- public string Slot { get; set; }
-
- [Parameter(ParameterSetName = ParameterSet2Name, Position = 3, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
- [ValidateNotNullOrEmpty]
- public string HostName { get; set; }
+
public override void ExecuteCmdlet()
{
- PSSite webapp = null;
- string certificateResourceGroup = null;
- switch (ParameterSetName)
- {
- case ParameterSet1Name:
- certificateResourceGroup = ResourceGroupName;
- break;
- case ParameterSet2Name:
- webapp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, Slot));
- var hostNameSslStates = CmdletHelpers.GetHostNameSslStatesFromSiteResponse(webapp, HostName).ToList();
- if (hostNameSslStates.Count > 0)
- {
- WebsitesClient.UpdateHostNameSslState(ResourceGroupName, WebAppName, Slot, webapp.Location, HostName, SslState.Disabled, null);
- }
- certificateResourceGroup = CmdletHelpers.GetResourceGroupFromResourceId(webapp.ServerFarmId);
- break;
- }
-
- var certificates = CmdletHelpers.GetCertificates(this.ResourcesClient, this.WebsitesClient, certificateResourceGroup, ThumbPrint);
+
+ var certificates = CmdletHelpers.GetCertificates(this.ResourcesClient, this.WebsitesClient, ResourceGroupName, ThumbPrint);
if (certificates.Length > 0)
{
- if (this.ShouldProcess(this.WebAppName, string.Format($"Removing an App service managed certificate for Web App '{WebAppName}'")))
+ if (this.ShouldProcess(this.ThumbPrint, string.Format($"Removing an App service certificate with thumbprint '{ThumbPrint}'")))
{
- var certName = !string.IsNullOrEmpty(HostName) ? HostName : certificates[0].Name;
+ //var certName = !string.IsNullOrEmpty(HostName) ? HostName : certificates[0].Name;
try
{
- WebsitesClient.RemoveCertificate(certificateResourceGroup, certName);
+ WebsitesClient.RemoveCertificate(ResourceGroupName, certificates[0].Name);
}
- catch (DefaultErrorResponseException)
+ catch (DefaultErrorResponseException e)
{
- throw;
+ throw e;
}
}
}
diff --git a/src/Websites/Websites/help/Remove-AzWebAppCertificate.md b/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
index 8b2fc72e6186..fef03f1404c8 100644
--- a/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
+++ b/src/Websites/Websites/help/Remove-AzWebAppCertificate.md
@@ -13,8 +13,7 @@ Creates an App service managed certificate for an Azure Web App.
## SYNTAX
```
-Remove-AzWebAppCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
- [-HostName] [-ThumbPrint] [-DefaultProfile ] []
+Remove-AzWebAppCertificate [-ResourceGroupName] [-ThumbPrint] [-DefaultProfile ] []
```
## DESCRIPTION
@@ -29,13 +28,6 @@ PS C:\>Remove-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -Thumbpr
This command removes App Service Managed certificate for the given web app.
-### Example 2
-```powershell
-PS C:\>Remove-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"
-```
-
-This command removes SSL Binding and App Service Managed certificate for the given web app.
-
## PARAMETERS
### -DefaultProfile
@@ -53,21 +45,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -HostName
-Custom hostnames associated with web app/slot.
-
-```yaml
-Type: String
-Parameter Sets: (All)
-Aliases:
-
-Required: True
-Position: 3
-Default value: None
-Accept pipeline input: False
-Accept wildcard characters: False
-```
-
### -ResourceGroupName
The name of the resource group.
@@ -83,21 +60,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -Slot
-The name of the web app slot.
-
-```yaml
-Type: String
-Parameter Sets: (All)
-Aliases:
-
-Required: False
-Position: 2
-Default value: None
-Accept pipeline input: False
-Accept wildcard characters: False
-```
-
### -ThumbPrint
Thumbprint of the certificate that already exists in web space.
@@ -113,21 +75,6 @@ Accept pipeline input: False
Accept wildcard characters: False
```
-### -WebAppName
-The name of the web app.
-
-```yaml
-Type: String
-Parameter Sets: (All)
-Aliases:
-
-Required: True
-Position: 1
-Default value: None
-Accept pipeline input: False
-Accept wildcard characters: False
-```
-
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
From ca84434ab953245b9da386e7b94f609616028fa2 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Mon, 23 Nov 2020 14:35:32 +0530
Subject: [PATCH 10/13] updated conflicts
---
src/Websites/Websites/ChangeLog.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index ce8e55d746ba..7d5259115117 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -22,8 +22,9 @@
-New Cmdlets
-New-AzWebAppCertificate
-Remove-AzWebAppCertificate
+* Prevent duplicate access restriction rules
-## Version 2.0.0
+## Version 2.1.0
* Added support for new access restriction features: ServiceTag, multi-ip and http-headers
## Version 2.0.0
From d83d556fc3f4cfcb362aec2a601347a58b6f12d9 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Mon, 28 Dec 2020 18:13:07 +0530
Subject: [PATCH 11/13] Updated code to support 202 status
---
.../ScenarioTests/CertificatesTests.ps1 | 16 +-
.../TestNewAzWebAppCertificate.json | 394 ++---------
.../TestNewAzWebAppCertificateForSlot.json | 248 ++-----
...tNewAzWebAppCertificateWithSSLBinding.json | 626 +++++++-----------
.../TestRemoveAzWebAppCertificate.json | 418 ++++++------
.../Certificates/NewAzureWebAppCertificate.cs | 69 +-
.../RemoveAzureWebAppCertificate.cs | 3 +-
.../Websites/Utilities/WebsitesClient.cs | 17 +
.../Websites/help/New-AzWebAppCertificate.md | 35 +-
9 files changed, 664 insertions(+), 1162 deletions(-)
diff --git a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
index e89636d3e76a..44a46dbade9e 100644
--- a/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
+++ b/src/Websites/Websites.Test/ScenarioTests/CertificatesTests.ps1
@@ -19,13 +19,14 @@ Tests creating a new managed cert for app.
function Test-NewAzWebAppCertificate
{
$rgname = "lketmtestantps10"
- $appname = "lketmtestantps10"
+ $appname = "lketmtestantps10"
+ $certName = "adorenowcert"
$prodHostname = "www.adorenow.net"
$thumbprint=""
try{
- $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -Name $certName -WebAppName $appname -HostName $prodHostname
$thumbprint=$cert.ThumbPrint
# Assert
@@ -47,12 +48,13 @@ function Test-NewAzWebAppCertificateWithSSLBinding
{
$rgname = "lketmtestantps10"
$appname = "lketmtestantps10"
- $prodHostname = "www.adorenow.net"
+ $prodHostname = "www.adorenow.net"
+ $certName = "adorenowcert"
$thumbprint=""
try{
- $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname -AddBinding
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -Name $certName -WebAppName $appname -HostName $prodHostname -AddBinding
$thumbprint=$cert.ThumbPrint
# Assert
@@ -86,11 +88,12 @@ function Test-NewAzWebAppCertificateForSlot
$appname = "lketmtestantps10"
$slot = "testslot"
$slotHostname = "testslot.adorenow.net"
+ $certName = "adorenowcert"
$thumbprint=""
try{
- $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $slotHostname -Slot $slot
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -Name $certName -WebAppName $appname -HostName $slotHostname -Slot $slot
$thumbprint=$cert.ThumbPrint
# Assert
@@ -114,11 +117,12 @@ function Test-RemoveAzWebAppCertificate
$rgname = "lketmtestantps10"
$appname = "lketmtestantps10"
$prodHostname = "www.adorenow.net"
+ $certName = "adorenowcert"
$thumbprint=""
try{
- $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -WebAppName $appname -HostName $prodHostname
+ $cert=New-AzWebAppCertificate -ResourceGroupName $rgname -Name $certName -WebAppName $appname -HostName $prodHostname
$thumbprint=$cert.ThumbPrint
# Assert
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
index 86f259ff88b5..70bdfde9d25f 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "45139bc8-efda-47f7-b47c-8f62d94f997d"
+ "14a033f6-000d-470e-9481-71a5e33cfe2b"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6C16FDC413580\""
+ "\"1D6DD162104F3C0\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b0c1d240-5ec0-49d1-ae76-7f45ab4c4702"
+ "fa09a059-3ea1-4fb5-bf88-0169bb7cd0bb"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11985"
],
"x-ms-correlation-request-id": [
- "a2bcbc57-1d96-48ca-9fa0-09626c5c93ee"
+ "6f8c4836-ef0f-454f-a51a-70f68a31e0d5"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080950Z:a2bcbc57-1d96-48ca-9fa0-09626c5c93ee"
+ "SOUTHINDIA:20201228T123800Z:6f8c4836-ef0f-454f-a51a-70f68a31e0d5"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:49 GMT"
+ "Mon, 28 Dec 2020 12:38:00 GMT"
],
"Content-Length": [
- "5532"
+ "5531"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:43.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:36:56.7\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f6780b1-88ab-4904-8033-dbc3ebf9200a"
+ "6c3c44d6-cf57-453f-9da2-f62a592c56d9"
],
"Accept-Language": [
"en-US"
@@ -102,7 +102,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5d87aaaf-73be-468e-80c3-431871c8a538"
+ "963eee66-ebed-4862-9c08-2393d4c5ff39"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -114,19 +114,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11984"
],
"x-ms-correlation-request-id": [
- "bbe4279a-34c1-48eb-9c6f-80521b013fc1"
+ "e66a9a58-ad5a-4fd2-a338-d06968ba585d"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080951Z:bbe4279a-34c1-48eb-9c6f-80521b013fc1"
+ "SOUTHINDIA:20201228T123801Z:e66a9a58-ad5a-4fd2-a338-d06968ba585d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:51 GMT"
+ "Mon, 28 Dec 2020 12:38:00 GMT"
],
"Content-Length": [
"4103"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "55d2f628-80a4-4250-90d2-37a992de2f16"
+ "053de0ce-ebbe-4c13-a219-febdae891703"
],
"Accept-Language": [
"en-US"
@@ -171,7 +171,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c3ebd029-c3e9-49d1-b709-671f6361d44c"
+ "519f42a2-3e7b-449e-b935-9cc21af4b5dc"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -183,19 +183,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11996"
+ "11981"
],
"x-ms-correlation-request-id": [
- "43e9fe32-6e17-4952-927c-ac840cbde770"
+ "ff6f2dcc-8521-4190-884b-c00e7d345db1"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080952Z:43e9fe32-6e17-4952-927c-ac840cbde770"
+ "SOUTHINDIA:20201228T123801Z:ff6f2dcc-8521-4190-884b-c00e7d345db1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:52 GMT"
+ "Mon, 28 Dec 2020 12:38:01 GMT"
],
"Content-Length": [
"740"
@@ -217,7 +217,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "50ab673e-a67e-4d72-965b-c50bab3a570d"
+ "ae7acfb5-6f29-4f38-a49e-26ed0490fb03"
],
"Accept-Language": [
"en-US"
@@ -240,7 +240,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "df3e8018-4fec-46a0-a000-4b3bd7173137"
+ "8d457905-a53a-4d08-8d77-d17f05c9b6c5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -252,19 +252,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11995"
+ "11980"
],
"x-ms-correlation-request-id": [
- "59e662cd-b18c-4013-a120-0906d9a1246e"
+ "938ecf4c-7239-4f6e-b209-876b5823ba92"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080952Z:59e662cd-b18c-4013-a120-0906d9a1246e"
+ "SOUTHINDIA:20201228T123802Z:938ecf4c-7239-4f6e-b209-876b5823ba92"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:52 GMT"
+ "Mon, 28 Dec 2020 12:38:01 GMT"
],
"Content-Length": [
"290"
@@ -286,7 +286,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "98ca37bb-1894-4b8c-9500-44f5b6688e3f"
+ "98d65880-853d-4396-8ad1-9a9017d7ae12"
],
"Accept-Language": [
"en-US"
@@ -309,7 +309,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "db778598-6879-4cf6-90dd-65e12b5b16e3"
+ "25231cb1-0110-4487-bcbe-b93ea4afe3df"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -321,19 +321,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11994"
+ "11979"
],
"x-ms-correlation-request-id": [
- "e32391b7-3ab4-44bd-af0d-ccaac26e5fed"
+ "28c4fc7f-00eb-4760-b64c-cb6da5ea479e"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080953Z:e32391b7-3ab4-44bd-af0d-ccaac26e5fed"
+ "SOUTHINDIA:20201228T123802Z:28c4fc7f-00eb-4760-b64c-cb6da5ea479e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:53 GMT"
+ "Mon, 28 Dec 2020 12:38:02 GMT"
],
"Content-Length": [
"287"
@@ -349,13 +349,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e2a3442-5afd-44a5-a8c7-5269bdf365cc"
+ "808ad42d-617e-4b96-bf20-089eab1e47fb"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/e17ff3c9-43e6-4488-a48e-e2b556c9c4bb?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert/operationresults/9760f837-6672-4ac1-a94d-3b129c2407b6?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -402,19 +402,19 @@
"1198"
],
"x-ms-request-id": [
- "f924f673-3162-440b-b253-4a734195063c"
+ "0b7601bd-a499-4138-a0da-2a60aee824a6"
],
"x-ms-correlation-request-id": [
- "f924f673-3162-440b-b253-4a734195063c"
+ "0b7601bd-a499-4138-a0da-2a60aee824a6"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T081003Z:f924f673-3162-440b-b253-4a734195063c"
+ "SOUTHINDIA:20201228T123810Z:0b7601bd-a499-4138-a0da-2a60aee824a6"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:10:03 GMT"
+ "Mon, 28 Dec 2020 12:38:10 GMT"
],
"Expires": [
"-1"
@@ -427,151 +427,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "1e3b85e1-8ced-4720-acc0-8bf651e5943f"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-request-id": [
- "a34e0e64-63a9-4b40-808b-3ffc298abcfe"
- ],
- "x-ms-correlation-request-id": [
- "a34e0e64-63a9-4b40-808b-3ffc298abcfe"
- ],
- "x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T081004Z:a34e0e64-63a9-4b40-808b-3ffc298abcfe"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:10:03 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "293f1d04-63c5-46e2-a64e-1c879d4c7c81"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-request-id": [
- "397e24aa-3432-42a2-872b-eddd1a1103e3"
- ],
- "x-ms-correlation-request-id": [
- "397e24aa-3432-42a2-872b-eddd1a1103e3"
- ],
- "x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T081009Z:397e24aa-3432-42a2-872b-eddd1a1103e3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:10:09 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d30e11a0-6aa2-45ad-a816-4c6401b0061f"
+ "bcab9745-bc3b-4663-9104-1c7fc4502bf3"
],
"Accept-Language": [
"en-US"
@@ -593,77 +455,8 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
"x-ms-request-id": [
- "7b9f0297-a4eb-4b4b-9993-45c9d19ee794"
- ],
- "x-ms-correlation-request-id": [
- "7b9f0297-a4eb-4b4b-9993-45c9d19ee794"
- ],
- "x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T081014Z:7b9f0297-a4eb-4b4b-9993-45c9d19ee794"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:10:14 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "cdc03bdb-d7ab-4c09-852a-cbb7f4021d23"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "d33c7dcb-9ea8-40f5-bd4e-6be89416d575"
+ "f1a9dc60-c782-461b-bf0b-a13632ac1696"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -675,22 +468,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11983"
],
"x-ms-correlation-request-id": [
- "8a747c30-da39-44bc-9881-4ae010080771"
+ "498f8c76-9364-45ff-afb7-ad4ef1e6afb9"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T081020Z:8a747c30-da39-44bc-9881-4ae010080771"
+ "SOUTHINDIA:20201228T123827Z:498f8c76-9364-45ff-afb7-ad4ef1e6afb9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:10:19 GMT"
+ "Mon, 28 Dec 2020 12:38:26 GMT"
],
"Content-Length": [
- "905"
+ "897"
],
"Content-Type": [
"application/json"
@@ -699,7 +492,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"C1CC3D2E3BC3E583D4235D975B53A5962F2DB2AD\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert\",\r\n \"name\": \"adorenowcert\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-12-28T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-06-28T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"FC9EF6286B82FBEC67560E750B0AB94C15207391\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -709,7 +502,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8f9164d3-8015-424c-acdc-bb602083a0b7"
+ "cfa88fae-9cdb-4e0c-aec7-c79d528932d4"
],
"Accept-Language": [
"en-US"
@@ -729,16 +522,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11994"
],
"x-ms-request-id": [
- "d2ec0fc5-c2c1-46e1-b0c5-8056429a7613"
+ "5ca2a7b5-9a16-4e02-989e-3a780c76224f"
],
"x-ms-correlation-request-id": [
- "d2ec0fc5-c2c1-46e1-b0c5-8056429a7613"
+ "5ca2a7b5-9a16-4e02-989e-3a780c76224f"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T081021Z:d2ec0fc5-c2c1-46e1-b0c5-8056429a7613"
+ "SOUTHINDIA:20201228T123827Z:5ca2a7b5-9a16-4e02-989e-3a780c76224f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -747,7 +540,7 @@
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:10:20 GMT"
+ "Mon, 28 Dec 2020 12:38:27 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -756,79 +549,10 @@
"-1"
],
"Content-Length": [
- "253"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "091df364-dba3-4384-b7f7-bdebedef2c82"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "8e1554f1-b1ee-45eb-a79a-72329af64148"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-correlation-request-id": [
- "3a078361-9cc6-4020-9a4d-36c1869df521"
- ],
- "x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T081021Z:3a078361-9cc6-4020-9a4d-36c1869df521"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:10:21 GMT"
- ],
- "Content-Length": [
- "930"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
+ "12"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"D6CCF51819274501188BEA29AD17FFF3FBB386CD\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
index 9aeb6a25bcc1..9cfd080ea75e 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateForSlot.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3c5d538-152a-414f-a4c6-f7242f658f1a"
+ "cfa3489a-feca-4976-8385-778500d6f916"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BDA0EA87E580\""
+ "\"1D6C8DD2BA164D5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "480db5d5-ca88-4baf-b0dd-fc12fb46a8cc"
+ "875e7b16-32f1-4a26-8862-dd82f11c3b8a"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11995"
],
"x-ms-correlation-request-id": [
- "86cce3ef-921b-4c01-b120-8b7d10940dae"
+ "77f90a29-02aa-47d2-b425-5fe0920808df"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T080915Z:86cce3ef-921b-4c01-b120-8b7d10940dae"
+ "SOUTHINDIA:20201228T123243Z:77f90a29-02aa-47d2-b425-5fe0920808df"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:15 GMT"
+ "Mon, 28 Dec 2020 12:32:42 GMT"
],
"Content-Length": [
- "5667"
+ "5672"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-18T11:49:48.12\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.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\": \"lketmtestantps10-testslot.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\": \"testslot.adorenow.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\": \"lketmtestantps10-testslot.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-02T18:58:49.9333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c743a2f3-1d92-4757-a27a-22c34d92c539"
+ "db97e478-d989-4047-8f05-3689fbf37d75"
],
"Accept-Language": [
"en-US"
@@ -102,7 +102,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "08c9ccb9-3d60-48d9-bb85-30291c992db4"
+ "5d72b037-a36d-44ba-8c65-8159da3f882e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -114,19 +114,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11994"
],
"x-ms-correlation-request-id": [
- "0237aca5-476f-4c57-a841-027bbe10dc0b"
+ "b072a8e6-1ea9-4db7-a9f1-479bfc14162f"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T080917Z:0237aca5-476f-4c57-a841-027bbe10dc0b"
+ "SOUTHINDIA:20201228T123243Z:b072a8e6-1ea9-4db7-a9f1-479bfc14162f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:17 GMT"
+ "Mon, 28 Dec 2020 12:32:43 GMT"
],
"Content-Length": [
"3638"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bad7edb1-1ba3-4ec6-8bd4-e52e5c0093a6"
+ "a2e5a918-2a80-44af-bb25-c6a31279050e"
],
"Accept-Language": [
"en-US"
@@ -171,7 +171,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5566750b-9d66-4f6b-8575-4df162409bef"
+ "d8a52ac5-1543-4f2e-a3a4-bc3ac274cfae"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -186,16 +186,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "b76c6dc6-1f06-47c1-9e66-470f3f7276b0"
+ "9a3b34ef-2a3c-4e9d-9a78-6d7be3b078ef"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T080919Z:b76c6dc6-1f06-47c1-9e66-470f3f7276b0"
+ "SOUTHINDIA:20201228T123244Z:9a3b34ef-2a3c-4e9d-9a78-6d7be3b078ef"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:19 GMT"
+ "Mon, 28 Dec 2020 12:32:43 GMT"
],
"Content-Length": [
"755"
@@ -217,7 +217,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "34b5ecd2-84c2-457d-8ded-48f69750828f"
+ "27742160-db47-41e0-a367-851b7bf09af9"
],
"Accept-Language": [
"en-US"
@@ -240,7 +240,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "dd4357d7-ae3e-4383-9130-77730aa5be22"
+ "71199a07-6998-480b-a652-aac1dd3aaeb9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -255,16 +255,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "1794f064-6511-4d74-96b8-403140b3d314"
+ "a9bb1bc8-6115-494f-8fec-1534cd29c131"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T080919Z:1794f064-6511-4d74-96b8-403140b3d314"
+ "SOUTHINDIA:20201228T123244Z:a9bb1bc8-6115-494f-8fec-1534cd29c131"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:19 GMT"
+ "Mon, 28 Dec 2020 12:32:44 GMT"
],
"Content-Length": [
"305"
@@ -286,7 +286,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "74461ce4-8855-4eba-9cf5-91348437de2e"
+ "7249bc41-c217-443e-9dcf-d0832863692f"
],
"Accept-Language": [
"en-US"
@@ -309,7 +309,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e9241e95-c5ec-4e1b-a5ab-662a8de9ed97"
+ "7d47a4cf-dc29-4c49-a662-f970f3f5f56d"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -324,16 +324,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "c3521294-1759-461e-98ba-7479b6ea230e"
+ "2b750ace-6dff-4a07-a9ed-22647ec5993d"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T080920Z:c3521294-1759-461e-98ba-7479b6ea230e"
+ "SOUTHINDIA:20201228T123245Z:2b750ace-6dff-4a07-a9ed-22647ec5993d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:20 GMT"
+ "Mon, 28 Dec 2020 12:32:44 GMT"
],
"Content-Length": [
"302"
@@ -349,13 +349,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"testslot.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "27f0c5e2-f098-4a3e-9a44-2b33457d6f41"
+ "df4d64e0-16e1-4af5-bfd9-9b82741b501d"
],
"Accept-Language": [
"en-US"
@@ -381,7 +381,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net/operationresults/6311e281-058d-4701-be4d-dc20d5428901?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert/operationresults/593579e5-b639-4344-af49-6886f633ef7e?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -399,22 +399,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "a0664953-b611-41ca-90d1-fcddb6191c39"
+ "dd804f3b-2115-4b86-92b8-bae459aae9eb"
],
"x-ms-correlation-request-id": [
- "a0664953-b611-41ca-90d1-fcddb6191c39"
+ "dd804f3b-2115-4b86-92b8-bae459aae9eb"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T080930Z:a0664953-b611-41ca-90d1-fcddb6191c39"
+ "SOUTHINDIA:20201228T123255Z:dd804f3b-2115-4b86-92b8-bae459aae9eb"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:30 GMT"
+ "Mon, 28 Dec 2020 12:32:54 GMT"
],
"Expires": [
"-1"
@@ -427,13 +427,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3515ec8-0e16-41c5-95b2-3802de63d846"
+ "26663875-e219-4bef-9dbe-376d703cf10a"
],
"Accept-Language": [
"en-US"
@@ -455,74 +455,8 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
"x-ms-request-id": [
- "47d9caf4-c7c1-4ac5-a4a3-c77e057d149b"
- ],
- "x-ms-correlation-request-id": [
- "47d9caf4-c7c1-4ac5-a4a3-c77e057d149b"
- ],
- "x-ms-routing-request-id": [
- "WESTINDIA:20201123T080931Z:47d9caf4-c7c1-4ac5-a4a3-c77e057d149b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:09:30 GMT"
- ],
- "Content-Length": [
- "455"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "08467b36-e370-4af0-bd6c-5b24461ab1bf"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "f89809db-0d6f-4b87-b027-c1387b9e8a52"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -534,94 +468,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-request-id": [
- "7185dc61-00f5-48ea-a9bf-a9065bb70d04"
+ "11993"
],
"x-ms-correlation-request-id": [
- "7185dc61-00f5-48ea-a9bf-a9065bb70d04"
+ "e612265a-c8c9-436d-9dd9-f5702b133582"
],
"x-ms-routing-request-id": [
- "WESTINDIA:20201123T080936Z:7185dc61-00f5-48ea-a9bf-a9065bb70d04"
+ "SOUTHINDIA:20201228T123322Z:e612265a-c8c9-436d-9dd9-f5702b133582"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:36 GMT"
+ "Mon, 28 Dec 2020 12:33:21 GMT"
],
"Content-Length": [
- "455"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RzbG90LmFkb3Jlbm93Lm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "3809c738-5009-4403-a4a3-172fddcc612e"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "8cb1fb0a-ccd8-4de3-a2e1-3384b9a1aaad"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-correlation-request-id": [
- "28b92a42-98a3-4237-b088-5edcfea0ad8f"
- ],
- "x-ms-routing-request-id": [
- "WESTINDIA:20201123T080942Z:28b92a42-98a3-4237-b088-5edcfea0ad8f"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:09:41 GMT"
- ],
- "Content-Length": [
- "890"
+ "912"
],
"Content-Type": [
"application/json"
@@ -630,7 +492,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/testslot.adorenow.net\",\r\n \"name\": \"testslot.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"D6CCF51819274501188BEA29AD17FFF3FBB386CD\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert\",\r\n \"name\": \"adorenowcert\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testslot.adorenow.net\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-12-28T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-06-28T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"0BA4A1DC7DEC67586CB7C0A2472AF01675456EB2\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"testslot.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -640,7 +502,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d3f1b625-a645-462b-980a-1dd0de381bec"
+ "73c43d6c-52db-4e1a-97c9-0ff640d4c6da"
],
"Accept-Language": [
"en-US"
@@ -660,16 +522,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11991"
],
"x-ms-request-id": [
- "38754c4a-bed1-4663-ba0a-52b84efb2101"
+ "c2823b51-36dd-4b11-850a-f58ab7320eda"
],
"x-ms-correlation-request-id": [
- "38754c4a-bed1-4663-ba0a-52b84efb2101"
+ "c2823b51-36dd-4b11-850a-f58ab7320eda"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080942Z:38754c4a-bed1-4663-ba0a-52b84efb2101"
+ "SOUTHINDIA:20201228T123322Z:c2823b51-36dd-4b11-850a-f58ab7320eda"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -678,7 +540,7 @@
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:09:42 GMT"
+ "Mon, 28 Dec 2020 12:33:22 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
index 709bfaa96e45..6426f70266cd 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestNewAzWebAppCertificateWithSSLBinding.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23fb275d-48a6-4eb8-8cc5-729c44b44301"
+ "c663d0d7-e1d9-4dfd-94c5-134490a2ffc0"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BEA1474B3C15\""
+ "\"1D6DD13AC756460\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a177284-a6d5-45c1-9a6c-5418c69cb828"
+ "6555f282-173b-421f-8cfd-9e6ea25276f4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -48,19 +48,19 @@
"11999"
],
"x-ms-correlation-request-id": [
- "703e16be-224f-41ce-8dc7-db3054f412c2"
+ "d0dcc6d4-fe02-443b-aa11-b444753cea98"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080755Z:703e16be-224f-41ce-8dc7-db3054f412c2"
+ "SOUTHINDIA:20201228T123540Z:d0dcc6d4-fe02-443b-aa11-b444753cea98"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:54 GMT"
+ "Mon, 28 Dec 2020 12:35:40 GMT"
],
"Content-Length": [
- "5537"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-19T18:24:54.9133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:19:22.15\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c17ce73e-3cf5-450b-a007-70db39425fdf"
+ "76fddfbf-c5da-4019-b4ea-acb0029e74b8"
],
"Accept-Language": [
"en-US"
@@ -99,13 +99,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BEA1474B3C15\""
+ "\"1D6DD13AC756460\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "10838b27-f2df-4aac-8642-36ff9d8bb9ac"
+ "c171a9ae-21f1-43b1-b285-8bd83ec56668"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -117,22 +117,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11996"
],
"x-ms-correlation-request-id": [
- "4f42df2c-9b67-400c-bffa-812bba2df931"
+ "bba9a312-6fa4-4019-bb4e-8fda717b60e2"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080819Z:4f42df2c-9b67-400c-bffa-812bba2df931"
+ "SOUTHINDIA:20201228T123632Z:bba9a312-6fa4-4019-bb4e-8fda717b60e2"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:19 GMT"
+ "Mon, 28 Dec 2020 12:36:31 GMT"
],
"Content-Length": [
- "5537"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -141,7 +141,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-19T18:24:54.9133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:19:22.15\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -151,7 +151,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0423db46-15af-402a-bed0-a8d3351340c2"
+ "aa7c07eb-4914-48f3-93ca-3ba7a1bd02cd"
],
"Accept-Language": [
"en-US"
@@ -171,13 +171,13 @@
"no-cache"
],
"ETag": [
- "\"1D6C16FD16E3680\""
+ "\"1D6DD1615C18CB5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "abb2a1c8-f76c-4939-87ee-728446c506a3"
+ "a163c1a5-233a-4cc4-b693-9bf9928f28f4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -189,22 +189,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11994"
],
"x-ms-correlation-request-id": [
- "2bd7708f-e1a9-4e37-bf3a-c6021a612542"
+ "bf3c126e-c5ee-4ff8-bf6c-74702a5c7a2d"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080829Z:2bd7708f-e1a9-4e37-bf3a-c6021a612542"
+ "SOUTHINDIA:20201228T123643Z:bf3c126e-c5ee-4ff8-bf6c-74702a5c7a2d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:28 GMT"
+ "Mon, 28 Dec 2020 12:36:42 GMT"
],
"Content-Length": [
- "5572"
+ "5577"
],
"Content-Type": [
"application/json"
@@ -213,7 +213,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:36:37.8033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -223,7 +223,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "492ba283-9f50-4d88-95d0-e9e130ceefc0"
+ "0187e0b8-f131-4f3a-af3e-c49acc90b342"
],
"Accept-Language": [
"en-US"
@@ -243,13 +243,13 @@
"no-cache"
],
"ETag": [
- "\"1D6C16FD16E3680\""
+ "\"1D6DD1615C18CB5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6f028294-dc63-4b21-8426-74689a874944"
+ "dcea969c-ad4d-43ca-85c4-145daa15eb83"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -261,22 +261,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11992"
],
"x-ms-correlation-request-id": [
- "c49b31d3-2d05-4f1b-9a00-519d9c333fc4"
+ "d185c2e9-41cf-427a-ad37-e7762effa49a"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080832Z:c49b31d3-2d05-4f1b-9a00-519d9c333fc4"
+ "SOUTHINDIA:20201228T123646Z:d185c2e9-41cf-427a-ad37-e7762effa49a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:32 GMT"
+ "Mon, 28 Dec 2020 12:36:46 GMT"
],
"Content-Length": [
- "5572"
+ "5577"
],
"Content-Type": [
"application/json"
@@ -285,7 +285,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:36:37.8033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -295,7 +295,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e0edc65e-c803-4925-bee2-122e8a6fdc33"
+ "06f8eba0-02a5-45a5-af03-1e05f7bf12a1"
],
"Accept-Language": [
"en-US"
@@ -315,13 +315,13 @@
"no-cache"
],
"ETag": [
- "\"1D6C16FD16E3680\""
+ "\"1D6DD1615C18CB5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c0997fd2-2462-439f-8635-66d94ed2a443"
+ "cc7d0e7b-bd63-44ed-ad9c-bf9522676e14"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -333,22 +333,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
+ "11990"
],
"x-ms-correlation-request-id": [
- "964bd20e-abc0-4f67-ac59-a22aaa9ce337"
+ "1059d83a-991a-48df-bdd3-ed6276241e1d"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080835Z:964bd20e-abc0-4f67-ac59-a22aaa9ce337"
+ "SOUTHINDIA:20201228T123649Z:1059d83a-991a-48df-bdd3-ed6276241e1d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:34 GMT"
+ "Mon, 28 Dec 2020 12:36:49 GMT"
],
"Content-Length": [
- "5572"
+ "5577"
],
"Content-Type": [
"application/json"
@@ -357,7 +357,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:36:37.8033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -367,7 +367,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c23e14c8-62f0-42da-bc96-7e192c829825"
+ "9cc37397-e29d-429d-8cdc-ee177068730b"
],
"Accept-Language": [
"en-US"
@@ -387,13 +387,13 @@
"no-cache"
],
"ETag": [
- "\"1D6C16FD16E3680\""
+ "\"1D6DD1615C18CB5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6ed449e5-fac9-4e95-94f1-5ab862a2841d"
+ "9187304b-c5c1-4296-b643-9bdd74077ae1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -405,22 +405,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
+ "11988"
],
"x-ms-correlation-request-id": [
- "cdda5fdc-9295-483d-973f-abf2fbe62ff8"
+ "afa3fec4-85dc-42fd-98cd-a8926669bdb8"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080838Z:cdda5fdc-9295-483d-973f-abf2fbe62ff8"
+ "SOUTHINDIA:20201228T123652Z:afa3fec4-85dc-42fd-98cd-a8926669bdb8"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:37 GMT"
+ "Mon, 28 Dec 2020 12:36:51 GMT"
],
"Content-Length": [
- "5572"
+ "5577"
],
"Content-Type": [
"application/json"
@@ -429,7 +429,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:36:37.8033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -439,7 +439,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ca950f49-e4ec-46b2-b581-6440daf5583c"
+ "21ca5d37-7d25-4004-bc7c-a8d61fe5c842"
],
"Accept-Language": [
"en-US"
@@ -462,7 +462,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ad64321e-ede3-493f-860e-4f38ae632ebb"
+ "b4a40417-d665-4367-951d-3dd816b0ed33"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -477,16 +477,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "07ed8bda-ba3b-4d13-8075-82d5deddab91"
+ "d284a2e3-9dde-4c61-92b4-94467df70990"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080756Z:07ed8bda-ba3b-4d13-8075-82d5deddab91"
+ "SOUTHINDIA:20201228T123541Z:d284a2e3-9dde-4c61-92b4-94467df70990"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:55 GMT"
+ "Mon, 28 Dec 2020 12:35:40 GMT"
],
"Content-Length": [
"4103"
@@ -508,7 +508,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e6cdb60b-3233-4bf5-9292-bb756781902f"
+ "3b100cf2-6ed8-49f4-8afe-d6246a498e88"
],
"Accept-Language": [
"en-US"
@@ -531,7 +531,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "0ba2556b-e0bd-46f9-863c-7909bc356990"
+ "aa607b4b-7d81-40d0-b0e3-07ed12afd85e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -543,19 +543,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11995"
],
"x-ms-correlation-request-id": [
- "89ad02d0-b47c-4dc6-8f7f-e642e8761325"
+ "4d46fce2-53b6-4fe7-84e6-3fe0d9af9627"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080820Z:89ad02d0-b47c-4dc6-8f7f-e642e8761325"
+ "SOUTHINDIA:20201228T123632Z:4d46fce2-53b6-4fe7-84e6-3fe0d9af9627"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:20 GMT"
+ "Mon, 28 Dec 2020 12:36:32 GMT"
],
"Content-Length": [
"4103"
@@ -577,7 +577,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "576f7a79-62cf-44cc-a61b-5c3388da493f"
+ "44084567-5850-48c6-946e-473a8a439ea4"
],
"Accept-Language": [
"en-US"
@@ -600,7 +600,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3f296328-8eca-4560-8085-573b54c32288"
+ "8998e755-3f6f-44b9-8ead-abd44f83cfb5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -612,19 +612,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11993"
],
"x-ms-correlation-request-id": [
- "af642d1a-d0be-4f9f-b7e4-03cce51e022e"
+ "9d557205-4236-4016-b67b-cbd138ede69d"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080830Z:af642d1a-d0be-4f9f-b7e4-03cce51e022e"
+ "SOUTHINDIA:20201228T123643Z:9d557205-4236-4016-b67b-cbd138ede69d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:29 GMT"
+ "Mon, 28 Dec 2020 12:36:43 GMT"
],
"Content-Length": [
"4103"
@@ -646,7 +646,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1b173a70-4820-4aad-a85d-7ea6ed41ef4b"
+ "a0b6427b-3dee-4760-9a39-b7c7ed67e041"
],
"Accept-Language": [
"en-US"
@@ -669,7 +669,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e88f4da-f002-4686-9559-575259e69f48"
+ "e8ec6692-d6d9-4c97-9fc4-9d945213c114"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -681,19 +681,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11991"
],
"x-ms-correlation-request-id": [
- "e1d186ff-4883-457f-9166-85585522a702"
+ "13f9dee8-f1a4-4b59-9ddb-81bedca79f91"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080832Z:e1d186ff-4883-457f-9166-85585522a702"
+ "SOUTHINDIA:20201228T123647Z:13f9dee8-f1a4-4b59-9ddb-81bedca79f91"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:32 GMT"
+ "Mon, 28 Dec 2020 12:36:46 GMT"
],
"Content-Length": [
"4103"
@@ -715,7 +715,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "944fd550-4135-42ba-a5b4-c53e15c8117e"
+ "b0b6a648-3fdd-43fb-a215-cc9f32872893"
],
"Accept-Language": [
"en-US"
@@ -738,7 +738,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bd94d697-bd43-4afa-94a0-4aa2ef13577c"
+ "bd0222f0-ef31-44e1-937a-23106af4c878"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -750,19 +750,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
+ "11989"
],
"x-ms-correlation-request-id": [
- "c7e6fa90-1501-4e38-b45b-96eaf841012e"
+ "114279d4-9173-4de4-aba6-895a8500793c"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080836Z:c7e6fa90-1501-4e38-b45b-96eaf841012e"
+ "SOUTHINDIA:20201228T123650Z:114279d4-9173-4de4-aba6-895a8500793c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:35 GMT"
+ "Mon, 28 Dec 2020 12:36:49 GMT"
],
"Content-Length": [
"4103"
@@ -784,7 +784,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7b421781-3208-4f36-986e-9f3048c301d4"
+ "16aa9ac5-fcaa-41cc-8f7c-af945340d1d7"
],
"Accept-Language": [
"en-US"
@@ -807,7 +807,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b76fe9f7-44eb-41a6-82c5-82baf09ceeec"
+ "475e67c7-4c77-4982-a23b-580b3f596ff9"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -819,19 +819,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
+ "11987"
],
"x-ms-correlation-request-id": [
- "8d6e660d-65af-42b8-877a-5c681d50c4d6"
+ "4931675b-172b-453c-b2a1-54678b336c8e"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080838Z:8d6e660d-65af-42b8-877a-5c681d50c4d6"
+ "SOUTHINDIA:20201228T123653Z:4931675b-172b-453c-b2a1-54678b336c8e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:38 GMT"
+ "Mon, 28 Dec 2020 12:36:52 GMT"
],
"Content-Length": [
"4103"
@@ -853,7 +853,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6537cd7e-5e60-4bff-94f0-6dcae679c8be"
+ "61cc0ee9-0fe6-4a6a-b007-bcefb355740f"
],
"Accept-Language": [
"en-US"
@@ -876,7 +876,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ea4172e6-da73-4129-9a72-f83471a983f0"
+ "eb51a980-ccc8-42d8-b714-8772ee801bb1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -891,16 +891,16 @@
"11999"
],
"x-ms-correlation-request-id": [
- "268a74fe-bac6-415c-90cd-b52d589358e7"
+ "f9b44b4c-043f-4662-9020-355dac33c36f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080756Z:268a74fe-bac6-415c-90cd-b52d589358e7"
+ "SOUTHINDIA:20201228T123542Z:f9b44b4c-043f-4662-9020-355dac33c36f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:56 GMT"
+ "Mon, 28 Dec 2020 12:35:41 GMT"
],
"Content-Length": [
"740"
@@ -922,7 +922,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c99787d-fd87-455f-abd1-80e35a865ee6"
+ "3dde85b2-bcf7-433a-851f-ae0eb0955fe0"
],
"Accept-Language": [
"en-US"
@@ -945,7 +945,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "22651df4-e36f-405c-969c-1bf58b7d19e9"
+ "de9dbca6-ee1c-457b-aa88-6debcc7fa080"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -960,16 +960,16 @@
"11996"
],
"x-ms-correlation-request-id": [
- "76b4c4b9-7ff4-45db-8ffb-9c3fa34d174b"
+ "b5360aa6-16e9-4416-a32b-85f6fbb4374f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080821Z:76b4c4b9-7ff4-45db-8ffb-9c3fa34d174b"
+ "SOUTHINDIA:20201228T123633Z:b5360aa6-16e9-4416-a32b-85f6fbb4374f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:21 GMT"
+ "Mon, 28 Dec 2020 12:36:32 GMT"
],
"Content-Length": [
"740"
@@ -991,7 +991,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5266c7b-31da-42fa-9144-d338d827c43f"
+ "a694224f-881a-45bc-b581-294dd99f08bd"
],
"Accept-Language": [
"en-US"
@@ -1014,7 +1014,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fbefc037-d51a-4974-b46e-415289386626"
+ "d4c51b9f-1256-4123-a477-ffd8e6f8d444"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1029,16 +1029,16 @@
"11993"
],
"x-ms-correlation-request-id": [
- "40f88dbb-44ab-4eec-b0c9-0c0bc1889fd2"
+ "0de4f16b-ee57-4003-9ece-fcf190db224b"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080830Z:40f88dbb-44ab-4eec-b0c9-0c0bc1889fd2"
+ "SOUTHINDIA:20201228T123644Z:0de4f16b-ee57-4003-9ece-fcf190db224b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:29 GMT"
+ "Mon, 28 Dec 2020 12:36:44 GMT"
],
"Content-Length": [
"740"
@@ -1060,7 +1060,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26fb60a9-cd24-41f5-9740-fed0700b79e3"
+ "89b4ad81-dd42-4db1-8f15-4f218ececf39"
],
"Accept-Language": [
"en-US"
@@ -1083,7 +1083,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "40260e93-d431-4b62-ada8-2e5bcde661a5"
+ "b34c21e9-7749-476c-854c-9715de666410"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1098,16 +1098,16 @@
"11990"
],
"x-ms-correlation-request-id": [
- "b1461e62-5661-4641-930f-70566585ea4b"
+ "aa44cc1b-ec68-4037-8171-19b3a6d54a1c"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080833Z:b1461e62-5661-4641-930f-70566585ea4b"
+ "SOUTHINDIA:20201228T123647Z:aa44cc1b-ec68-4037-8171-19b3a6d54a1c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:32 GMT"
+ "Mon, 28 Dec 2020 12:36:47 GMT"
],
"Content-Length": [
"740"
@@ -1129,7 +1129,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "846c702a-5aa8-44f7-8748-9169e104c9a3"
+ "631a7239-ad39-491a-a268-ab3a0f73bff9"
],
"Accept-Language": [
"en-US"
@@ -1152,7 +1152,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "c8b58d37-d42b-4e95-be9e-6af401ac7f40"
+ "e3cd8ba6-dba7-464b-87da-eb0fccd25629"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1167,16 +1167,16 @@
"11987"
],
"x-ms-correlation-request-id": [
- "ee167025-7154-4469-b88c-4d1f6ab76e55"
+ "aff41600-f11e-448d-b053-8495dc2da981"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080836Z:ee167025-7154-4469-b88c-4d1f6ab76e55"
+ "SOUTHINDIA:20201228T123650Z:aff41600-f11e-448d-b053-8495dc2da981"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:36 GMT"
+ "Mon, 28 Dec 2020 12:36:50 GMT"
],
"Content-Length": [
"740"
@@ -1198,7 +1198,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c0f67d19-f7a8-4c6e-b1c8-272bf88326de"
+ "c3ab47db-be9f-4e2f-8e9d-da4f5635dc05"
],
"Accept-Language": [
"en-US"
@@ -1221,7 +1221,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7169752a-9c5c-4cfc-a636-bc8dca0899d8"
+ "cc35ddb6-00cd-44e2-be6e-a278df62dc4f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1236,16 +1236,16 @@
"11984"
],
"x-ms-correlation-request-id": [
- "c8575e42-2498-4835-9200-4a5d61bcd874"
+ "cb2ee549-970e-477e-9fa9-8085c5d4aa7b"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080839Z:c8575e42-2498-4835-9200-4a5d61bcd874"
+ "SOUTHINDIA:20201228T123653Z:cb2ee549-970e-477e-9fa9-8085c5d4aa7b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:38 GMT"
+ "Mon, 28 Dec 2020 12:36:53 GMT"
],
"Content-Length": [
"740"
@@ -1267,7 +1267,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dda73ab6-1ac0-4764-bd3f-28dcc0f80a38"
+ "e8274812-35bc-4f63-9882-ee625f563cf2"
],
"Accept-Language": [
"en-US"
@@ -1290,7 +1290,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d3239eaf-7112-4d47-b5a1-aa65bfdb6077"
+ "6a3c5a90-a128-491a-a911-acba63493b83"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1305,16 +1305,16 @@
"11998"
],
"x-ms-correlation-request-id": [
- "2f0a7abc-c207-464c-9c9e-916e1f778fe3"
+ "ea1beea8-cdc6-48c2-97c0-328ed8d7a11e"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080757Z:2f0a7abc-c207-464c-9c9e-916e1f778fe3"
+ "SOUTHINDIA:20201228T123542Z:ea1beea8-cdc6-48c2-97c0-328ed8d7a11e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:56 GMT"
+ "Mon, 28 Dec 2020 12:35:42 GMT"
],
"Content-Length": [
"290"
@@ -1336,7 +1336,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f20878b8-d272-4759-a166-cb91138d3d6d"
+ "8cb9e246-ba64-42b7-9db1-587e664b2a1f"
],
"Accept-Language": [
"en-US"
@@ -1359,7 +1359,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "bff13b4d-ec15-4091-b099-a7920921b57e"
+ "5ebbfd29-cbe2-4091-a4d0-2936b11d3a73"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1374,16 +1374,16 @@
"11995"
],
"x-ms-correlation-request-id": [
- "a40c661b-04f5-4d07-b74d-f0e98a95d157"
+ "6546627b-2099-4ef3-b700-a5aeddefe73f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080822Z:a40c661b-04f5-4d07-b74d-f0e98a95d157"
+ "SOUTHINDIA:20201228T123633Z:6546627b-2099-4ef3-b700-a5aeddefe73f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:22 GMT"
+ "Mon, 28 Dec 2020 12:36:33 GMT"
],
"Content-Length": [
"290"
@@ -1405,7 +1405,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f36c40ad-119d-4bbd-8198-0f6f16efb21f"
+ "7a95bd43-1bfc-46e0-925c-cd1010f9a89f"
],
"Accept-Language": [
"en-US"
@@ -1428,7 +1428,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "43bf8065-5e1d-4b9b-a93c-7a23d9b8d58f"
+ "18e0e333-4f27-491e-b13e-98cfff93cc84"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1443,16 +1443,16 @@
"11992"
],
"x-ms-correlation-request-id": [
- "870c0fc4-f948-4d04-976a-542d5f9d6272"
+ "73defa3e-b198-4c81-a36e-b89683b0dd6e"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080831Z:870c0fc4-f948-4d04-976a-542d5f9d6272"
+ "SOUTHINDIA:20201228T123645Z:73defa3e-b198-4c81-a36e-b89683b0dd6e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:31 GMT"
+ "Mon, 28 Dec 2020 12:36:44 GMT"
],
"Content-Length": [
"290"
@@ -1474,7 +1474,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0d63aec5-cac1-4175-9426-f7ab4d5e2bd8"
+ "65a775d6-3392-41ed-ac91-e450aaa65df2"
],
"Accept-Language": [
"en-US"
@@ -1497,7 +1497,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f7e3d608-8179-49c6-a9c7-79d848aab302"
+ "1531e858-8b77-4ce8-aadc-bdcacbff13d1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1512,16 +1512,16 @@
"11989"
],
"x-ms-correlation-request-id": [
- "4527659e-8c94-4a2b-b996-9a9b447fb386"
+ "f9f650a8-3c14-44b5-a6a1-d7cb67272631"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080833Z:4527659e-8c94-4a2b-b996-9a9b447fb386"
+ "SOUTHINDIA:20201228T123648Z:f9f650a8-3c14-44b5-a6a1-d7cb67272631"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:33 GMT"
+ "Mon, 28 Dec 2020 12:36:47 GMT"
],
"Content-Length": [
"290"
@@ -1543,7 +1543,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "49029337-66b3-44e4-b4cf-512a3e7ad374"
+ "bee63781-be15-474e-89a5-edcc2e6d6bed"
],
"Accept-Language": [
"en-US"
@@ -1566,7 +1566,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3f1ee88e-857e-4851-a6c9-744a051d18a3"
+ "eacd5426-86b9-48b9-96ec-b5ecbc120e20"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1581,16 +1581,16 @@
"11986"
],
"x-ms-correlation-request-id": [
- "5f3a85f0-9c08-4d50-9095-a2171b78ce39"
+ "0b7986ed-c528-46c9-aa06-5eb50aa5ba17"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080837Z:5f3a85f0-9c08-4d50-9095-a2171b78ce39"
+ "SOUTHINDIA:20201228T123651Z:0b7986ed-c528-46c9-aa06-5eb50aa5ba17"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:36 GMT"
+ "Mon, 28 Dec 2020 12:36:50 GMT"
],
"Content-Length": [
"290"
@@ -1612,7 +1612,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b1ce257c-c150-42e3-9394-46ab14dcd4a0"
+ "305e5b04-606c-4964-8d31-1d83b771096e"
],
"Accept-Language": [
"en-US"
@@ -1635,7 +1635,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "268c3c81-672f-4dbf-bc4a-7d6e093321b7"
+ "af1ecb5f-918e-43f7-983e-64a6e03b8cd1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1650,16 +1650,16 @@
"11983"
],
"x-ms-correlation-request-id": [
- "a4671464-2566-4069-9ded-3b312b8eb3f9"
+ "99c99f50-a296-4d0c-ba08-f6691e1bb44f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080840Z:a4671464-2566-4069-9ded-3b312b8eb3f9"
+ "SOUTHINDIA:20201228T123654Z:99c99f50-a296-4d0c-ba08-f6691e1bb44f"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:39 GMT"
+ "Mon, 28 Dec 2020 12:36:53 GMT"
],
"Content-Length": [
"290"
@@ -1681,7 +1681,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fd6ddf53-a6b6-4c4e-9355-e8ff2a7c7360"
+ "6589744d-c29c-455a-9fb1-8c25f7562e10"
],
"Accept-Language": [
"en-US"
@@ -1704,7 +1704,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8a3fef6e-bb1c-4133-a8dd-1f26b05f97fa"
+ "e247b498-754a-4355-aac3-3cf72a4fa7e3"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1719,16 +1719,16 @@
"11997"
],
"x-ms-correlation-request-id": [
- "2c04ad37-0d31-4713-8de8-0e4f69580fd5"
+ "5d3471f3-8696-4831-8f7e-29d1d84da55c"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080758Z:2c04ad37-0d31-4713-8de8-0e4f69580fd5"
+ "SOUTHINDIA:20201228T123543Z:5d3471f3-8696-4831-8f7e-29d1d84da55c"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:58 GMT"
+ "Mon, 28 Dec 2020 12:35:42 GMT"
],
"Content-Length": [
"287"
@@ -1750,7 +1750,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3e1b6463-0efc-45e4-aa63-b45eaf253232"
+ "3eab2cc6-6c99-4350-9eeb-a7516ab53e94"
],
"Accept-Language": [
"en-US"
@@ -1773,7 +1773,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3ee86a72-30fe-420d-8268-688efd14cbb0"
+ "7b45ad39-75ad-484c-9f6d-587635424f0f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1788,16 +1788,16 @@
"11994"
],
"x-ms-correlation-request-id": [
- "51c4b590-5679-4137-9efb-017ae6f39780"
+ "e4ec02d3-4952-4de6-8bad-c65d3a6118a1"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080823Z:51c4b590-5679-4137-9efb-017ae6f39780"
+ "SOUTHINDIA:20201228T123634Z:e4ec02d3-4952-4de6-8bad-c65d3a6118a1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:22 GMT"
+ "Mon, 28 Dec 2020 12:36:33 GMT"
],
"Content-Length": [
"287"
@@ -1819,7 +1819,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78969afd-62c1-40dc-898a-61b720717d2e"
+ "1170e386-8f7e-4afe-97f0-ab40201f1fb2"
],
"Accept-Language": [
"en-US"
@@ -1842,7 +1842,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4991fbbc-d471-4e95-bc50-c8d8740ef949"
+ "2ea37cb0-3430-47ba-8f83-460a63fae4c5"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1857,16 +1857,16 @@
"11991"
],
"x-ms-correlation-request-id": [
- "4122190c-f57d-4e22-a11b-c74738af6e29"
+ "7d758fe3-e650-4c14-a9ab-81b6cac571cd"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080831Z:4122190c-f57d-4e22-a11b-c74738af6e29"
+ "SOUTHINDIA:20201228T123646Z:7d758fe3-e650-4c14-a9ab-81b6cac571cd"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:31 GMT"
+ "Mon, 28 Dec 2020 12:36:45 GMT"
],
"Content-Length": [
"287"
@@ -1888,7 +1888,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1e1e6c9b-a0af-4aca-a54a-6d0eee540bbf"
+ "a72ece0d-0b76-4ce4-be83-db308a83b96d"
],
"Accept-Language": [
"en-US"
@@ -1911,7 +1911,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6056305f-b5b0-4b4f-91c2-8b9602b54841"
+ "5a88cc79-e6ec-4b63-827d-bccd86cdd554"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1926,16 +1926,16 @@
"11988"
],
"x-ms-correlation-request-id": [
- "49894d89-2f65-422e-89f6-18e17d68f0c3"
+ "1654d3dd-1487-46e6-9390-824036804f0b"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080834Z:49894d89-2f65-422e-89f6-18e17d68f0c3"
+ "SOUTHINDIA:20201228T123648Z:1654d3dd-1487-46e6-9390-824036804f0b"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:34 GMT"
+ "Mon, 28 Dec 2020 12:36:48 GMT"
],
"Content-Length": [
"287"
@@ -1957,7 +1957,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ba143d9-6739-45cb-91a9-6c3dd4f89cc2"
+ "ba0914ad-1f9c-4462-b6db-4ffd54186d3d"
],
"Accept-Language": [
"en-US"
@@ -1980,7 +1980,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "662b74df-46db-433c-bdbd-386fa0dcec2b"
+ "f3e5be9d-9a79-4a38-9e8d-6cd93df8a222"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1995,16 +1995,16 @@
"11985"
],
"x-ms-correlation-request-id": [
- "757363ce-96b4-4831-ad65-128b6149bf33"
+ "19317db1-54b9-4546-9910-6c24a39fdce4"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080837Z:757363ce-96b4-4831-ad65-128b6149bf33"
+ "SOUTHINDIA:20201228T123651Z:19317db1-54b9-4546-9910-6c24a39fdce4"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:37 GMT"
+ "Mon, 28 Dec 2020 12:36:51 GMT"
],
"Content-Length": [
"287"
@@ -2026,7 +2026,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "14248b88-be27-454a-b8c1-9d6477006e75"
+ "fd4cf257-31b9-4955-8c8a-ba0993454acd"
],
"Accept-Language": [
"en-US"
@@ -2049,7 +2049,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ed19cc3b-19ed-43e3-bfd6-118fcc6c72ce"
+ "a9309d21-a84e-4ac7-8055-61b02c8b28f0"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2064,16 +2064,16 @@
"11982"
],
"x-ms-correlation-request-id": [
- "bba9b1d5-de0f-4d8b-bd40-0fcbe5f51340"
+ "dabb0f2f-6973-4a57-b538-6944e7300571"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080840Z:bba9b1d5-de0f-4d8b-bd40-0fcbe5f51340"
+ "SOUTHINDIA:20201228T123655Z:dabb0f2f-6973-4a57-b538-6944e7300571"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:40 GMT"
+ "Mon, 28 Dec 2020 12:36:54 GMT"
],
"Content-Length": [
"287"
@@ -2089,13 +2089,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "179901bd-abe7-4929-a126-8e906f159397"
+ "85528e49-915b-4f9d-b145-d4238fa017e7"
],
"Accept-Language": [
"en-US"
@@ -2121,7 +2121,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net/operationresults/517e2399-bd90-46cd-9d4a-0bb5cc950e01?api-version=2020-06-01"
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert/operationresults/bf43e411-8d92-4dd5-a00b-6b26f49055f5?api-version=2020-06-01"
],
"Retry-After": [
"15"
@@ -2142,19 +2142,19 @@
"1199"
],
"x-ms-request-id": [
- "08b071c7-7b5c-4de7-8725-4e96fb36a200"
+ "e43ffad2-8db4-4033-92e6-f8681f370212"
],
"x-ms-correlation-request-id": [
- "08b071c7-7b5c-4de7-8725-4e96fb36a200"
+ "e43ffad2-8db4-4033-92e6-f8681f370212"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080807Z:08b071c7-7b5c-4de7-8725-4e96fb36a200"
+ "SOUTHINDIA:20201228T123553Z:e43ffad2-8db4-4033-92e6-f8681f370212"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:06 GMT"
+ "Mon, 28 Dec 2020 12:35:52 GMT"
],
"Expires": [
"-1"
@@ -2167,82 +2167,13 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "a34da0f2-7284-4336-b356-f842a886b12c"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "0c14f6c6-8ac7-4d6e-99f9-aec19aa17042"
- ],
- "x-ms-correlation-request-id": [
- "0c14f6c6-8ac7-4d6e-99f9-aec19aa17042"
- ],
- "x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080807Z:0c14f6c6-8ac7-4d6e-99f9-aec19aa17042"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:08:07 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2c567945-17b4-4d75-b44c-b30578cb0d86"
+ "18cc37cc-10d9-4a93-9fad-645e23578f7f"
],
"Accept-Language": [
"en-US"
@@ -2264,77 +2195,8 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
"x-ms-request-id": [
- "f4bffcf3-7264-4eae-b60d-6a40c36e6788"
- ],
- "x-ms-correlation-request-id": [
- "f4bffcf3-7264-4eae-b60d-6a40c36e6788"
- ],
- "x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080813Z:f4bffcf3-7264-4eae-b60d-6a40c36e6788"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:08:12 GMT"
- ],
- "Content-Length": [
- "435"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"NotFound\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"51004\",\r\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\r\n \"Parameters\": [\r\n \"Certificate\",\r\n \"www.adorenow.net\"\r\n ],\r\n \"Code\": \"NotFound\",\r\n \"Message\": \"Cannot find Certificate with name www.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}",
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "c4b0ad6e-b4ae-4a7d-8841-3be9272665fa"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-request-id": [
- "b43915e7-d71d-427d-a2ce-37841c8771e5"
+ "a2f54d2a-43d5-4c50-9c0e-cd051374cba8"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2346,22 +2208,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
],
"x-ms-correlation-request-id": [
- "76705f61-c541-49d8-a249-d595a00b590d"
+ "e8b9003f-22fc-4e6d-a8fc-11e19d102045"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080819Z:76705f61-c541-49d8-a249-d595a00b590d"
+ "SOUTHINDIA:20201228T123622Z:e8b9003f-22fc-4e6d-a8fc-11e19d102045"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:19 GMT"
+ "Mon, 28 Dec 2020 12:36:22 GMT"
],
"Content-Length": [
- "905"
+ "897"
],
"Content-Type": [
"application/json"
@@ -2370,17 +2232,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert\",\r\n \"name\": \"adorenowcert\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-12-28T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-06-28T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f79bb45b-7efd-4707-9b6b-2a7adbef526e"
+ "5149aa8b-0956-4870-908c-2130a550c3be"
],
"Accept-Language": [
"en-US"
@@ -2403,7 +2265,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4986b750-d2b2-4af8-b893-481fbf490e8e"
+ "9e324a31-252c-4d60-a171-357cb6434e12"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2415,22 +2277,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
+ "11986"
],
"x-ms-correlation-request-id": [
- "4bce5770-ff56-4726-9fac-4f28cbee87fb"
+ "2d453aa0-552f-4350-a245-a51b2ed5e8c9"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080847Z:4bce5770-ff56-4726-9fac-4f28cbee87fb"
+ "SOUTHINDIA:20201228T123700Z:2d453aa0-552f-4350-a245-a51b2ed5e8c9"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:47 GMT"
+ "Mon, 28 Dec 2020 12:37:00 GMT"
],
"Content-Length": [
- "905"
+ "897"
],
"Content-Type": [
"application/json"
@@ -2439,17 +2301,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert\",\r\n \"name\": \"adorenowcert\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-12-28T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-06-28T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
"RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2020-06-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a2a1c9ec-e467-4ea8-9609-49ccfe3b26a1"
+ "297e5ee9-8402-4adf-8c54-9640c12bbc7a"
],
"Accept-Language": [
"en-US"
@@ -2475,13 +2337,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BEA1474B3C15\""
+ "\"1D6DD13AC756460\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "2a590729-1816-4fe6-9892-4e24486fdc4b"
+ "ed821e99-db2a-48ed-818b-d96996ee18df"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2496,19 +2358,19 @@
"499"
],
"x-ms-correlation-request-id": [
- "d1c8b793-86d2-42db-bfe1-87ee477a23e7"
+ "2bf230a0-8566-40bd-af2d-93accb14b139"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080828Z:d1c8b793-86d2-42db-bfe1-87ee477a23e7"
+ "SOUTHINDIA:20201228T123642Z:2bf230a0-8566-40bd-af2d-93accb14b139"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:28 GMT"
+ "Mon, 28 Dec 2020 12:36:42 GMT"
],
"Content-Length": [
- "5772"
+ "5777"
],
"Content-Type": [
"application/json"
@@ -2517,7 +2379,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"F0971446DB3AE504D02CFF7830AB21B239DA2B5D\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:25.32\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"752E572B94FC311548DF5D4173DF294E5F2D4F61\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:36:37.8033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2527,7 +2389,7 @@
"RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7c3629dc-6485-4e7e-9e83-ffed03905ee3"
+ "2c6886b5-cb62-457d-962e-599100358ef2"
],
"Accept-Language": [
"en-US"
@@ -2553,13 +2415,13 @@
"no-cache"
],
"ETag": [
- "\"1D6C16FD16E3680\""
+ "\"1D6DD1615C18CB5\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1509ecc2-b0d1-4836-b13b-59a14cd1f0dd"
+ "78e0916d-7ae4-493c-9bc3-b3c25df90fce"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2574,19 +2436,19 @@
"498"
],
"x-ms-correlation-request-id": [
- "bd0aef8f-ffd5-42ac-919e-75a34ee7b736"
+ "8ff6a593-dabd-4e97-adbf-cd53b6921370"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080846Z:bd0aef8f-ffd5-42ac-919e-75a34ee7b736"
+ "SOUTHINDIA:20201228T123659Z:8ff6a593-dabd-4e97-adbf-cd53b6921370"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:46 GMT"
+ "Mon, 28 Dec 2020 12:36:59 GMT"
],
"Content-Length": [
- "5732"
+ "5731"
],
"Content-Type": [
"application/json"
@@ -2595,7 +2457,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-23T08:08:43.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:36:56.7\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"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\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -2605,7 +2467,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "be2045eb-3663-4d49-887a-76cbc79d9303"
+ "cc08adc6-c841-4853-bef4-6e8b7601d965"
],
"Accept-Language": [
"en-US"
@@ -2625,16 +2487,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11996"
],
"x-ms-request-id": [
- "3dde4dcc-7891-4e65-a55f-0e940eade707"
+ "89c36499-20d4-4fdc-9e28-6c0de2b9c0f8"
],
"x-ms-correlation-request-id": [
- "3dde4dcc-7891-4e65-a55f-0e940eade707"
+ "89c36499-20d4-4fdc-9e28-6c0de2b9c0f8"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080846Z:3dde4dcc-7891-4e65-a55f-0e940eade707"
+ "SOUTHINDIA:20201228T123700Z:89c36499-20d4-4fdc-9e28-6c0de2b9c0f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2643,7 +2505,7 @@
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:46 GMT"
+ "Mon, 28 Dec 2020 12:37:00 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2652,10 +2514,10 @@
"-1"
],
"Content-Length": [
- "243"
+ "235"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert\",\r\n \"name\": \"adorenowcert\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -2665,7 +2527,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "73e3c2d0-bef1-4358-a79a-cc9a298c587c"
+ "10e92313-cd03-4107-9302-731417061153"
],
"Accept-Language": [
"en-US"
@@ -2685,16 +2547,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11995"
],
"x-ms-request-id": [
- "029344da-6b5b-4fe4-9071-6926592d64c1"
+ "afa38803-9520-4b3f-94c4-924dddf801a9"
],
"x-ms-correlation-request-id": [
- "029344da-6b5b-4fe4-9071-6926592d64c1"
+ "afa38803-9520-4b3f-94c4-924dddf801a9"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080851Z:029344da-6b5b-4fe4-9071-6926592d64c1"
+ "SOUTHINDIA:20201228T123740Z:afa38803-9520-4b3f-94c4-924dddf801a9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2703,7 +2565,7 @@
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:50 GMT"
+ "Mon, 28 Dec 2020 12:37:39 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -2719,13 +2581,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a8b61ace-d86e-4290-a0ef-d7cabc05d4f6"
+ "a1e0fb76-5969-456a-972d-190f70249b33"
],
"Accept-Language": [
"en-US"
@@ -2748,7 +2610,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3cbab2be-83d9-4452-9146-022460d08ad8"
+ "b946e41d-f512-4da1-a3c8-2a15e86a115f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -2763,16 +2625,16 @@
"14999"
],
"x-ms-correlation-request-id": [
- "33df3d13-be0e-420e-8219-849d5ca85efb"
+ "ae7d0b1a-bedc-4028-b3f8-abd1936aa228"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080850Z:33df3d13-be0e-420e-8219-849d5ca85efb"
+ "SOUTHINDIA:20201228T123704Z:ae7d0b1a-bedc-4028-b3f8-abd1936aa228"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:08:50 GMT"
+ "Mon, 28 Dec 2020 12:37:03 GMT"
],
"Expires": [
"-1"
diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
index 38cfb5821cdd..91387d2b9212 100644
--- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
+++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.CertificatesTests/TestRemoveAzWebAppCertificate.json
@@ -7,7 +7,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3d156fc1-57a2-4f65-9e4a-74644a4de094"
+ "8d105c31-5e8e-4501-b601-b265a228d767"
],
"Accept-Language": [
"en-US"
@@ -27,13 +27,13 @@
"no-cache"
],
"ETag": [
- "\"1D6BEA1474B3C15\""
+ "\"1D6DD13AC756460\""
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "7ddaf732-a08f-4a9e-9259-140e2736fb04"
+ "e6b1a6a1-aa88-4d7e-851a-a6f02f4de615"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -45,22 +45,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11992"
],
"x-ms-correlation-request-id": [
- "87de876a-d36d-4d4c-bf62-580f3ad505f3"
+ "70158975-1de0-4adf-b83e-4399fd13b216"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080717Z:87de876a-d36d-4d4c-bf62-580f3ad505f3"
+ "SOUTHINDIA:20201228T123052Z:70158975-1de0-4adf-b83e-4399fd13b216"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:17 GMT"
+ "Mon, 28 Dec 2020 12:30:51 GMT"
],
"Content-Length": [
- "5537"
+ "5532"
],
"Content-Type": [
"application/json"
@@ -69,7 +69,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-11-19T18:24:54.9133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.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\": \"lketmtestantps10.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\": \"www.adorenow.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\": \"lketmtestantps10.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/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2020-12-28T12:19:22.15\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": null,\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\": null,\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 \"azureStorageAccounts\": 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\": null,\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 \"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 \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": null,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\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\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\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-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.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 }\r\n}",
"StatusCode": 200
},
{
@@ -79,7 +79,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "00886075-49bc-4a24-8a1b-5f07e1a335ca"
+ "b707eb1b-8052-48e0-8a92-f26c4a0f7a5f"
],
"Accept-Language": [
"en-US"
@@ -102,7 +102,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e6edd35d-92b1-4f2b-8c26-6e3b3cd4a57e"
+ "44db0e9f-c9ef-4107-87f4-51352473e3d1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -114,19 +114,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11991"
],
"x-ms-correlation-request-id": [
- "5dfd41ff-0912-4e3a-9d6b-7f6784b15397"
+ "e6fca37a-bdcb-4944-877f-3fa4cf5486d0"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080718Z:5dfd41ff-0912-4e3a-9d6b-7f6784b15397"
+ "SOUTHINDIA:20201228T123053Z:e6fca37a-bdcb-4944-877f-3fa4cf5486d0"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:17 GMT"
+ "Mon, 28 Dec 2020 12:30:52 GMT"
],
"Content-Length": [
"4103"
@@ -148,7 +148,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6ffd5e44-7dfc-456a-919d-6fd842f70495"
+ "2cac7803-fad5-473e-866a-f3094034db1d"
],
"Accept-Language": [
"en-US"
@@ -171,7 +171,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fde7774b-ba08-40b6-9e6a-7298213a836f"
+ "a7efc3d1-d40b-4b3e-8746-e53633affec6"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -183,19 +183,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11999"
+ "11996"
],
"x-ms-correlation-request-id": [
- "55ba9161-fce7-4ba2-a87e-f852e28bd69c"
+ "558dcd5c-cd15-4b84-82ec-7825f618434a"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080719Z:55ba9161-fce7-4ba2-a87e-f852e28bd69c"
+ "SOUTHINDIA:20201228T123053Z:558dcd5c-cd15-4b84-82ec-7825f618434a"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:18 GMT"
+ "Mon, 28 Dec 2020 12:30:52 GMT"
],
"Content-Length": [
"740"
@@ -217,7 +217,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b145836-9dbe-4577-82ef-e64854087f0f"
+ "a47ebfb8-f46d-4650-a6ae-4e6fd5508b61"
],
"Accept-Language": [
"en-US"
@@ -240,7 +240,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e46c08bf-dd9f-432e-a834-e28091b928d7"
+ "c4011e69-645d-4fff-a35d-54a1a771de04"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -252,19 +252,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11998"
+ "11995"
],
"x-ms-correlation-request-id": [
- "a8e122a1-97e1-4c15-b63e-ae162d676a00"
+ "9bef6631-3a32-4815-9954-7b7b0aa82326"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080720Z:a8e122a1-97e1-4c15-b63e-ae162d676a00"
+ "SOUTHINDIA:20201228T123054Z:9bef6631-3a32-4815-9954-7b7b0aa82326"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:19 GMT"
+ "Mon, 28 Dec 2020 12:30:53 GMT"
],
"Content-Length": [
"290"
@@ -286,7 +286,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e80f115e-027f-4ee4-8d72-df9171d5d883"
+ "0e1def26-4a8d-4368-82fa-6017970c2996"
],
"Accept-Language": [
"en-US"
@@ -309,7 +309,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6913042c-e487-4a63-baf2-440d8e061b26"
+ "ac1970a9-5cf6-43c0-a0b5-e2d85395fba4"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -321,19 +321,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
- "11997"
+ "11994"
],
"x-ms-correlation-request-id": [
- "d5d20d6f-0b0d-47a3-9519-ae0e82ad2722"
+ "4663ef8a-00b2-49bc-94c8-cf660f08873d"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080720Z:d5d20d6f-0b0d-47a3-9519-ae0e82ad2722"
+ "SOUTHINDIA:20201228T123054Z:4663ef8a-00b2-49bc-94c8-cf660f08873d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:19 GMT"
+ "Mon, 28 Dec 2020 12:30:53 GMT"
],
"Content-Length": [
"287"
@@ -349,13 +349,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"password\": \"\",\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"canonicalName\": \"www.adorenow.net\"\r\n },\r\n \"location\": \"Central US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2b1cce01-74b9-4300-a134-a644c9811d57"
+ "dd574a3a-49b3-4520-970b-2d7ef7688468"
],
"Accept-Language": [
"en-US"
@@ -380,12 +380,15 @@
"Pragma": [
"no-cache"
],
+ "Location": [
+ "https://management.azure.com/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert/operationresults/8a648064-f5ec-48b2-8b2a-387895bff0da?api-version=2020-06-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-request-id": [
- "d5ba2ae2-916e-407d-9e37-d5fcc13ec8af"
- ],
"Server": [
"Microsoft-IIS/10.0"
],
@@ -396,101 +399,41 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-correlation-request-id": [
- "557662a6-ee57-43ae-8713-66ab925b1c02"
- ],
- "x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080722Z:557662a6-ee57-43ae-8713-66ab925b1c02"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Mon, 23 Nov 2020 08:07:21 GMT"
- ],
- "Content-Length": [
- "905"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FA3D541AF1E13AC71C7A7BB74381486651E6EDC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "2bd19a9d-c4b3-40ca-bb09-e8f5a3f2c239"
- ],
- "Accept-Language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.29017.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "1198"
],
"x-ms-request-id": [
- "632caa97-8e77-43f9-b37b-431aeed69c74"
+ "b01385f2-0acc-481e-9cea-ad10e3cd11d1"
],
"x-ms-correlation-request-id": [
- "632caa97-8e77-43f9-b37b-431aeed69c74"
+ "b01385f2-0acc-481e-9cea-ad10e3cd11d1"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080722Z:632caa97-8e77-43f9-b37b-431aeed69c74"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "SOUTHINDIA:20201228T123112Z:b01385f2-0acc-481e-9cea-ad10e3cd11d1"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:22 GMT"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
+ "Mon, 28 Dec 2020 12:31:12 GMT"
],
"Expires": [
"-1"
],
"Content-Length": [
- "243"
+ "0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}",
- "StatusCode": 200
+ "ResponseBody": "",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93Y2VydD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a040e10c-78f8-406e-bf88-49c7bf07233f"
+ "5f4f966a-460c-4c31-b058-ddc1f2345906"
],
"Accept-Language": [
"en-US"
@@ -513,7 +456,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2076984-1f9b-4658-9088-b8a3f4db7a57"
+ "1de78b8d-5556-4655-8593-403c63c1a070"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -525,22 +468,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11990"
],
"x-ms-correlation-request-id": [
- "c8a1563f-e90f-4639-8e8b-545812247a23"
+ "15e174f8-988a-41b9-857f-f3ef1524eb0e"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080723Z:c8a1563f-e90f-4639-8e8b-545812247a23"
+ "SOUTHINDIA:20201228T123140Z:15e174f8-988a-41b9-857f-f3ef1524eb0e"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:22 GMT"
+ "Mon, 28 Dec 2020 12:31:40 GMT"
],
"Content-Length": [
- "905"
+ "897"
],
"Content-Type": [
"application/json"
@@ -549,17 +492,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net\",\r\n \"name\": \"www.adorenow.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-23T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-23T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"4FA3D541AF1E13AC71C7A7BB74381486651E6EDC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenowcert\",\r\n \"name\": \"adorenowcert\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.adorenow.net\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-12-28T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-06-28T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"0B6707B159317CD82DE26BD21405BD7C00C1CFCC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.adorenow.net\",\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/www.adorenow.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3d3dy5hZG9yZW5vdy5uZXQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "67b872bf-107d-4313-8435-c3fad31638bb"
+ "c15a5111-7a01-4538-827a-44235651a764"
],
"Accept-Language": [
"en-US"
@@ -568,7 +511,7 @@
"FxVersion/4.6.29017.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.19042.",
- "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.28"
]
},
"ResponseHeaders": {
@@ -578,44 +521,38 @@
"Pragma": [
"no-cache"
],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
],
"x-ms-request-id": [
- "9d5f0c0d-5dae-40cd-b66e-22fee76b5aa2"
- ],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
- "X-AspNet-Version": [
- "4.0.30319"
- ],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "b92ad0ea-8ced-4119-a75c-e94cd062af32"
],
"x-ms-correlation-request-id": [
- "af0bf815-cf71-4520-9cb9-7cf1fd8d862f"
+ "b92ad0ea-8ced-4119-a75c-e94cd062af32"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080731Z:af0bf815-cf71-4520-9cb9-7cf1fd8d862f"
+ "SOUTHINDIA:20201228T123141Z:b92ad0ea-8ced-4119-a75c-e94cd062af32"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:31 GMT"
+ "Mon, 28 Dec 2020 12:31:40 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
],
"Content-Length": [
- "0"
+ "12"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"StatusCode": 200
},
{
@@ -625,7 +562,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b9e12a2-37eb-489c-bd34-c41be145624e"
+ "4f52d627-d794-42d8-8866-90e0f42770d8"
],
"Accept-Language": [
"en-US"
@@ -645,16 +582,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11994"
],
"x-ms-request-id": [
- "128ebe10-86f7-4b30-825e-095f1ad6cf8c"
+ "61395770-ecdc-453d-9b7c-e95a498eb8bc"
],
"x-ms-correlation-request-id": [
- "128ebe10-86f7-4b30-825e-095f1ad6cf8c"
+ "61395770-ecdc-453d-9b7c-e95a498eb8bc"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080731Z:128ebe10-86f7-4b30-825e-095f1ad6cf8c"
+ "SOUTHINDIA:20201228T123141Z:61395770-ecdc-453d-9b7c-e95a498eb8bc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -663,7 +600,7 @@
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:31 GMT"
+ "Mon, 28 Dec 2020 12:31:40 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -672,10 +609,10 @@
"-1"
],
"Content-Length": [
- "1864"
+ "2117"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/www.teja-test.com\",\r\n \"name\": \"www.teja-test.com\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/adorenow-RG-W-CUS-CentralUSwebspace\",\r\n \"name\": \"adorenow-RG-W-CUS-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testkv1611/providers/Microsoft.Web/certificates/testcertname1611\",\r\n \"name\": \"testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"eastus\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
@@ -685,7 +622,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b68a654a-bad0-42df-b569-124293d21c3d"
+ "ed4a432b-08a0-4f0a-8686-dc2828c99fba"
],
"Accept-Language": [
"en-US"
@@ -708,7 +645,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "1cb7b475-8742-490d-98e6-c1d28e7448ee"
+ "39030d5b-3254-4e86-a020-76d5cedfa687"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -720,22 +657,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11989"
],
"x-ms-correlation-request-id": [
- "99c80820-d7d6-441d-83b6-24ec6c0eff92"
+ "216066e7-df96-4b46-878e-94bcae20d367"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080732Z:99c80820-d7d6-441d-83b6-24ec6c0eff92"
+ "SOUTHINDIA:20201228T123141Z:216066e7-df96-4b46-878e-94bcae20d367"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:32 GMT"
+ "Mon, 28 Dec 2020 12:31:41 GMT"
],
"Content-Length": [
- "935"
+ "1106"
],
"Content-Type": [
"application/json"
@@ -744,7 +681,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/.NETSDKRG/providers/Microsoft.Web/certificates/adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"name\": \"adoresnow-.NETSDKRG-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adoresnow.net,adoresnow.net\",\r\n \"hostNames\": [\r\n \"*.adoresnow.net\",\r\n \"adoresnow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-05-05T14:07:28+05:30\",\r\n \"expirationDate\": \"2021-05-05T14:07:28+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"CD2ED68DADECFE4821589622694F32014F492FFC\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testfsrg1704/providers/microsoft.keyvault/vaults/testkvthek\",\r\n \"keyVaultSecretName\": \"adoresnow312c5e2c-add9-4faf-bb5b-744a87aff40e\",\r\n \"keyVaultSecretStatus\": \"KeyVaultDoesNotExist\",\r\n \"webSpace\": \".NETSDKRG-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -754,7 +691,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "78c25e50-b623-4099-841a-ee72fedd0586"
+ "f87fcc96-9702-4a6f-acbe-1d03c33db1b0"
],
"Accept-Language": [
"en-US"
@@ -777,7 +714,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "98bf5a9d-4ce8-47e5-b28b-739765ce7c3d"
+ "4eda588a-25fe-4dad-8d86-25b524866f85"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -789,22 +726,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11988"
],
"x-ms-correlation-request-id": [
- "466f19af-e46e-4ef9-8c75-b395796c11e2"
+ "3395db9a-2c47-4b29-adcc-e782ca9a8338"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080732Z:466f19af-e46e-4ef9-8c75-b395796c11e2"
+ "SOUTHINDIA:20201228T123142Z:3395db9a-2c47-4b29-adcc-e782ca9a8338"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:32 GMT"
+ "Mon, 28 Dec 2020 12:31:41 GMT"
],
"Content-Length": [
- "861"
+ "1006"
],
"Content-Type": [
"application/json"
@@ -813,7 +750,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/cleanupservice/providers/Microsoft.Web/certificates/testkv2809-testcert2809\",\r\n \"name\": \"testkv2809-testcert2809\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomain2908.com\",\r\n \"hostNames\": [\r\n \"testdomain2908.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomain2908.com\",\r\n \"issueDate\": \"2020-09-28T12:41:05+05:30\",\r\n \"expirationDate\": \"2021-09-28T12:51:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"AEBBBBC2C208D0BF3A75DA71E3996CB104DC087C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/testresourcegrp2809/providers/microsoft.keyvault/vaults/testkv2809\",\r\n \"keyVaultSecretName\": \"testcert2809\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"cleanupservice-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -823,7 +760,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5c67cc21-49c5-4c3a-a238-7ffeb30c26b2"
+ "64ac9647-e3ee-42fc-93ef-87eb5f76cd1d"
],
"Accept-Language": [
"en-US"
@@ -846,7 +783,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "000bbd23-eddb-45be-b1dc-6c33c9a423bb"
+ "32383dd3-069c-4c41-ba9b-0ed47a0bad26"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -858,19 +795,19 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11987"
],
"x-ms-correlation-request-id": [
- "86407af1-73ff-49b7-9bae-de5c7fd256e0"
+ "b22f7ec2-87d4-4c20-8ce1-368d68bc9c21"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080733Z:86407af1-73ff-49b7-9bae-de5c7fd256e0"
+ "SOUTHINDIA:20201228T123142Z:b22f7ec2-87d4-4c20-8ce1-368d68bc9c21"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:33 GMT"
+ "Mon, 28 Dec 2020 12:31:42 GMT"
],
"Content-Length": [
"904"
@@ -886,13 +823,13 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net?api-version=2020-06-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy93d3cubWFuYWdlZGNlcnRzLm5ldD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/adorenow-RG-W-CUS-CentralUSwebspace?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL1JHLVctQ1VTL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9hZG9yZW5vdy1SRy1XLUNVUy1DZW50cmFsVVN3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a3066800-32ec-4a4f-a3ee-a884b1f25684"
+ "279421f1-572f-47b4-b379-1ea6c2845f5b"
],
"Accept-Language": [
"en-US"
@@ -915,7 +852,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6436d3c0-02c1-4de6-be8a-3642ceae870f"
+ "c27e37bc-6a49-4d4a-af1f-8465108afe5e"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -927,22 +864,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11986"
],
"x-ms-correlation-request-id": [
- "1fb1d3c1-b303-4154-998f-250616361d01"
+ "cfcba15c-c293-4dec-bdf0-6a00ff6fcc1d"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080733Z:1fb1d3c1-b303-4154-998f-250616361d01"
+ "SOUTHINDIA:20201228T123142Z:cfcba15c-c293-4dec-bdf0-6a00ff6fcc1d"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:33 GMT"
+ "Mon, 28 Dec 2020 12:31:42 GMT"
],
"Content-Length": [
- "907"
+ "1088"
],
"Content-Type": [
"application/json"
@@ -951,7 +888,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/www.managedcerts.net\",\r\n \"name\": \"www.managedcerts.net\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"www.managedcerts.net\",\r\n \"hostNames\": [\r\n \"www.managedcerts.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"GeoTrust TLS DV RSA Mixed SHA256 2020 CA-1\",\r\n \"issueDate\": \"2020-11-20T05:30:00+05:30\",\r\n \"expirationDate\": \"2021-05-20T05:29:59+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"ABEAC8C833D47F8C5EC76BA5F45D508CD7F0FFA3\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"canonicalName\": \"www.managedcerts.net\",\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/RG-W-CUS/providers/Microsoft.Web/certificates/adorenow-RG-W-CUS-CentralUSwebspace\",\r\n \"name\": \"adorenow-RG-W-CUS-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2020-09-29T12:46:02+05:30\",\r\n \"expirationDate\": \"2021-09-29T12:46:02+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"16659E73A97D079A389CD8FC8C78B9F2DDD1BABE\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -961,7 +898,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3365e259-890c-4c0d-9614-dbf9b721247e"
+ "af548b47-cbeb-4f4c-886b-e005c5dc2144"
],
"Accept-Language": [
"en-US"
@@ -984,7 +921,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5ce5b719-c475-4ed3-9e6d-1d7fe04f20ce"
+ "b3962165-b624-46d4-a122-d598e0482892"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -996,22 +933,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11985"
],
"x-ms-correlation-request-id": [
- "caeb4104-3fd0-4a7d-9ef1-5a3604423400"
+ "73f0a005-5de3-4c01-9889-3d7170b89375"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080735Z:caeb4104-3fd0-4a7d-9ef1-5a3604423400"
+ "SOUTHINDIA:20201228T123144Z:73f0a005-5de3-4c01-9889-3d7170b89375"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:34 GMT"
+ "Mon, 28 Dec 2020 12:31:43 GMT"
],
"Content-Length": [
- "1140"
+ "1100"
],
"Content-Type": [
"application/json"
@@ -1020,7 +957,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"ECC\",\r\n \"hostNames\": [\r\n \"ECC\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"ECC\",\r\n \"issueDate\": \"2020-11-18T11:25:30+05:30\",\r\n \"expirationDate\": \"2021-11-13T11:25:30+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"name\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4-testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"ECC\",\r\n \"hostNames\": [\r\n \"ECC\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"ECC\",\r\n \"issueDate\": \"2020-11-18T11:25:30+05:30\",\r\n \"expirationDate\": \"2021-11-13T11:25:30+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"B3F415A9B6E3EC79682BF6EC5C9AD06B1A5281B4\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1030,7 +967,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "af94a61f-491e-44a8-af46-8789901786a0"
+ "7eaed3fb-735c-46c1-a56d-295b3fc5417f"
],
"Accept-Language": [
"en-US"
@@ -1053,7 +990,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "e74921f0-193a-4200-9022-45a5afa80fd5"
+ "59da8cab-0afe-48cc-8d94-df8fd1ecbcc1"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1065,22 +1002,22 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
+ "11984"
],
"x-ms-correlation-request-id": [
- "517517eb-8846-461f-a277-a0ec161af3f0"
+ "30928c4b-7b22-45c4-9dc0-90733e732db7"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080735Z:517517eb-8846-461f-a277-a0ec161af3f0"
+ "SOUTHINDIA:20201228T123144Z:30928c4b-7b22-45c4-9dc0-90733e732db7"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:35 GMT"
+ "Mon, 28 Dec 2020 12:31:44 GMT"
],
"Content-Length": [
- "1102"
+ "1220"
],
"Content-Type": [
"application/json"
@@ -1089,7 +1026,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"OperationNotPermittedOnKeyVault\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testasptod109-testkvimz-testcert2810z\",\r\n \"name\": \"testasptod109-testkvimz-testcert2810z\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"faizeuapdm1.com\",\r\n \"hostNames\": [\r\n \"faizeuapdm1.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"faizeuapdm1.com\",\r\n \"issueDate\": \"2020-10-28T17:17:05+05:30\",\r\n \"expirationDate\": \"2021-10-28T17:27:05+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"526FC665D5F98AFDFC9E8F4433C760C11A192A69\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testrs13646/providers/microsoft.keyvault/vaults/testkvimz\",\r\n \"keyVaultSecretName\": \"testcert2810z\",\r\n \"keyVaultSecretStatus\": \"UnknownError\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
},
{
@@ -1099,7 +1036,7 @@
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dde7d407-a73c-4df2-9381-214fe094ceee"
+ "404e1405-c223-4706-a6fd-b8aca7042f50"
],
"Accept-Language": [
"en-US"
@@ -1122,7 +1059,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b6b85ac6-942d-4e65-9562-ddc0a701eb21"
+ "c35a0ec7-921a-43ac-9e7d-3c7598cb186f"
],
"Server": [
"Microsoft-IIS/10.0"
@@ -1134,22 +1071,91 @@
"ASP.NET"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "c848bd74-87e3-43f1-891b-04de13d21c6a"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201228T123145Z:c848bd74-87e3-43f1-891b-04de13d21c6a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 28 Dec 2020 12:31:44 GMT"
+ ],
+ "Content-Length": [
+ "1218"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testkv1611/providers/Microsoft.Web/certificates/testcertname1611?api-version=2020-06-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL3Rlc3RrdjE2MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL3Rlc3RjZXJ0bmFtZTE2MTE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa6e4060-946c-4976-b37b-cd91fc282fc6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29017.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "88b2cae8-0026-4f69-9881-d33b8b873a9a"
+ ],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
+ "X-AspNet-Version": [
+ "4.0.30319"
+ ],
+ "X-Powered-By": [
+ "ASP.NET"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
],
"x-ms-correlation-request-id": [
- "fa060db0-ad27-4a5e-851c-f0203860cda4"
+ "e9d3312f-df88-4f2c-b8d1-056ac53f0f69"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20201123T080735Z:fa060db0-ad27-4a5e-851c-f0203860cda4"
+ "SOUTHINDIA:20201228T123145Z:e9d3312f-df88-4f2c-b8d1-056ac53f0f69"
],
"X-Content-Type-Options": [
"nosniff"
],
"Date": [
- "Mon, 23 Nov 2020 08:07:35 GMT"
+ "Mon, 28 Dec 2020 12:31:45 GMT"
],
"Content-Length": [
- "1078"
+ "1186"
],
"Content-Type": [
"application/json"
@@ -1158,7 +1164,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testasptod109/providers/Microsoft.Web/certificates/testkv1611-testcertname1611\",\r\n \"name\": \"testkv1611-testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"testasptod109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/testkv1611/providers/Microsoft.Web/certificates/testcertname1611\",\r\n \"name\": \"testcertname1611\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"testdomaintr115.co.uk\",\r\n \"hostNames\": [\r\n \"testdomaintr115.co.uk\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"testdomaintr115.co.uk\",\r\n \"issueDate\": \"2020-11-16T05:45:10+05:30\",\r\n \"expirationDate\": \"2021-11-16T05:55:10+05:30\",\r\n \"password\": null,\r\n \"thumbprint\": \"057D487F414F2EE0C6A1F3A97F45958ECD2EB32C\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/ASE109/providers/Microsoft.Web/hostingEnvironments/ASEtest109\",\r\n \"name\": \"ASEtest109\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/testkv1611/providers/microsoft.keyvault/vaults/testkv1611\",\r\n \"keyVaultSecretName\": \"testcertname1611\",\r\n \"keyVaultSecretStatus\": \"Succeeded\",\r\n \"webSpace\": \"ASE109-ASEtest109appseEastUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null\r\n }\r\n}",
"StatusCode": 200
}
],
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
index 5467991c3479..6c9e728f7a70 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
@@ -19,10 +19,15 @@
using Microsoft.Azure.Commands.WebApps.Utilities;
using Microsoft.Azure.Management.WebSites.Models;
using Microsoft.Rest.Azure;
+using Microsoft.Rest.Serialization;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
using System;
+using System.Collections.Generic;
using System.Linq;
using System.Management.Automation;
using System.Net;
+using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
@@ -36,6 +41,8 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
[Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", SupportsShouldProcess = true), OutputType(typeof(PSCertificate))]
public class NewAzureWebAppCertificate : WebAppBaseClientCmdLet
{
+ // Poll status for a maximum of 6 minutes (360 seconds / 2 seconds per status check)
+ private const int NumStatusChecks = 72;
const string CertNamePostFixSeparator = "_";
const string ParameterSet1Name = "S1";
@@ -49,12 +56,16 @@ public class NewAzureWebAppCertificate : WebAppBaseClientCmdLet
[ValidateNotNullOrEmpty]
public string WebAppName { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = true, HelpMessage = "The name of the certificate")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = false, HelpMessage = "The name of the web app slot.")]
[ResourceNameCompleter("Microsoft.Web/sites/slots", "ResourceGroupName", "WebAppName")]
[ValidateNotNullOrEmpty]
public string Slot { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 4, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
[ValidateNotNullOrEmpty]
public string HostName { get; set; }
@@ -70,11 +81,12 @@ public override void ExecuteCmdlet()
{
if (!string.IsNullOrWhiteSpace(ResourceGroupName) && !string.IsNullOrWhiteSpace(WebAppName))
{
+ string certName = null;
HttpStatusCode statusCode = HttpStatusCode.OK;
var webApp = new PSSite(WebsitesClient.GetWebApp(ResourceGroupName, WebAppName, Slot));
var location = webApp.Location;
- Certificate createdCertdetails = null;
+ Certificate createdCertdetails = new Certificate();
var certificate = new Certificate(
webApp.Location,
@@ -86,7 +98,9 @@ public override void ExecuteCmdlet()
{
try
{
- createdCertdetails=WebsitesClient.CreateCertificate(ResourceGroupName, HostName, certificate);
+ //Default certName is HostName
+ certName = Name != null ? Name : HostName;
+ createdCertdetails = (PSCertificate)WebsitesClient.CreateCertificate(ResourceGroupName, certName, certificate);
}
catch (DefaultErrorResponseException e)
{
@@ -98,35 +112,35 @@ public override void ExecuteCmdlet()
{
throw;
}
- }
- //Try to get the certificate post the create call return 'Accepted' status
- var watch = new System.Diagnostics.Stopwatch();
- if (statusCode == HttpStatusCode.Accepted)
- {
- watch.Start();
- for (; watch.Elapsed.Minutes < 6;)
+ if (e.Response.StatusCode == HttpStatusCode.Accepted)
{
- try
+ var poll_url = e.Response.Headers["Location"].FirstOrDefault();
+ var token=WebsitesClient.GetAccessToken(DefaultContext);
+ HttpClient client = new HttpClient();
+ client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", token.AccessToken);
+
+ HttpResponseMessage r;
+ int numChecks = 0;
+ do
{
- createdCertdetails = WebsitesClient.GetCertificate(ResourceGroupName, HostName);
- break;
- }
- catch (DefaultErrorResponseException e)
+ Thread.Sleep(TimeSpan.FromSeconds(5));
+ r = client.GetAsync(poll_url).Result;
+ numChecks++;
+ } while (r.StatusCode == HttpStatusCode.Accepted && numChecks < NumStatusChecks);
+
+ if (r.StatusCode == HttpStatusCode.Accepted && numChecks >= NumStatusChecks)
{
- //if 'NotFound' lets retry for every 5 seconds to get the certificate
- if (e.Response.StatusCode == HttpStatusCode.NotFound)
- Thread.Sleep(5000);
- else
- throw;
+ var rec = new ErrorRecord(new Exception(string.Format($"The creation of the managed certificate '{this.HostName}' is taking longer than expected." +
+ $" Please re-try the operation '{CreateInputCommand()}'")),
+ string.Empty, ErrorCategory.OperationTimeout, null);
+ WriteError(rec);
}
- }
- watch.Stop();
- if (createdCertdetails == null)
- {
- throw new Exception(string.Format($"The creation of the managed certificate '{this.HostName}' is taking longer than expected." +
- $" Please re-try the operation '{CreateInputCommand()}'"));
+
+
}
}
+ createdCertdetails = WebsitesClient.GetCertificate(ResourceGroupName, certName);
+
//Add only when user is opted for Binding
if (AddBinding)
{
@@ -144,7 +158,6 @@ public override void ExecuteCmdlet()
}
}
-
private string CreateInputCommand()
{
StringBuilder command = new StringBuilder("New-AzWebAppCertificate ");
diff --git a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
index 7121eee6636f..54be64ec9a8a 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/RemoveAzureWebAppCertificate.cs
@@ -29,8 +29,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
[Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppCertificate", SupportsShouldProcess = true), OutputType(typeof(void))]
public class RemoveAzureWebAppCertificate : WebAppBaseClientCmdLet
{
- const string ParameterSet1Name = "S1";
- const string ParameterSet2Name = "S2";
+ const string ParameterSet1Name = "S1";
[Parameter(ParameterSetName = ParameterSet1Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
//[Parameter(ParameterSetName = ParameterSet2Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")]
diff --git a/src/Websites/Websites/Utilities/WebsitesClient.cs b/src/Websites/Websites/Utilities/WebsitesClient.cs
index 4187ef27c382..86490ca6ab85 100644
--- a/src/Websites/Websites/Utilities/WebsitesClient.cs
+++ b/src/Websites/Websites/Utilities/WebsitesClient.cs
@@ -1003,6 +1003,23 @@ public void SwapSlotWithPreviewResetSlotSwap(string resourceGroupName, string we
webSiteName,
sourceSlotName);
}
+ public IAccessToken GetAccessToken(IAzureContext context)
+ {
+ string tenant = null;
+
+ if (context.Subscription != null && context.Account != null)
+ {
+ tenant = context.Subscription.GetPropertyAsArray(AzureSubscription.Property.Tenants)
+ .Intersect(context.Account.GetPropertyAsArray(AzureAccount.Property.Tenants))
+ .FirstOrDefault();
+ }
+
+ if (tenant == null && context.Tenant != null && new Guid(context.Tenant.Id) != Guid.Empty)
+ {
+ tenant = context.Tenant.Id.ToString();
+ }
+ return AzureSession.Instance.AuthenticationFactory.Authenticate(context.Account, context.Environment, tenant, null, ShowDialog.Never, null, context.Environment.GetTokenAudience(AzureEnvironment.Endpoint.ResourceManager));
+ }
private void WriteVerbose(string verboseFormat, params object[] args)
{
diff --git a/src/Websites/Websites/help/New-AzWebAppCertificate.md b/src/Websites/Websites/help/New-AzWebAppCertificate.md
index 9130b27fafcf..9e8cbf29671a 100644
--- a/src/Websites/Websites/help/New-AzWebAppCertificate.md
+++ b/src/Websites/Websites/help/New-AzWebAppCertificate.md
@@ -13,8 +13,8 @@ Creates an App service managed certificate for an Azure Web App.
## SYNTAX
```
-New-AzWebAppCertificate [-ResourceGroupName] [-WebAppName] [[-Slot] ]
- [-HostName] [-AddCertBinding] [[-SslState] ] [-DefaultProfile ]
+New-AzWebAppCertificate [-ResourceGroupName] [-WebAppName] [-Name] [[-Slot] ]
+ [-HostName] [-AddBinding] [[-SslState] ] [-DefaultProfile ]
[]
```
@@ -24,28 +24,28 @@ The **New-AzWebAppCertificate** cmdlet creates an Azure App Service Managed Cert
### Example 1
```powershell
-PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net"
+PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name"ContosoCert" -HostName "www.ContosoSite.net"
```
This command create an App Service Managed Certificate for the given WebApp
### Example 2
```powershell
-PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -Slot "test" -AddCertBinding
+PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name"ContosoCert" -HostName "www.ContosoSite.net" -Slot "test" -AddCertBinding
```
This command create an App Service Managed Certificate and binds to the given WebApp Slot.
### Example 3
```powershell
-PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -HostName "www.ContosoSite.net" -AddCertBinding
+PS C:\> New-AzWebAppCertificate -ResourceGroupName Default-Web-WestUS -WebAppName "ContosoSite" -Name"ContosoCert" -HostName "www.ContosoSite.net" -AddBinding
```
This command create an App Service Managed Certificate and binds to the given WebApp.
## PARAMETERS
-### -AddCertBinding
+### -AddBinding
To add the created certificate to WebApp/slot.
```yaml
@@ -54,7 +54,7 @@ Parameter Sets: (All)
Aliases:
Required: False
-Position: 4
+Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
@@ -84,7 +84,22 @@ Parameter Sets: (All)
Aliases:
Required: True
-Position: 3
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+The name of the certificate.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
@@ -114,7 +129,7 @@ Parameter Sets: (All)
Aliases:
Required: False
-Position: 2
+Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
@@ -132,7 +147,7 @@ Aliases:
Accepted values: Disabled, SniEnabled, IpBasedEnabled
Required: False
-Position: 5
+Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
From 5ab09d2e8e7d242622db9c7566db94ea222f0687 Mon Sep 17 00:00:00 2001
From: Kota Sudhakar Reddy
<60102891+Kotasudhakarreddy@users.noreply.github.com>
Date: Mon, 28 Dec 2020 22:07:43 +0530
Subject: [PATCH 12/13] Updated ParametreSet positions
---
.../Certificates/NewAzureWebAppCertificate.cs | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
index 6c9e728f7a70..6e338b558abd 100644
--- a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
+++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppCertificate.cs
@@ -18,19 +18,13 @@
using Microsoft.Azure.Commands.WebApps.Models.WebApp;
using Microsoft.Azure.Commands.WebApps.Utilities;
using Microsoft.Azure.Management.WebSites.Models;
-using Microsoft.Rest.Azure;
-using Microsoft.Rest.Serialization;
-using Newtonsoft.Json;
-using Newtonsoft.Json.Linq;
using System;
-using System.Collections.Generic;
using System.Linq;
using System.Management.Automation;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading;
-using System.Threading.Tasks;
namespace Microsoft.Azure.Commands.WebApps.Cmdlets.Certificates
{
@@ -56,16 +50,16 @@ public class NewAzureWebAppCertificate : WebAppBaseClientCmdLet
[ValidateNotNullOrEmpty]
public string WebAppName { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = true, HelpMessage = "The name of the certificate")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "The name of the certificate")]
[ValidateNotNullOrEmpty]
public string Name { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = false, HelpMessage = "The name of the web app slot.")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")]
[ResourceNameCompleter("Microsoft.Web/sites/slots", "ResourceGroupName", "WebAppName")]
[ValidateNotNullOrEmpty]
public string Slot { get; set; }
- [Parameter(ParameterSetName = ParameterSet1Name, Position = 4, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
+ [Parameter(ParameterSetName = ParameterSet1Name, Position = 3, Mandatory = true, HelpMessage = "Custom hostnames associated with web app/slot.")]
[ValidateNotNullOrEmpty]
public string HostName { get; set; }
From b6f9e217a574b6d532ca9f10f24dbe9361dfa5b0 Mon Sep 17 00:00:00 2001
From: Yeming Liu
Date: Wed, 6 Jan 2021 13:13:48 +0800
Subject: [PATCH 13/13] Update src/Websites/Websites/ChangeLog.md
---
src/Websites/Websites/ChangeLog.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md
index b0f4e9ed0dbd..6d69398afd1f 100644
--- a/src/Websites/Websites/ChangeLog.md
+++ b/src/Websites/Websites/ChangeLog.md
@@ -19,9 +19,9 @@
-->
## Upcoming Release
* Added support for App Service Managed certificates
- -New Cmdlets
- -New-AzWebAppCertificate
- -Remove-AzWebAppCertificate
+ - New Cmdlets
+ - New-AzWebAppCertificate
+ - Remove-AzWebAppCertificate
## Version 2.1.1
* Prevent duplicate access restriction rules