diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj index a59fd6c10277..c223fbce2ed6 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -63,8 +63,8 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll True - - ..\..\..\packages\Microsoft.Azure.Management.Websites.1.0.0-preview\lib\net45\Microsoft.Azure.Management.Websites.dll + + ..\..\..\packages\Microsoft.Azure.Management.Websites.1.0.2-preview\lib\net45\Microsoft.Azure.Management.Websites.dll True @@ -141,6 +141,7 @@ + @@ -158,6 +159,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -179,6 +183,21 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.cs b/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.cs new file mode 100644 index 000000000000..537f5d75145d --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.ScenarioTest; +using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using Xunit; + +namespace Microsoft.Azure.Commands.Websites.Test.ScenarioTests +{ + public class SSLBindingTests : RMTestBase + { + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestCreateNewWebAppSSLBinding() + { + WebsitesController.NewInstance.RunPsTest("Test-CreateNewWebAppSSLBinding"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetNewWebAppSSLBinding() + { + WebsitesController.NewInstance.RunPsTest("Test-GetNewWebAppSSLBinding"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestRemoveNewWebAppSSLBinding() + { + WebsitesController.NewInstance.RunPsTest("Test-RemoveNewWebAppSSLBinding"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestWebAppSSLBindingPipeSupport() + { + WebsitesController.NewInstance.RunPsTest("Test-WebAppSSLBindingPipeSupport"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestGetWebAppCertificate() + { + WebsitesController.NewInstance.RunPsTest("Test-GetWebAppCertificate"); + } + } +} \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.ps1 b/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.ps1 new file mode 100644 index 000000000000..de032afcb6b3 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.ps1 @@ -0,0 +1,189 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# If you want to run these tests live then create a Basic/Standard/Premium web app, +assign a custom domain to it and update global variable values. +#> + +#Global variables +$rgname = "webappsslbindingrb" +$appname = "webappsslbindingtest" +$slot = "testslot" +$prodHostname = "www.webappsslbindingtests.com" +$slotHostname = "testslot.webappsslbindingtests.com" +$thumbprint = "40D6600B0B8740C41BA4B3D13B967DDEF6ED1918" + +<# +.SYNOPSIS +Tests creating a new Web App SSL binding. +#> +function Test-CreateNewWebAppSSLBinding +{ + try + { + # Test - Create Ssl binding for web app + $createResult = New-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Thumbprint $thumbprint + Assert-AreEqual $prodHostname $createResult.Name + + # Test - Create Ssl binding for web app slot + $createResult = New-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname -Thumbprint $thumbprint + Assert-AreEqual $slotHostname $createResult.Name + } + finally + { + # Cleanup + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Force + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname -Force + } +} + +<# +.SYNOPSIS +Tests retrieving Web App SSL binding. +#> +function Test-GetNewWebAppSSLBinding +{ + try + { + # Setup - Create Ssl bindings + $createWebAppResult = New-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Thumbprint $thumbprint + $createWebAppSlotResult = New-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname -Thumbprint $thumbprint + + # Test - Get commands for web app + $getResult = Get-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname + Assert-AreEqual 2 $getResult.Count + $currentHostNames = $getResult | Select -expand Name + Assert-True { $currentHostNames -contains $createWebAppResult.Name } + $getResult = Get-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname + Assert-AreEqual $getResult.Name $createWebAppResult.Name + + # Test - Get commands for web app slot + $getResult = Get-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot + Assert-AreEqual 1 $getResult.Count + $currentHostNames = $getResult | Select -expand Name + Assert-True { $currentHostNames -contains $createWebAppSlotResult.Name } + $getResult = Get-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname + Assert-AreEqual $getResult.Name $createWebAppSlotResult.Name + } + finally + { + # Cleanup + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Force + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname -Force + } +} + +<# +.SYNOPSIS +Tests removing Web App SSL binding. +#> +function Test-RemoveNewWebAppSSLBinding +{ + try + { + # Setup - Create Ssl bindings + New-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Thumbprint $thumbprint + New-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname -Thumbprint $thumbprint + + # Tests - Removing binding from web app and web app slot + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Force + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname -Force + + # Assert + $res = Get-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname + $currentHostNames = $res | Select -expand Name + Assert-False { $currentHostNames -contains $prodHostname } + + $res = Get-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot + $currentHostNames = $res | Select -expand Name + Assert-False { $currentHostNames -contains $slotHostName } + } + finally + { + # Cleanup + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Force + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostname -Force + } +} + +<# +.SYNOPSIS +Tests executing Ssl binding cmdlets using pipe +#> +function Test-WebAppSSLBindingPipeSupport +{ + try + { + # Setup - Retrieve web app and web app slot objects + $webapp = Get-AzureRMWebApp -ResourceGroupName $rgname -Name $appname + $webappslot = Get-AzureRMWebAppSlot -ResourceGroupName $rgname -Name $appname -Slot $slot + + # Test - Create Ssl bindings using web app and web app slot objects + $createResult = $webapp | New-AzureRMWebAppSSLBinding -Name $prodHostName -Thumbprint $thumbprint + Assert-AreEqual $prodHostName $createResult.Name + + $createResult = $webappslot | New-AzureRMWebAppSSLBinding -Name $slotHostName -Thumbprint $thumbprint + Assert-AreEqual $slotHostName $createResult.Name + + # Test - Retrieve Ssl bindings using web app and web app slot objects + $getResult = $webapp | Get-AzureRMWebAppSSLBinding + Assert-AreEqual 2 $getResult.Count + + $getResult = $webappslot | Get-AzureRMWebAppSSLBinding + Assert-AreEqual 1 $getResult.Count + + # Test - Delete Ssl bindings using web app and web app slot objects + $webapp | Remove-AzureRMWebAppSSLBinding -Name $prodHostName -Force + $res = $webapp | Get-AzureRMWebAppSSLBinding + $currentHostNames = $res | Select -expand Name + Assert-False { $currentHostNames -contains $prodHostName } + + $webappslot | Remove-AzureRMWebAppSSLBinding -Name $slotHostName -Force + $res = $webappslot | Get-AzureRMWebAppSSLBinding + $currentHostNames = $res | Select -expand Name + Assert-False { $currentHostNames -contains $slotHostName } + } + finally + { + # Cleanup + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostName -Force + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Slot $slot -Name $slotHostName -Force + } +} + +<# +.SYNOPSIS +Tests retrieving web app certificates +#> +function Test-GetWebAppCertificate +{ + try + { + # Setup - Create Ssl bindings + New-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostname -Thumbprint $thumbprint + + # Tests - Retrieve web app certificate objects + $certificates = Get-AzureRMWebAppCertificate + $thumbprints = $certificates | Select -expand Thumbprint + Assert-True { $thumbprints -contains $thumbprint } + + $certificate = Get-AzureRMWebAppCertificate -Thumbprint $thumbprint + Assert-AreEqual $thumbprint $certificate.Thumbprint + } + finally + { + # Cleanup + Remove-AzureRMWebAppSSLBinding -ResourceGroupName $rgname -WebAppName $appname -Name $prodHostName -Force + } +} \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json new file mode 100644 index 000000000000..ac8a197b3d64 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json @@ -0,0 +1,2720 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b950e2b-a07f-4328-bece-84e847054646" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\": \"Resource\"\r\n },\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\": \"Resource\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3724" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "774d332b-269a-464f-8695-bcab566d5de7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "e892d0c0-2c0c-464d-8ce6-e7d66a03a410" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060757Z:e892d0c0-2c0c-464d-8ce6-e7d66a03a410" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:07:56 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b308acd3-1550-45de-b018-07be0038dc28" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3a827651-8b96-4374-ad9a-64e1d115d2f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "c6f3a762-e59d-483b-983b-4c32de544c8f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060808Z:c6f3a762-e59d-483b-983b-4c32de544c8f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:08 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2bd37a2d-5c48-4b58-97fc-bec0dae492cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\": \"Resource\"\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\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2373" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15c9cb52-2b61-4505-aedd-4eda8d5ef2c8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "6bcd1be1-9e05-4c10-a09b-4eb2c911e160" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060757Z:6bcd1be1-9e05-4c10-a09b-4eb2c911e160" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:07:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64f2730c-ac83-4e58-9d46-1a836e23d9b6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d5844eb4-9b83-4e36-afad-d314ddc04e5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "3a117cfb-5bdd-4682-8580-b395672882c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060808Z:3a117cfb-5bdd-4682-8580-b395672882c6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa299475-7539-4278-ac01-cedbffdf8f72" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\": \"Resource\"\r\n },\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "469" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fed27eec-b8b6-44eb-ae06-b0ee398d628a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "6e0bd85f-b053-4fc6-ae42-9462f818b822" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060757Z:6e0bd85f-b053-4fc6-ae42-9462f818b822" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:07:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18a1c719-230e-49af-abb1-6368fb24cbf2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "760eae32-9add-41d5-92fc-ec04f8c6f0fa" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "453770a0-66d9-4005-927b-b13bf0de8465" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060808Z:453770a0-66d9-4005-927b-b13bf0de8465" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d730576-4810-40ed-8c65-39f0332b7e34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"hidden-related:/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\": \"Resource\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "443" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "246ea7de-e391-4aa7-be44-9d74d7235cf0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "fc0c483d-e105-47aa-b760-70e779caa7cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060757Z:fc0c483d-e105-47aa-b760-70e779caa7cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:07:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41bb81a5-f0c5-4f30-8571-dcbd7501c04b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dda37dce-d68c-405e-b34d-6a05ff393356" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "660ac801-0cab-4e77-88d0-18eb325a759c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060808Z:660ac801-0cab-4e77-88d0-18eb325a759c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "285" + ], + "x-ms-client-request-id": [ + "978ef6a8-720a-4333-95f0-354ff1f285fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c015c907-d829-4f80-8abd-947ccbd6cf5f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7e995f6f-9fb3-4322-ad8e-fb151afae097" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060802Z:7e995f6f-9fb3-4322-ad8e-fb151afae097" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:01 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "8e90dfe6-288d-43a9-80a3-4c899f575b27" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7dec6357-ccfb-4f9f-a76d-712f22daa0c4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "244b98ed-f703-4e7f-9a74-430bbb3e5db4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060811Z:244b98ed-f703-4e7f-9a74-430bbb3e5db4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:11 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbd40540-3c95-403b-9a23-4235d7dc1799" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5aaaa1a0-cf1b-4273-a9b9-a755ed4f403f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "6e059294-6a73-4e99-ac34-8421f59c97ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060803Z:6e059294-6a73-4e99-ac34-8421f59c97ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:03 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e5645a2-d9d7-42b6-b2f3-f093d8b92816" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3a71cde8-d11d-4f0b-ba86-fb9147537a3e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "6c86815f-9b01-4144-b6c3-02a2b737d735" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060816Z:6c86815f-9b01-4144-b6c3-02a2b737d735" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:16 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2cb6d35-e0ec-48c6-8c33-d39bbd82ce26" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee424cf4-05f2-454c-83a1-35df10ea9ece" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "8103e6f2-9906-4c21-b1fe-aa6530637d16" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060804Z:8103e6f2-9906-4c21-b1fe-aa6530637d16" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:03 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebf95ed0-5dbc-4064-9b05-fbf50f8dcba5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "37ce936a-0aed-4be9-8ace-2d81ce06aad2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "dccac51f-8f70-40bf-8d04-c51c24837f55" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060816Z:dccac51f-8f70-40bf-8d04-c51c24837f55" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90fc98b4-a524-4369-8322-59207da1edb6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a98ac731-2ea6-49cb-9b87-8f0ebe92f150" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0153d165-4d1b-484c-b418-08f3a7e9da0c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060804Z:0153d165-4d1b-484c-b418-08f3a7e9da0c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:04 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c4e2a20-bc90-4eaf-b9a0-9af1f0a5b9f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8975720e-44b0-40d0-908e-dc8c11c656ba" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "1abf8ad2-b701-4ad7-bc4e-c58cb89a8a28" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060816Z:1abf8ad2-b701-4ad7-bc4e-c58cb89a8a28" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22e9cf1e-b55c-4bb1-80c2-2ad8b218ea6d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e6293c25-4153-4b07-957f-d1b45a9de720" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "420fc848-fe11-4bc4-91ba-18d749bcbb48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060804Z:420fc848-fe11-4bc4-91ba-18d749bcbb48" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:04 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db060408-0427-48b6-b8d4-e3faf725464f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00cf3f3f-c94e-46a8-a66e-5c7bc66eb8b4" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "2d0d3bc5-a938-4537-aa7e-7545f07a1c4b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060817Z:2d0d3bc5-a938-4537-aa7e-7545f07a1c4b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "x-ms-client-request-id": [ + "e8cdc0ee-47d3-4229-a242-0a44111b85bd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6896737-1bf4-46b4-8cf5-f4db04122ac9" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "088a25e0-16c1-4cdf-b471-c2ce777fab98" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060808Z:088a25e0-16c1-4cdf-b471-c2ce777fab98" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:07 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "221" + ], + "x-ms-client-request-id": [ + "8297d353-614e-41b8-9ca9-89abfdd88897" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1087ed3b-ad80-4395-942b-58384d8f5514" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "7acb9e59-7708-4198-9a4a-3add0ac822bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060819Z:7acb9e59-7708-4198-9a4a-3add0ac822bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:19 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-request-id": [ + "b05d3ef5-d1cf-4648-8c0f-7094c853efd1" + ], + "x-ms-correlation-request-id": [ + "b05d3ef5-d1cf-4648-8c0f-7094c853efd1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060811Z:b05d3ef5-d1cf-4648-8c0f-7094c853efd1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "x-ms-request-id": [ + "20a541ca-d3a8-481a-9085-2dbd75487f5b" + ], + "x-ms-correlation-request-id": [ + "20a541ca-d3a8-481a-9085-2dbd75487f5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060819Z:20a541ca-d3a8-481a-9085-2dbd75487f5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:19 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "00908562-10d9-41aa-abb8-5cdc7057097f" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "7e771610-38fd-4167-b45b-3b4d5fa85c95" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060812Z:7e771610-38fd-4167-b45b-3b4d5fa85c95" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a22e5792-ef50-4d1d-a656-404978068724" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "127059dc-143e-4092-b6e4-e538302d1ec3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:127059dc-143e-4092-b6e4-e538302d1ec3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:19 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bdd8f92b-ca7e-4d42-94e3-0394ba9cc20d" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "675f0b6b-0fa0-4783-b801-e6245aa60e7b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060812Z:675f0b6b-0fa0-4783-b801-e6245aa60e7b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "787e352c-97cd-4e1d-8576-4b664a36c13c" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "77c557c2-09ec-4d35-a1c8-5ec4de3961ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:77c557c2-09ec-4d35-a1c8-5ec4de3961ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:19 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "beeaf8e1-b734-47db-a651-61a2aa13b8b0" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "3789f291-eac4-4448-a147-96acd5b77e68" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060812Z:3789f291-eac4-4448-a147-96acd5b77e68" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "80bd8541-cd9a-454c-ba13-7aaabeefc1f8" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "3469e1d6-9595-466b-8436-5e5099f5b7e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:3469e1d6-9595-466b-8436-5e5099f5b7e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:19 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "787a2dca-1422-4aed-8b9b-6c998b8625b3" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "a466d92f-75e0-42da-abd8-fcd0dbe753cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060812Z:a466d92f-75e0-42da-abd8-fcd0dbe753cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a9f1039b-a710-4b72-871a-418ffa0a3605" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "5d2ef2e4-0568-4a5a-928c-d80df1ed897c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:5d2ef2e4-0568-4a5a-928c-d80df1ed897c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:19 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a65a9553-6d35-4769-9129-7af83f8de59e" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "7dc3a271-7f4d-4ac9-be1a-be34ee2ea815" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060812Z:7dc3a271-7f4d-4ac9-be1a-be34ee2ea815" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c6e422c0-e51f-4742-a8e3-a2e3f5904ba2" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "426c6123-891c-4418-80bb-8f9291f687b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:426c6123-891c-4418-80bb-8f9291f687b2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "de574556-8d51-460d-bf1b-d3ccf289990e" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "6d216a62-db4b-449e-abce-227bade0e2a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060812Z:6d216a62-db4b-449e-abce-227bade0e2a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:12 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c63e0a2e-90e6-46a7-8efb-6d7c25b2cc12" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "08f3d4f6-d776-442e-835e-9eb34c71f2ce" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:08f3d4f6-d776-442e-835e-9eb34c71f2ce" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94826c74-b381-4c91-9ac4-87e233badb07" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b961b26e-274f-45f6-94a5-d866887dd5df" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "e0cf772a-dcdc-4543-8939-7589696992db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060813Z:e0cf772a-dcdc-4543-8939-7589696992db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:13 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "169aac86-9188-41a2-ac6b-53218809b9c7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c64a3158-c97e-4b8b-941d-5c0f33b5bcbc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "80c42b24-553c-4bfb-92f0-106f8d8e7f24" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:80c42b24-553c-4bfb-92f0-106f8d8e7f24" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2dd3552b-5fa4-4554-8c64-08540d9eab1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "41b3b88e-22d0-4b29-a081-917e638ed653" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "71380537-b88c-4a16-91bd-7c627173385f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060813Z:71380537-b88c-4a16-91bd-7c627173385f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:13 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a99ecea-db52-4803-8f95-0129a57fa973" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a093cc12-b879-40a7-ab75-01d4705acb07" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "295276d8-cc89-44ca-93a4-de31d73f126b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060820Z:295276d8-cc89-44ca-93a4-de31d73f126b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea2a87f8-f448-41d3-a0b3-e86afe98156d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "afa9cfb7-a544-4520-9d2c-023cf2834317" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "0b4f243a-a5c1-44be-9164-57a613d55f65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060815Z:0b4f243a-a5c1-44be-9164-57a613d55f65" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9aae6dda-de03-4204-ac60-3aefc8e7eb06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "135e3330-32f0-40a9-9d27-8ab0864e8c78" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "06020ff5-1ec7-4d38-ad2d-1ec66d5bb676" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060821Z:06020ff5-1ec7-4d38-ad2d-1ec66d5bb676" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2ac7097-11dd-4b7c-bebf-aae9c7e2261d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "9bc772d4-9d1e-47af-9f85-16d288b84f70" + ], + "x-ms-correlation-request-id": [ + "9bc772d4-9d1e-47af-9f85-16d288b84f70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060816Z:9bc772d4-9d1e-47af-9f85-16d288b84f70" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f1b8b1e-654a-4dec-889e-b55b2ff8ad24" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "091bd469-b6f9-41ca-899d-12e1a13cae20" + ], + "x-ms-correlation-request-id": [ + "091bd469-b6f9-41ca-899d-12e1a13cae20" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060821Z:091bd469-b6f9-41ca-899d-12e1a13cae20" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:08:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "ef90e930-9d7f-4a60-8a99-748e0eea69de" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json new file mode 100644 index 000000000000..81b5b00dead5 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json @@ -0,0 +1,3788 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d93da1e7-155d-4fe2-a5f7-0a84027d5551" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a73f47a-a146-440a-b748-07ed6126f06e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "5030c077-5cc4-4f3e-b9a5-d551bee2a7b7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061312Z:5030c077-5cc4-4f3e-b9a5-d551bee2a7b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:12 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c9ff67e-f0ed-4410-b2f7-3e300249a4cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee3f6179-3532-43fb-8856-bfaec5669a3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "4c3c06f9-38f1-4331-bdd8-446c59530c32" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061320Z:4c3c06f9-38f1-4331-bdd8-446c59530c32" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:19 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "297d0842-406c-4fc9-b963-e90c44f2a052" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2647d5a6-7563-446c-bf3a-8a082b2e6d3a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" + ], + "x-ms-correlation-request-id": [ + "d2ac7e39-3f15-463f-a14e-869763a18914" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061321Z:d2ac7e39-3f15-463f-a14e-869763a18914" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:20 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09b5f326-b7b6-4b80-a85a-a9f05d2b0038" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8175853-593f-45dd-a022-9665993d8b90" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14909" + ], + "x-ms-correlation-request-id": [ + "7acf6617-d96c-419d-b02c-69f713d264dd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061324Z:7acf6617-d96c-419d-b02c-69f713d264dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:24 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b37a7862-fca7-4eee-a3bc-6aa8c6f72035" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39ded11f-451a-4f40-a5e6-f298aa4ddd24" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "a20287c1-8da8-439a-b982-cd5d71af4ba2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061312Z:a20287c1-8da8-439a-b982-cd5d71af4ba2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:12 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1745b7f8-edfc-4a41-8dc2-44f29be0699b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9bb6f581-a9a3-4fa1-8f34-c1d854d6508f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "6f1a547e-498a-4b97-bbb5-729a869a5b14" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061320Z:6f1a547e-498a-4b97-bbb5-729a869a5b14" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:19 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bff1d596-38e7-4b81-a8f1-46b74fb1e6a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a8d9f9a0-11c6-43e1-a022-828b42482ecf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-correlation-request-id": [ + "933a53c9-623d-4f56-b113-a006c9b59fda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061321Z:933a53c9-623d-4f56-b113-a006c9b59fda" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17087f10-8194-4691-8393-e8d15eba667c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1150f250-eb7b-4196-a3ec-edb1840a8032" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14908" + ], + "x-ms-correlation-request-id": [ + "11573507-b493-40c1-9f43-f0f12d3cb5a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061324Z:11573507-b493-40c1-9f43-f0f12d3cb5a7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac60131c-d185-40f7-9ad8-566e7157a1ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7a79398-deab-43d4-bea3-dc7c47cba083" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "0a7b0c0b-74a8-4186-96e7-7be5de930512" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061312Z:0a7b0c0b-74a8-4186-96e7-7be5de930512" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:12 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7c7e642-9145-4f92-9003-687cb97c7f28" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b3b6acd-d511-4cea-a04d-c884be87bd11" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "64ce72ae-1db7-45f6-bd35-240609c1c5bd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061320Z:64ce72ae-1db7-45f6-bd35-240609c1c5bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57a2c6ba-2f96-4730-9b78-81ff43203e7c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cfe0f9ed-bdfd-4c74-baa9-8ad71e4b815e" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "81ed2dce-887e-48c1-93d1-59341e42d3ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061321Z:81ed2dce-887e-48c1-93d1-59341e42d3ad" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "beb43feb-dab9-4a06-854a-80127f4729db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc4a69b9-9fcb-4e50-84e4-7fe1971e0ee1" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "00806222-8b8c-4b57-b483-d856d6633d49" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061324Z:00806222-8b8c-4b57-b483-d856d6633d49" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd900eea-5445-4e16-be47-1c68ccb82402" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d293e5e-b576-41a6-8bf3-f679d65b0e3b" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "5ac207a4-c2a3-49d6-b9c1-d2ff8c6b28f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061313Z:5ac207a4-c2a3-49d6-b9c1-d2ff8c6b28f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:13 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1213b7f6-8318-401a-ac2f-d24a4ad45f2d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b6b1cd4f-4afa-4bbb-8da3-24091fd5a020" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "e0022063-9401-49fd-9083-ad87f7c976ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061320Z:e0022063-9401-49fd-9083-ad87f7c976ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02011a6b-da43-4f94-a613-7c8b640d14ae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e1a111f-c4fb-4ec0-b36f-c6fda4bc73c5" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "66930b2e-c3a5-4bf0-8589-273d609babff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061321Z:66930b2e-c3a5-4bf0-8589-273d609babff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c2788fb-b613-4bf2-a9b7-75aae91383b2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01f59e05-9ce9-48f7-a553-1c031646c3fe" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "970d2143-e43a-4efd-b264-1583bfc18f03" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061325Z:970d2143-e43a-4efd-b264-1583bfc18f03" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "285" + ], + "x-ms-client-request-id": [ + "3f7f379d-49f8-4ee6-865d-9cfb32204680" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f27f605-bc71-418c-b8f8-c9c83ffc8f78" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1be350ba-f87a-4f4b-ae90-be14186576f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061315Z:1be350ba-f87a-4f4b-ae90-be14186576f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:15 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "5501fdee-25cd-47be-9408-cd21bbf7c955" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7459cfae-930e-4d61-9428-6b57aa8e1983" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "7ea90979-2896-4a24-9327-cdc28e6521e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061327Z:7ea90979-2896-4a24-9327-cdc28e6521e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:26 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38d739ee-d791-4973-adb2-85664b40d8d4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ce490290-607b-47a7-80c3-7bf5169bcbc0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "f3e1b472-be3f-4da3-9584-0082eefeacb3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061316Z:f3e1b472-be3f-4da3-9584-0082eefeacb3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:16 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d51855a5-e02d-4cf0-bc9a-86af8b6c67d4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "872e6a6e-bd7a-4a26-a54b-0c9260086c95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" + ], + "x-ms-correlation-request-id": [ + "4dc1573b-6b88-4fb9-8c71-b9e55656a1ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061322Z:4dc1573b-6b88-4fb9-8c71-b9e55656a1ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:21 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c9b5fd5-409f-4961-9fca-b9435354b6bf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "914bf336-0952-42fb-81b3-76abc1ab9932" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14911" + ], + "x-ms-correlation-request-id": [ + "878d43d3-45ca-4600-8ded-8f8fcadca9cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061323Z:878d43d3-45ca-4600-8ded-8f8fcadca9cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:22 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef7e3618-7a21-4aaf-875b-053e91cd77ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a226b79d-5a1f-4f04-8f61-01670ac4d2ee" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" + ], + "x-ms-correlation-request-id": [ + "53f1b19b-cc0c-4a7a-aeaa-71a8d6732e74" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061332Z:53f1b19b-cc0c-4a7a-aeaa-71a8d6732e74" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:31 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7456fc86-1a58-4f3e-9c2f-c485f2768c54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b13e5613-a082-4824-ac61-1edcda6cbecd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "f3a47762-241e-45b6-929b-4454073ae57e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061316Z:f3a47762-241e-45b6-929b-4454073ae57e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec2ca37a-d4cf-4715-9a2f-b646ac1a6bdc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a463103a-c58c-434a-960d-0c31a88c3476" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-correlation-request-id": [ + "817b32e2-5680-4673-9149-cbea30f526b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061322Z:817b32e2-5680-4673-9149-cbea30f526b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ea9cc9e-34bb-448e-b1c6-961fdb078017" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "878f01b7-4ee1-4666-95fd-f9a6a875df88" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" + ], + "x-ms-correlation-request-id": [ + "434f0452-953a-42c3-89ac-0be2f35b1419" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061323Z:434f0452-953a-42c3-89ac-0be2f35b1419" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:23 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adc214a9-0a51-4a7e-bbb2-6e7cec77af30" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a037390-d8f5-4dd4-b568-51273298102b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14903" + ], + "x-ms-correlation-request-id": [ + "446681be-5c6d-471f-a501-7baf6f5c5890" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061332Z:446681be-5c6d-471f-a501-7baf6f5c5890" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e91a6d4-6576-4d6e-b782-f93f2f097dc2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d6c98477-4116-418a-a6f8-454efa22474c" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ccdac0f8-00e4-4144-a589-10b33b8bd2ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061317Z:ccdac0f8-00e4-4144-a589-10b33b8bd2ef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db328881-15c1-42b0-8a61-dd005f4716f7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30375409-6ad1-4f75-857b-e6db98808019" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9023e85b-2920-4880-8be3-aa67c0f56517" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061322Z:9023e85b-2920-4880-8be3-aa67c0f56517" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "511660b4-bc4c-470d-86bd-d303ece90599" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a038d511-e4ee-4d2d-a9dc-e8d35745d20f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ac3ca314-ef4a-46ca-abdb-dfe1ced03f98" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061323Z:ac3ca314-ef4a-46ca-abdb-dfe1ced03f98" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:23 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff3d04d0-ce7b-4b28-b2a3-102cc8106d25" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33cdebb3-93ec-4e05-b9e0-43c35fce59ca" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "ab8d3531-67f0-491f-881d-06279156cefc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061333Z:ab8d3531-67f0-491f-881d-06279156cefc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:32 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "724f7735-0ff8-4c71-bd4d-e2e6aff4ac75" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f6f50e9-ee4d-4fa9-8344-d5c0d43487fd" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "920142b1-5355-4fdf-9997-7122dad42e84" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061317Z:920142b1-5355-4fdf-9997-7122dad42e84" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:16 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca1c0577-0df5-4e18-a232-0c35cb5cd598" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1847d06f-0628-45bf-a29c-0162f5bda995" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "05609f07-dcec-4331-b5fd-bcbbd83474a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061323Z:05609f07-dcec-4331-b5fd-bcbbd83474a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54101cb1-3ec9-46ed-9904-8d5378684ee1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0593bd11-60f2-4411-83f7-65d9a2165f0f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "59c2a2f1-4f14-404e-88b5-f3a8bf9b74b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061324Z:59c2a2f1-4f14-404e-88b5-f3a8bf9b74b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:23 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "751fcc28-9f9f-4ab9-bc13-09a7c1d7c192" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cac8c1e1-44fd-4daf-887e-4be461b22873" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "3bb77889-ed73-4d20-b1be-46b9ce7041d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061333Z:3bb77889-ed73-4d20-b1be-46b9ce7041d9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:32 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "x-ms-client-request-id": [ + "135a2fb1-3fe1-4d3d-ad43-cef6f06e687f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d31377f-2000-4847-badc-435dedb71408" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "c6005fc4-b594-451d-a059-0e45ffb293c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061319Z:c6005fc4-b594-451d-a059-0e45ffb293c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:19 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "221" + ], + "x-ms-client-request-id": [ + "08cc3afc-cf6b-441d-93cb-a12906b56fa0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a1d83ec-5ba9-48a4-9424-54413b042094" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "a30d4930-7f36-4ad2-b55f-9d40d6cddd77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061335Z:a30d4930-7f36-4ad2-b55f-9d40d6cddd77" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:34 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "c3373880-96f6-4d69-95e8-e633cf84f022" + ], + "x-ms-correlation-request-id": [ + "c3373880-96f6-4d69-95e8-e633cf84f022" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061327Z:c3373880-96f6-4d69-95e8-e633cf84f022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-request-id": [ + "69f2e2de-c265-4273-ba07-d6519611514d" + ], + "x-ms-correlation-request-id": [ + "69f2e2de-c265-4273-ba07-d6519611514d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061335Z:69f2e2de-c265-4273-ba07-d6519611514d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a7986eb1-8755-4a6d-a146-b9792906585e" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "1c9de418-209b-491c-b904-b057a1d4c029" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061328Z:1c9de418-209b-491c-b904-b057a1d4c029" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ae8bf003-0714-4254-b95b-99cf954ba2c7" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "2b29076a-7317-4481-9ec3-6bee97632af3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061335Z:2b29076a-7317-4481-9ec3-6bee97632af3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b759b7ef-dcf7-4ed4-96df-3676675e89ce" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "dc733f7a-dc8c-462e-9ac6-851f696e361b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061328Z:dc733f7a-dc8c-462e-9ac6-851f696e361b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6fd64c4e-47dc-4b1a-aa63-057d015702b3" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "4e905146-2013-4291-bb87-f7430694f837" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061335Z:4e905146-2013-4291-bb87-f7430694f837" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2d160a6a-292d-40f2-9198-3e0b95055280" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "e58f5b1c-a8d7-4934-a99d-2f35fc01e678" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061328Z:e58f5b1c-a8d7-4934-a99d-2f35fc01e678" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d91d5edc-029e-44c5-909e-b1acf0b43d7e" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "d70a3810-83f7-47cb-a928-8b2676033b65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061335Z:d70a3810-83f7-47cb-a928-8b2676033b65" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "03860842-6631-435e-bdc5-b9ffdd7e6dde" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "1094765e-d84c-4449-9161-80d70d56d00d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061328Z:1094765e-d84c-4449-9161-80d70d56d00d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3898300e-0eab-4df7-b9be-fbf6e73150f2" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "1e027d25-f8e1-4729-9914-6a33372788a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061336Z:1e027d25-f8e1-4729-9914-6a33372788a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "773f36ca-8930-4e8f-8362-087d3547ba1a" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "a6ef844e-c2fe-4af6-8f11-732b104df9ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061328Z:a6ef844e-c2fe-4af6-8f11-732b104df9ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0625d1f7-85fb-49a0-9204-d324a9328aa0" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "59d54240-185d-43e8-9a83-28de4ea91c0a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061336Z:59d54240-185d-43e8-9a83-28de4ea91c0a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "66755363-c7cf-4f26-9933-b2e2cf6b1854" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "02062af7-958a-4b8a-bc36-8ad8e9764da6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061328Z:02062af7-958a-4b8a-bc36-8ad8e9764da6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:27 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "38e3ebfe-4b0c-4341-804f-c3664e721ab9" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "007a30a2-f88b-480e-861c-04af954581a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061336Z:007a30a2-f88b-480e-861c-04af954581a7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b6c4257-9f3d-4a90-996d-df150e24a806" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9ed203ce-4f8a-4f61-8617-ac54f030c86d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14907" + ], + "x-ms-correlation-request-id": [ + "05b37e2f-a75e-4889-a834-4dd910416f7d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061329Z:05b37e2f-a75e-4889-a834-4dd910416f7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:28 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5378d08-756b-470e-9641-e0b8d3df650d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ae2e69bc-a095-4150-860f-ae5d41c2fe66" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14902" + ], + "x-ms-correlation-request-id": [ + "af912504-d6b2-44db-bd98-558c5db3c2ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061336Z:af912504-d6b2-44db-bd98-558c5db3c2ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d3d9a32-bc0c-4022-8147-9e0fb270b140" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "853efa44-b61b-4833-9ea7-e35895ea95a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14906" + ], + "x-ms-correlation-request-id": [ + "c551c74b-e657-4141-96de-ec843a0c9099" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061329Z:c551c74b-e657-4141-96de-ec843a0c9099" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:29 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42823103-786f-4a17-a1bf-c22bfda0ac40" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0420b245-eaff-4d6d-a399-f48d158d823f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14901" + ], + "x-ms-correlation-request-id": [ + "f8ed8f8f-69e2-4836-86c9-997e75e53d5d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061336Z:f8ed8f8f-69e2-4836-86c9-997e75e53d5d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c1c6072-0f22-4218-8970-13990e32633a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "41248ef1-2255-4bf5-8684-f5dc35ecf4c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14905" + ], + "x-ms-correlation-request-id": [ + "799f81f0-d46c-43a9-ac1c-06a355a0f01c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061331Z:799f81f0-d46c-43a9-ac1c-06a355a0f01c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:30 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caca3332-0bb0-4dd2-8117-a61769c20a1b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6be6b1a-21d2-4cfc-9363-119a5491f816" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14900" + ], + "x-ms-correlation-request-id": [ + "36763921-73c5-49a6-b472-a4abde5af0de" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061337Z:36763921-73c5-49a6-b472-a4abde5af0de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d07e197-7f43-4435-bce2-cbe2e64d0f6c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "375fdf61-0ff3-45c5-a5df-ba653d3c76fc" + ], + "x-ms-correlation-request-id": [ + "375fdf61-0ff3-45c5-a5df-ba653d3c76fc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061332Z:375fdf61-0ff3-45c5-a5df-ba653d3c76fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f1611ac-1065-4a85-a51f-3d1d8ecdac1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "73dea75f-db2a-4a5c-b8ad-8e43ee35527e" + ], + "x-ms-correlation-request-id": [ + "73dea75f-db2a-4a5c-b8ad-8e43ee35527e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061337Z:73dea75f-db2a-4a5c-b8ad-8e43ee35527e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:13:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "ef90e930-9d7f-4a60-8a99-748e0eea69de" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json new file mode 100644 index 000000000000..281d4361d1c9 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json @@ -0,0 +1,2972 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4062ea99-50bf-4569-ad2f-f95d67399ae7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed056fb3-4c7a-4101-bbc4-a066dfc02be4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "374db8cb-0592-43d8-95e7-966242cc8846" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060925Z:374db8cb-0592-43d8-95e7-966242cc8846" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:24 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81745f9f-bfb1-43e3-b4e9-2c8b7dbf8e61" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1655f7d7-0f02-4dcf-bfbb-045f830f6f7d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "184a1f7d-e3ab-4218-8f50-e2ee25792157" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060942Z:184a1f7d-e3ab-4218-8f50-e2ee25792157" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:41 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3178bcc-a550-49e7-a651-0395e893103b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0864aedf-e6a8-4f27-9842-c60435955c7b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "bc1532b3-a31a-4efa-a7f5-62bb329d290b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060925Z:bc1532b3-a31a-4efa-a7f5-62bb329d290b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a5db7b3-676a-488f-90a6-25298683b700" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f9e9d2ed-9c16-4e15-acfb-b8684450e349" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "824e939e-ce72-4688-8fbe-b2b3ff4b43b7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060942Z:824e939e-ce72-4688-8fbe-b2b3ff4b43b7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:41 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e1dd2cb-bf1c-4c34-8919-50d62edfc4c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7730229e-8448-4783-a6a5-ea8f27b33a32" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "7c43c534-c111-4db9-9842-06fbc57fae4f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060925Z:7c43c534-c111-4db9-9842-06fbc57fae4f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c13a74b-a294-416a-9dd3-455e8127f813" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a21c1d12-c3bd-4fe8-9c43-ffe1f7773f56" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "68394472-91b5-4d22-8e85-7cac292538c2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060942Z:68394472-91b5-4d22-8e85-7cac292538c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6646a590-86b4-4f1c-a5ec-3283b5fd35eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "97421b39-a3f1-4e4d-8e50-3cc121751e44" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "9b46473f-a0fd-4c31-bc08-4de82ab89d43" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060926Z:9b46473f-a0fd-4c31-bc08-4de82ab89d43" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:25 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "992dc9bf-6377-45f5-b951-9ba585f3d62a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2aa68f86-6f6e-4a0a-a9b9-608c909fce91" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "407c8e8b-ccfe-45a5-bf8b-25a5669d5b7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060942Z:407c8e8b-ccfe-45a5-bf8b-25a5669d5b7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "285" + ], + "x-ms-client-request-id": [ + "5c663d82-2680-4196-8c8f-a1223869e8d1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c5c52ff7-6d31-4ad2-83bd-6abf8c7ef057" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "64bf62f9-e4e3-4e54-b941-b82021aa3bf0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060929Z:64bf62f9-e4e3-4e54-b941-b82021aa3bf0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:28 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "256fa06c-a6f8-41ca-94c4-34612e5e8e6d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "173f18ce-c11b-4184-b742-7dc71e44b46a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "cb7b8b8c-e8aa-44ee-bd83-75ca97aeec5c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:cb7b8b8c-e8aa-44ee-bd83-75ca97aeec5c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:44 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-request-id": [ + "7391a611-9372-41c8-af63-f492e113a53c" + ], + "x-ms-correlation-request-id": [ + "7391a611-9372-41c8-af63-f492e113a53c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060929Z:7391a611-9372-41c8-af63-f492e113a53c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:29 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-request-id": [ + "2559c8a8-224b-4866-ab8a-f4726e0a6b79" + ], + "x-ms-correlation-request-id": [ + "2559c8a8-224b-4866-ab8a-f4726e0a6b79" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:2559c8a8-224b-4866-ab8a-f4726e0a6b79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-request-id": [ + "04f4b76a-d151-47c0-b938-f4d3b7c7645b" + ], + "x-ms-correlation-request-id": [ + "04f4b76a-d151-47c0-b938-f4d3b7c7645b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:04f4b76a-d151-47c0-b938-f4d3b7c7645b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a3c61c4a-a99f-4bf2-87e1-843922f4b51d" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "18d8dd54-e436-4574-bc25-88c7dfd0f2b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060930Z:18d8dd54-e436-4574-bc25-88c7dfd0f2b9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:30 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a518d2e-2d42-4363-9bac-58543373d4d0" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "f70cfdc0-7678-48aa-8a0b-fe3ad241e584" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:f70cfdc0-7678-48aa-8a0b-fe3ad241e584" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7c78a287-352d-423c-a365-400e03a187c7" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "31be8814-3029-483e-92fc-29c68b29a0e4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:31be8814-3029-483e-92fc-29c68b29a0e4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61e86b86-440e-4d0d-8eb3-5a724b04fe2c" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "9e38184a-572a-4344-94a0-558fbf5dcdd3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060931Z:9e38184a-572a-4344-94a0-558fbf5dcdd3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "090d381e-6b1e-4b64-abb4-8362bf5fa51e" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "b786c813-ee7e-4adc-b8f9-d4cf28b8b545" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:b786c813-ee7e-4adc-b8f9-d4cf28b8b545" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "401bf18b-f989-49a8-91d6-51c7e3ae955d" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "26d43180-84d6-41b4-9574-57e977cabd7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:26d43180-84d6-41b4-9574-57e977cabd7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2c9037cb-246d-4ab6-8a69-5f6bd5ddc3b7" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "26b6b854-e639-41f1-a557-d02f2f8f7508" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060931Z:26b6b854-e639-41f1-a557-d02f2f8f7508" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "69528df7-779c-4563-bbae-b7266e7fa63d" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "6e3b8fd9-f382-442b-986f-1b67cd090616" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:6e3b8fd9-f382-442b-986f-1b67cd090616" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5cc3864-92ae-4978-9646-9fa45bee5b46" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "4be344be-f254-4fd1-8dc5-17ed3d2798e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:4be344be-f254-4fd1-8dc5-17ed3d2798e5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5fe96fbe-5e1f-4612-9cee-85318140dde6" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "5fb1aeaa-f792-40c0-bdad-e373fb21812d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060931Z:5fb1aeaa-f792-40c0-bdad-e373fb21812d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "86c90f74-19c6-4dff-a4b7-fd5d62744864" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "94dc4b11-1db7-415c-89b0-1b65cae53aef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:94dc4b11-1db7-415c-89b0-1b65cae53aef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c4b00529-290d-4939-a5a3-185017a4b9ad" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "eaefcf50-a008-415c-8612-d2d418e01204" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:eaefcf50-a008-415c-8612-d2d418e01204" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:44 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "57100ef2-da17-4b50-80a7-41abbcec3cc4" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "d232f778-8afe-44ae-ab2d-176d6ec24235" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060931Z:d232f778-8afe-44ae-ab2d-176d6ec24235" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8ade499b-0f22-4e19-8079-e46e1aad1ed1" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "21d23cbc-e59f-4c87-ad43-754d818449df" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:21d23cbc-e59f-4c87-ad43-754d818449df" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "72175844-4b2e-4e8e-a681-39b26fb3d73b" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "e20a7923-4265-4781-affc-08712b9034bf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:e20a7923-4265-4781-affc-08712b9034bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "182d5e87-ef0d-4c41-a391-39f3df336134" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "99e32be3-08d4-4cc0-875f-999eb7285bb2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060931Z:99e32be3-08d4-4cc0-875f-999eb7285bb2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:31 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2e817325-97bf-490d-ab88-1d14fcb644e6" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "7d3b06f5-65cf-44a8-8f42-3819209effe0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:7d3b06f5-65cf-44a8-8f42-3819209effe0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f27b6e3b-a302-4cf5-9b7e-a58f8fdc637a" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "ba2d79c0-1eda-488a-86c3-855265408a9a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:ba2d79c0-1eda-488a-86c3-855265408a9a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bc67432-c81c-4ab3-9867-a395269c6956" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7153c73-96ed-4afc-a686-430694bd7c97" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "09324f01-8988-41c2-b4ef-90f056df3143" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060933Z:09324f01-8988-41c2-b4ef-90f056df3143" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:32 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "432f115f-1897-4fbb-85d3-580fcfb160d9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d150cf6b-27b2-4d43-a3c6-85d035d87de7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "98cc29fb-cbf9-4831-8baf-f7b6fe26501f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060939Z:98cc29fb-cbf9-4831-8baf-f7b6fe26501f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "214a006c-7fda-4df3-86d2-0b6b8537f91e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bf33aa02-225e-4693-b348-ddae69af22c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "0f1d2fdd-c81f-4c12-8917-2ddffca3e3e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060945Z:0f1d2fdd-c81f-4c12-8917-2ddffca3e3e0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e18fc471-7fd4-43cc-9ac7-6ec9037308ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee130539-5e32-4d6a-96ef-fb601eccc51a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "199a75ac-9d3b-4268-81b5-24982904aa9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060933Z:199a75ac-9d3b-4268-81b5-24982904aa9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:33 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e80072f7-3f76-4eab-8192-a505ad351521" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1a16311-505b-42bf-a762-c57a6665d2b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "b0146f74-9bf6-4543-9ab7-05d2f1330840" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060939Z:b0146f74-9bf6-4543-9ab7-05d2f1330840" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de4de971-95a1-4173-b1a5-0975fb21ba91" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a38d6661-d30a-4dec-86e1-8a915b938945" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-correlation-request-id": [ + "5c0cb67e-7fae-4743-b86f-dedbac0b3995" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060946Z:5c0cb67e-7fae-4743-b86f-dedbac0b3995" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:45 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88cdcf0b-d60d-4cf4-938f-11ca09a30426" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "801ca489-7f27-4fdd-b252-e8fcab51d066" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "1c27e1b2-4d5a-45c9-8d7e-0cabc616a0a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060935Z:1c27e1b2-4d5a-45c9-8d7e-0cabc616a0a1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bb3f19c-1d61-4010-acae-f00e350cc57e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34df11b9-e9c3-4a78-b817-19cbf8582818" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "9e63b4c8-c820-47ba-9aad-ecb919bd0b33" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060940Z:9e63b4c8-c820-47ba-9aad-ecb919bd0b33" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "107fd959-c02f-4b78-9755-ad07459cf0fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30178633-4a74-43c6-bf32-62b70b45c4f5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-correlation-request-id": [ + "420ba432-eeeb-4a05-8b83-f591f3a2c98f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060946Z:420ba432-eeeb-4a05-8b83-f591f3a2c98f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9CNzVDQkY3NDM5Mjc0QUU0MTM1RTNFNjlDRTZBMTk2OTNGNjhENDBGP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f823cbf7-35ce-43dc-9953-83a8525d1856" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"*.contosoweb.net\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2014-10-02T17:00:00-07:00\",\r\n \"expirationDate\": \"2015-10-03T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\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 \"webSpace\": \"NorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "878" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23975d50-09ec-4f14-905d-a7b724f2d6dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "913faa0b-6f53-449f-aac1-9206068a879f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060937Z:913faa0b-6f53-449f-aac1-9206068a879f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9CNzVDQkY3NDM5Mjc0QUU0MTM1RTNFNjlDRTZBMTk2OTNGNjhENDBGP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61416079-0a09-4e02-8baa-4a742ebfe85f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"*.contosoweb.net\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2014-10-02T17:00:00-07:00\",\r\n \"expirationDate\": \"2015-10-03T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\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 \"webSpace\": \"NorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "878" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8e60b2f7-47b1-4e22-9cd1-774a584d63ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "6b651708-790e-4c99-96d2-4d13c995f2a2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060940Z:6b651708-790e-4c99-96d2-4d13c995f2a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNkJENjFGOEIxMjUwRkY3Mzc5MENCOTk3QTc2Mzk4NTUwMjk1MURDMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ea1f181-463d-4a04-a955-67f56db07eef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"contosoweb\",\r\n \"subjectName\": \"contosoweb.net,www.contosoweb.net\",\r\n \"hostNames\": [\r\n \"contosoweb.net\",\r\n \"www.contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2014-09-21T17:00:00-07:00\",\r\n \"expirationDate\": \"2015-09-22T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\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 \"webSpace\": \"WestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "861" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b55b5161-6090-4135-ad49-db1bfd6cadaf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "25165297-ed61-4dfe-93c9-dd04134e1414" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:25165297-ed61-4dfe-93c9-dd04134e1414" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNkJENjFGOEIxMjUwRkY3Mzc5MENCOTk3QTc2Mzk4NTUwMjk1MURDMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b798b07d-56ed-45ef-8801-b8f6fa06895e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"contosoweb\",\r\n \"subjectName\": \"contosoweb.net,www.contosoweb.net\",\r\n \"hostNames\": [\r\n \"contosoweb.net\",\r\n \"www.contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2014-09-21T17:00:00-07:00\",\r\n \"expirationDate\": \"2015-09-22T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\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 \"webSpace\": \"WestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "861" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "38b873ca-819a-43e1-949e-a98b24222826" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "117e0f73-f7c4-4b25-85e8-ff994388db89" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060941Z:117e0f73-f7c4-4b25-85e8-ff994388db89" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d933c83-c999-4263-b1aa-56cadd026855" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"*.contosoweb.net\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2014-10-02T17:00:00-07:00\",\r\n \"expirationDate\": \"2015-10-03T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\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 \"webSpace\": \"WestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "863" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3e67deb4-7c93-47ae-b683-0f039fd6562d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "ff15dda9-dfe6-4a2d-88da-763d07364d76" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060938Z:ff15dda9-dfe6-4a2d-88da-763d07364d76" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b789544-7683-413d-95f3-81f62474e09e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"*.contosoweb.net\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2014-10-02T17:00:00-07:00\",\r\n \"expirationDate\": \"2015-10-03T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\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 \"webSpace\": \"WestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "863" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94267cb2-cc00-4163-b23a-e3464ab2a00a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "3ed902c2-36c9-49c4-8148-587caa880f0c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060941Z:3ed902c2-36c9-49c4-8148-587caa880f0c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:40 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09c41bb5-10b0-41fb-a9a4-ff3f607fac55" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "409b1f22-966c-4a6e-b1af-c16e127b9b05" + ], + "x-ms-correlation-request-id": [ + "409b1f22-966c-4a6e-b1af-c16e127b9b05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T060947Z:409b1f22-966c-4a6e-b1af-c16e127b9b05" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:09:46 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "ef90e930-9d7f-4a60-8a99-748e0eea69de" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json new file mode 100644 index 000000000000..2fb10cb5004a --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json @@ -0,0 +1,3788 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e57e8891-5aab-434d-914d-9b14b42e6eb9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2aae7f20-6b98-4701-9d28-b097fb11f3b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "e7cf6295-e3af-4fdc-a11c-7fb01155313d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061159Z:e7cf6295-e3af-4fdc-a11c-7fb01155313d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:58 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9046e480-e97d-4887-8d7d-e80642ff51a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87b2a67f-3263-45ea-84a9-77ba6beba5eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "237e8e7b-d6c2-4a18-b7e9-b9e1f9232f18" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061207Z:237e8e7b-d6c2-4a18-b7e9-b9e1f9232f18" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:06 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cfb1ff2-6666-43b0-a634-e6476134b4ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e57968c2-4076-4d02-98f7-81368a42fdbd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "0d0c3afc-2e4f-4585-b806-52f96a5e877a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061220Z:0d0c3afc-2e4f-4585-b806-52f96a5e877a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:19 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5882458c-7062-4719-b8f5-53174522da2e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "29574398-9417-489b-9ed9-ca9caa511700" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "d063a203-b2be-49d5-8025-ef1ad1822456" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061223Z:d063a203-b2be-49d5-8025-ef1ad1822456" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:22 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c79dde2e-bbbe-48a8-bb53-0e927ea79be6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "172e34a6-5995-4301-a19f-5596f408bf12" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "7085b292-35f3-49bd-a442-900273265c53" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061159Z:7085b292-35f3-49bd-a442-900273265c53" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:58 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a5ba61f-3d26-4acb-b1c6-7783ce9be205" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c4c7734-adaf-4992-b2c8-b248e57b9f60" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "20286edf-f6cc-42da-8a12-c529a61c2787" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061207Z:20286edf-f6cc-42da-8a12-c529a61c2787" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2907968f-53fd-437d-95d9-3dab81691115" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "efb1c77d-9768-4f9f-a95a-d5ee94074d19" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "dea82b0d-2343-41a9-9aed-90a79b40b028" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061220Z:dea82b0d-2343-41a9-9aed-90a79b40b028" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c742e947-f4ae-4202-94fe-aa123c0e7248" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "90961a74-1ce9-48e9-8104-c9e31fbe1b58" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "15a2e6e1-6d39-40c6-be27-3fb77b4ce613" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061223Z:15a2e6e1-6d39-40c6-be27-3fb77b4ce613" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "48074a8c-6c09-4d55-b8f0-9afe3fab267a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1c796588-3c30-4303-b402-e16b2cca7b0f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "ae4fb978-4a80-4d2f-9fb7-9f464ba6754b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061159Z:ae4fb978-4a80-4d2f-9fb7-9f464ba6754b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:58 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74ebc710-7695-4e74-9c14-ce0355c00fff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "10b8c409-83ff-4987-b957-2d4b989fd989" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "2037e34e-4556-41ee-9939-8d7d9c94bf2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061207Z:2037e34e-4556-41ee-9939-8d7d9c94bf2f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdcfe489-9f17-402e-870c-6c6d088c099f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "113d6cf7-f960-4d37-a450-a6df52ba5abc" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "c1fc4f6b-1bfa-43c3-aa5c-7f94827e344f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061220Z:c1fc4f6b-1bfa-43c3-aa5c-7f94827e344f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:20 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4584757-9304-4467-8d18-69899e36e8f3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c3be8654-e32e-4652-863c-bef65045e47f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "18b96ef9-256c-49b3-bee7-9d8a2921b21f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061223Z:18b96ef9-256c-49b3-bee7-9d8a2921b21f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "928f9ff4-2609-4d70-b934-80a29eaf4fd8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3b953aed-4c15-4904-b669-a414debf71c3" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "9113bf6e-8648-4e48-99a4-8b4ad07fcc95" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061159Z:9113bf6e-8648-4e48-99a4-8b4ad07fcc95" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:59 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a52d8552-23b6-4307-b4e9-d8a4b12d38a9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ad59ed5-fd23-454b-8e23-9ddabf01ad95" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "52c05763-d9ab-49a8-9855-34ad2f40c6f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061208Z:52c05763-d9ab-49a8-9855-34ad2f40c6f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "183c8569-8120-400e-81d1-99c6c18b938a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aba4a0b1-e0de-4bc3-a879-831ed59d772d" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "5118da76-386c-4aea-8bde-8367d4fc5154" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061221Z:5118da76-386c-4aea-8bde-8367d4fc5154" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d42ddf3f-8467-41b5-8f67-6112580e9a55" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fccc0c66-5a26-4732-94ae-f923a262f928" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "e7c63896-b2bb-4494-bb28-20959c0abe59" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061223Z:e7c63896-b2bb-4494-bb28-20959c0abe59" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:23 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "285" + ], + "x-ms-client-request-id": [ + "cc6f4eb8-002b-4ada-8ee8-8163259322d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "51b7a8d3-f909-40b1-a499-468309d474d1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "92be0871-93d6-4f45-b80b-b1896760529b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061202Z:92be0871-93d6-4f45-b80b-b1896760529b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:01 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "589e5368-b9b4-4e82-92c9-61d70c98a8d4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f23a999f-9c0d-46a9-94f2-ee594f00c24c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "d94401e6-5beb-46bf-a503-bd58665f3a25" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061210Z:d94401e6-5beb-46bf-a503-bd58665f3a25" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:10 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2b22a7a-1d6b-4272-b9b0-f2a512f7805b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "293cbb24-e0ee-4978-a388-31af9bbc1535" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "a7e57834-4f08-4b11-9deb-4c8887dc3a87" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061203Z:a7e57834-4f08-4b11-9deb-4c8887dc3a87" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:02 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75db3bd3-b5af-4af7-b3e9-9f9765492af7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bce33ef0-773d-46c7-ab39-8447c8567cb3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "fba3b8d4-0453-4e7a-a817-73fcc574abb7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061215Z:fba3b8d4-0453-4e7a-a817-73fcc574abb7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:15 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e6e1785-6026-47b7-b1ba-e97288936ef4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8bc4d89e-0d68-4c87-990b-9d4dd8851c6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "97edc2bd-7b49-45e4-b3a0-2b062eb982e3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061222Z:97edc2bd-7b49-45e4-b3a0-2b062eb982e3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:21 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca15c892-7e8b-439c-9340-d19ab279faed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "95bc8e4c-1b6f-4728-bd9e-25edf3c1101c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "8e6ae85e-723f-42f8-8a9e-0db19ebbac31" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061224Z:8e6ae85e-723f-42f8-8a9e-0db19ebbac31" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:23 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "060a244c-ab79-4c08-9678-f9c497fde87f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "75199de1-3f54-403d-8e62-645825759e0e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "2d4f7fee-1c56-47e7-b550-a67942aa8d2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061203Z:2d4f7fee-1c56-47e7-b550-a67942aa8d2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "556e0782-c8b8-434c-92db-7c7d7ce3cb92" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b393de19-1835-4022-9d71-3a49ccdf1d5e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "6fd9fe4e-69aa-4ecb-aadf-365b4b99f8e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061215Z:6fd9fe4e-69aa-4ecb-aadf-365b4b99f8e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3dcb86eb-1a7c-40ab-80f5-42cb4a1526ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5b5de4be-9f0b-4980-8a34-2f819bb839ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "4a7ee1f6-277d-4f48-99b9-d474e7523af7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061222Z:4a7ee1f6-277d-4f48-99b9-d474e7523af7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a61d7b0-5708-4625-a3ca-27da54495d86" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e9f1eff8-752f-47d1-b578-bba7b07e907e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "2620863d-7378-4746-b169-e7f4892e8032" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061224Z:2620863d-7378-4746-b169-e7f4892e8032" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00316085-b091-4bf5-bf41-2cff574d3238" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad929f6b-ed14-47a3-a93e-68d196219127" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "db8bbb1b-74c3-417b-9f5c-8f10d759207d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061203Z:db8bbb1b-74c3-417b-9f5c-8f10d759207d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:03 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f61a2bab-98a2-44b0-945b-8905ba47e46c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04da19e8-165b-4382-b2bb-8d279262e072" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a33f8832-8303-48ab-b31e-264ec2456ce4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061215Z:a33f8832-8303-48ab-b31e-264ec2456ce4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "123a30a0-89c8-494b-b5aa-21faaf3b7ea2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "965726d3-637e-4a9c-bad4-af4c69280ae4" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "7ea7077d-aba5-4dce-a63f-6c1066f6673f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061222Z:7ea7077d-aba5-4dce-a63f-6c1066f6673f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:21 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abe2be09-72c2-4cb0-81c2-e047d8717563" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "12bf14b1-f7bc-457d-b695-7c7de91a4a67" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f18d72c9-fc23-4a29-b445-fcf779565d7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061224Z:f18d72c9-fc23-4a29-b445-fcf779565d7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1c9192c-6fac-4aa9-a3b0-779bcda6abfb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78f21832-8186-4fc3-ae34-dcd82371cb57" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "9f1b964f-656e-47b0-b9ca-93fa1773e91d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061204Z:9f1b964f-656e-47b0-b9ca-93fa1773e91d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:03 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b228bc1-b833-4719-a984-4013231784cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f879d048-0ab5-4964-abde-be25e2d253d0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "d5b2b1ba-e809-4537-b0eb-1332f17959e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061215Z:d5b2b1ba-e809-4537-b0eb-1332f17959e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:15 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b3786db-0f21-404c-b6ed-67cb21b690ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f22d070b-5309-46c9-8426-dc4ccea95add" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "25f6c726-9d5d-42d9-af21-b590676df4d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061222Z:25f6c726-9d5d-42d9-af21-b590676df4d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:22 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be876fbb-b91c-46cb-ad25-75d549a41aac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0b2c2abd-773c-46c5-bc66-85ed532224d0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "7281ba6f-1db6-401e-b632-18e57cef8aea" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061225Z:7281ba6f-1db6-401e-b632-18e57cef8aea" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:24 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "x-ms-client-request-id": [ + "3760d249-91a7-4609-8580-0c47d4b9d7c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8614198-de40-4937-918e-916cee1fdd83" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "e8854ea6-9247-49f2-aa63-3fb67bd65bb4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061206Z:e8854ea6-9247-49f2-aa63-3fb67bd65bb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:06 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "221" + ], + "x-ms-client-request-id": [ + "e8af324a-3d0f-498b-8ef3-7c549c0f5502" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a8784944-bda6-4735-b928-0e3dd58555b8" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "ab1c0b7f-6175-4352-9853-9944011cb22a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061217Z:ab1c0b7f-6175-4352-9853-9944011cb22a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "b6b21b09-fd69-481e-baaa-e560df1bd0ab" + ], + "x-ms-correlation-request-id": [ + "b6b21b09-fd69-481e-baaa-e560df1bd0ab" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061210Z:b6b21b09-fd69-481e-baaa-e560df1bd0ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:10 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-request-id": [ + "9165b94f-c6db-45a2-863d-901f3807e6b5" + ], + "x-ms-correlation-request-id": [ + "9165b94f-c6db-45a2-863d-901f3807e6b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061217Z:9165b94f-c6db-45a2-863d-901f3807e6b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a40d89c4-6356-43b1-ae45-41afe1737712" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "94dee799-e53e-4af1-ad3a-ebd67219d984" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061211Z:94dee799-e53e-4af1-ad3a-ebd67219d984" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "40a7d3eb-a76b-44c6-90ff-7637d7b249a9" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "303ec410-0c87-4371-849f-760c8215e276" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061217Z:303ec410-0c87-4371-849f-760c8215e276" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2e0c18bc-cfe9-4a7e-9beb-1011e62bbb02" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "0c4ea3e8-585e-47e1-971a-c6a287f8685d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061211Z:0c4ea3e8-585e-47e1-971a-c6a287f8685d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c565197b-8854-4c0f-83fe-aae430137e87" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "1304e15a-3d98-41b7-ab9a-6c38ad2b4236" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061218Z:1304e15a-3d98-41b7-ab9a-6c38ad2b4236" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "acb5790f-8d21-41e9-8f72-60db499a46af" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "2506dd38-fc17-4596-b17b-a09ab630250b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061211Z:2506dd38-fc17-4596-b17b-a09ab630250b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f0846aac-07c4-4994-b15a-46dc87e208bf" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "c8c000e8-c6e1-4a67-a2e1-932b925f3f72" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061218Z:c8c000e8-c6e1-4a67-a2e1-932b925f3f72" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bca28ecc-f800-43af-9a9a-01712f8acad8" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "f837dfa6-1088-4ecb-8a4c-1189c0982e63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061212Z:f837dfa6-1088-4ecb-8a4c-1189c0982e63" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f466825a-e682-4360-8ce9-d5b10378fb90" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "466d8139-dfc8-44bd-a7a5-6587c3718ce3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061218Z:466d8139-dfc8-44bd-a7a5-6587c3718ce3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4a0f8fff-7012-489c-acf4-548f9f3f4e31" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "26f47b17-a9f9-438d-a826-5a02265bc332" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061212Z:26f47b17-a9f9-438d-a826-5a02265bc332" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b4f60b78-7cd1-4eef-a55d-3b88ebc5e855" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "5d17f94b-5ff3-4c18-ab9b-5da6328630e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061218Z:5d17f94b-5ff3-4c18-ab9b-5da6328630e5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "681df009-7f47-4230-a042-34b0978409a3" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "f5471dda-4767-46ae-abda-bf83a9e068f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061212Z:f5471dda-4767-46ae-abda-bf83a9e068f6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:11 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9717ffeb-1211-410b-bb13-e8f4c9a07804" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "827b0ae9-9712-48d7-a659-e25af71aa142" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061218Z:827b0ae9-9712-48d7-a659-e25af71aa142" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:17 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "791205e7-86d0-4978-97b0-a96801b37915" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f8f332c-29e0-417e-95b4-935ae4ea56f1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "122a961a-fd72-4d4e-ac82-346cdcb5eafd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061213Z:122a961a-fd72-4d4e-ac82-346cdcb5eafd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:13 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0644082d-4d14-4ed4-81c3-c37f5b2e13bd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc3d88cc-762a-43bf-8359-d56944d3cd0c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "5e4c9b94-7b37-441a-acfb-3b21af0db437" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061218Z:5e4c9b94-7b37-441a-acfb-3b21af0db437" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:18 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32265afe-07f0-44ca-9e80-442525984c4c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0942f4fc-f22f-4c45-841f-fa74c48e4a10" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "a4bfcb6e-d118-4dc5-9b7a-d14134ebaf97" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061213Z:a4bfcb6e-d118-4dc5-9b7a-d14134ebaf97" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:13 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9021d5e6-5efe-4269-ba12-72a6c77071d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cbe410a1-177d-4a81-a873-f311b883f039" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "2a1a025e-506b-4b49-bd99-718f35fe4187" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061218Z:2a1a025e-506b-4b49-bd99-718f35fe4187" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:18 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3f33f34-34c0-4ee1-8e32-c623a705446f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2886eb4b-79f0-42b9-949b-87243f3369db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "3620b943-2957-43fc-89c3-27ed36c3e693" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061214Z:3620b943-2957-43fc-89c3-27ed36c3e693" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:14 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8abe6f3c-1665-4bc3-b5fd-e6a8a3eb4ea5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1a5ac2ce-16a3-4e6c-b044-a2cc73742f60" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "1f2e369c-5cdf-4ad0-97cd-da2dbf192cb7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061219Z:1f2e369c-5cdf-4ad0-97cd-da2dbf192cb7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:18 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac93b6bc-8d6e-439a-9f8b-435bee47741a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "39f70e6f-5928-4a61-9b31-4409d62def22" + ], + "x-ms-correlation-request-id": [ + "39f70e6f-5928-4a61-9b31-4409d62def22" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061214Z:39f70e6f-5928-4a61-9b31-4409d62def22" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:14 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f1180ad-e850-43fc-88a3-87622cd855bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "fb9d2721-f277-4391-a9c8-f8ac516ff8f2" + ], + "x-ms-correlation-request-id": [ + "fb9d2721-f277-4391-a9c8-f8ac516ff8f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061219Z:fb9d2721-f277-4391-a9c8-f8ac516ff8f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:12:19 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "ef90e930-9d7f-4a60-8a99-748e0eea69de" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json new file mode 100644 index 000000000000..b516ea192fc0 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json @@ -0,0 +1,4856 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "edbac092-7702-4596-891c-a674a2708595" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "42bca782-7b58-4b34-b6d0-0f63fbb75620" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14808" + ], + "x-ms-correlation-request-id": [ + "61a7bc43-a874-4ac8-870b-7c7e7051f9ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061035Z:61a7bc43-a874-4ac8-870b-7c7e7051f9ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:34 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "beefcff2-bdb0-4a68-8b0e-b7be01a63969" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad54a1b9-3401-4f35-9637-a078ca9c5d98" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14804" + ], + "x-ms-correlation-request-id": [ + "7726e468-40a8-4a22-89ea-5fdb807bc006" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061039Z:7726e468-40a8-4a22-89ea-5fdb807bc006" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:38 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee99db41-1250-4d7d-a6eb-fd76acd810f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "49a8ff28-241e-4a74-be4a-f2c573004f55" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14800" + ], + "x-ms-correlation-request-id": [ + "ad0fc38c-746a-4854-a502-b7bd843f0e08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061046Z:ad0fc38c-746a-4854-a502-b7bd843f0e08" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:46 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd0537e1-48ce-4923-b196-5daedd6fe6bf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0ffda61-2905-4ef3-b658-7902578677fc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14796" + ], + "x-ms-correlation-request-id": [ + "cc22af31-1392-491d-bb06-65bc64d66968" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061050Z:cc22af31-1392-491d-bb06-65bc64d66968" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:49 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db0f27ab-1b06-40be-9014-6f63328dbb6f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "233f22e7-fe1b-443b-bd38-ded193e8af68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14791" + ], + "x-ms-correlation-request-id": [ + "239d793f-5684-4632-b782-caaa156dcf93" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061101Z:239d793f-5684-4632-b782-caaa156dcf93" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:00 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c94f515-198e-42cc-a5f4-f632335be9cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1b0ead3e-695e-445a-8b2e-7a2d853b0271" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14782" + ], + "x-ms-correlation-request-id": [ + "4d8492e2-192f-4895-8d3d-3448d974dac5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061109Z:4d8492e2-192f-4895-8d3d-3448d974dac5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:08 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da5108f9-6c98-4a25-b4bf-f6d6ee35fde6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b17472c2-6efc-427d-89e2-65c4a696844d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14807" + ], + "x-ms-correlation-request-id": [ + "2dbc5f92-db8d-4745-b6bc-b18f1de11918" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061035Z:2dbc5f92-db8d-4745-b6bc-b18f1de11918" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:34 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7505e13e-2f81-4a03-8545-6e48e52a06ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b78240cc-6331-4934-84bc-9632bc632a77" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14803" + ], + "x-ms-correlation-request-id": [ + "475e417d-d8b4-4a64-ba7e-fffc782aa9f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061039Z:475e417d-d8b4-4a64-ba7e-fffc782aa9f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d23b209-0e24-46e3-876f-2621be2e4ab2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b2598b41-64c4-4b1c-8da8-7010f3f3f7e6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14799" + ], + "x-ms-correlation-request-id": [ + "7b11d38c-f6b0-493b-9135-fff88e116a53" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061047Z:7b11d38c-f6b0-493b-9135-fff88e116a53" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8eb4095-a047-4e66-a4a9-2f69df98c18b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cf1d894a-868d-4322-a4a1-6241c0ec1f79" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14795" + ], + "x-ms-correlation-request-id": [ + "ba868977-ee6d-4a9c-88af-995dc3a2a575" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061050Z:ba868977-ee6d-4a9c-88af-995dc3a2a575" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cc56875-6138-4d81-98c2-a262709e4cff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4e88b5de-9e44-4041-a801-3b11589ac789" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14790" + ], + "x-ms-correlation-request-id": [ + "dc45e8a0-3911-4947-a319-2f6e0a3ef7f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061101Z:dc45e8a0-3911-4947-a319-2f6e0a3ef7f6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2e1d0eb-d7a9-45b3-bd0d-e281ffd573ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "20500656-7834-4de4-8a1a-ec746b10b2d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14781" + ], + "x-ms-correlation-request-id": [ + "870a01cb-79a9-4724-925f-7d4342b615db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061109Z:870a01cb-79a9-4724-925f-7d4342b615db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:09 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d030a4aa-5a12-41bc-96ca-418bb111b0ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec3f0c42-f054-4244-83e1-439742c025f6" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "14a75fb3-828f-4c9b-8917-f59fb0390fe5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061035Z:14a75fb3-828f-4c9b-8917-f59fb0390fe5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0ad59d6-d068-47ba-a6ea-ed701d00e418" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fab87650-bad3-4f77-9f67-0455ffbf1e85" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "f377c0b6-ed48-4dc6-b0e0-ab84bcbfa668" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061039Z:f377c0b6-ed48-4dc6-b0e0-ab84bcbfa668" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af875a88-5062-4a15-bff1-711ff60e830b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1ad78e30-901e-4641-a48e-6cecf6b3d785" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "48064a31-3a14-4a19-b25c-3febcbac7fa8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061047Z:48064a31-3a14-4a19-b25c-3febcbac7fa8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:47 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b37c03ac-bea1-4776-bd4c-ff4c80b165ab" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "62af4da6-d3f9-4d4e-947c-2c5285a04403" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "0147273e-9a8f-46f0-8ab5-5e3418e83f43" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061050Z:0147273e-9a8f-46f0-8ab5-5e3418e83f43" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:50 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea58e16e-1976-4854-8ed5-5e393d28b0ce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87268755-76fb-43fc-9c9c-9dee74e16f27" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "fb2ff5b7-c990-4612-8807-0e30d19d9156" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061101Z:fb2ff5b7-c990-4612-8807-0e30d19d9156" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "837f9b2c-8ee2-4e2d-8454-e88bd713d1d4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "308" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b21db308-832f-410a-b127-560376802150" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "2e18cb0e-db53-4354-a70d-bf09f556e25d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061110Z:2e18cb0e-db53-4354-a70d-bf09f556e25d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:09 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "478c00f3-2fce-42bc-9fc3-38084ffdb5bd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "241caf19-18be-48f1-8467-7120737d079f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "9f7ac720-0431-4227-8a28-27552821f53d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061035Z:9f7ac720-0431-4227-8a28-27552821f53d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:35 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89dbc6b8-85bd-4137-bd41-232a0ce6d500" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ad10db6-bce2-4202-9daa-68e102513814" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "b116602f-ffc6-4d19-8fa4-9f9f5505a693" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061039Z:b116602f-ffc6-4d19-8fa4-9f9f5505a693" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f900b821-c672-4408-a710-a81d0d36b05f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "228cd9b6-888b-42fd-a9a2-b8ab20e5ecab" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "f5bb551f-f7f3-4a02-b677-69abe2a54aa7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061048Z:f5bb551f-f7f3-4a02-b677-69abe2a54aa7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf45b359-c690-41e7-9242-28250e5eb9e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b6c42c6-8a40-457e-8f0e-a428e9060f94" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "adb76536-9710-429a-8e0b-6f51a2bbc794" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061051Z:adb76536-9710-429a-8e0b-6f51a2bbc794" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:51 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "acf7feb3-cd61-4c28-808e-d5f118391826" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bebbf051-a78a-417a-87c3-192b3909d799" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "ed0e5a3e-99b3-4ae6-aac8-7fd63ae1ec24" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061102Z:ed0e5a3e-99b3-4ae6-aac8-7fd63ae1ec24" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:01 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c46b283e-6014-4a2a-b17c-db4d721f9058" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "282" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9af7b0b2-cb98-47e0-b5a3-37f6b4fe92a1" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "495b235b-30ce-46e9-9220-a8ca67bb3217" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061110Z:495b235b-30ce-46e9-9220-a8ca67bb3217" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:09 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b77156e-6071-4151-a678-7afdb668a5d4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5f64ab14-69b0-4998-837f-8c907818bb6b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14806" + ], + "x-ms-correlation-request-id": [ + "62fd2ce5-6b03-4e64-a744-96a44e1e6813" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061037Z:62fd2ce5-6b03-4e64-a744-96a44e1e6813" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:37 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ec8dd87-8299-40f0-a7fa-46f3e977f702" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bc7c159d-4f9c-46fa-8141-97998ff93f2d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14802" + ], + "x-ms-correlation-request-id": [ + "43ccceae-94e6-4b32-95bc-3916e8d4e203" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061042Z:43ccceae-94e6-4b32-95bc-3916e8d4e203" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:41 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1af10d1b-792c-49e4-bc1d-6420fae350a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86191c61-2429-4b52-849f-e0e3f2140489" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14798" + ], + "x-ms-correlation-request-id": [ + "3f480967-6a21-42d2-99c8-c75a217c19e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061048Z:3f480967-6a21-42d2-99c8-c75a217c19e7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:48 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbc64c32-07b3-4203-bacf-97760e1ff970" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "de6c00f0-adcc-4e69-86e1-ec6f77b7a1bc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14789" + ], + "x-ms-correlation-request-id": [ + "6383d565-2fd2-425a-b5ae-344423eb277f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061102Z:6383d565-2fd2-425a-b5ae-344423eb277f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:02 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdea0743-57eb-4401-b31a-ad67e29162f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5a6f7ae2-ddfa-4639-8967-14d6fc113bc6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14784" + ], + "x-ms-correlation-request-id": [ + "ef5cbb89-ee2b-4ff3-abdb-ee595e36c77d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061107Z:ef5cbb89-ee2b-4ff3-abdb-ee595e36c77d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:07 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa945771-ea83-4e07-88bd-e90277c4b263" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b0640291-a2f7-4ed5-8e28-318fc550e77c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14780" + ], + "x-ms-correlation-request-id": [ + "163710fc-133d-40ef-b360-ef64a4e35a5b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061110Z:163710fc-133d-40ef-b360-ef64a4e35a5b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:10 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c601476f-ebd0-49d9-bc08-ee26ac67a91b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f8ba3ce-e237-41ad-99f5-c53500d57acd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14805" + ], + "x-ms-correlation-request-id": [ + "8e1a8d9b-5c26-4380-b0ef-ebab66919000" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061037Z:8e1a8d9b-5c26-4380-b0ef-ebab66919000" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad3b26c5-c438-413a-90fb-716fa6c30eee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5c061fc7-3b3b-4da1-abc6-b89aba618bbb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14801" + ], + "x-ms-correlation-request-id": [ + "8a9a162a-79ef-4327-ac8c-df93f384b08b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061042Z:8a9a162a-79ef-4327-ac8c-df93f384b08b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85af49cb-3a1f-4454-92d1-81d5f34eff1b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6ce4329d-fafe-4d76-8d58-53a92fb6a2b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14797" + ], + "x-ms-correlation-request-id": [ + "d0ea34ca-2404-489f-a238-6d03d3c32820" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061049Z:d0ea34ca-2404-489f-a238-6d03d3c32820" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:48 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f974b397-48b1-49a3-81fa-798495628b49" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0e3a1dc-b714-4db2-97e0-2a7d410474a9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14788" + ], + "x-ms-correlation-request-id": [ + "f1884a57-8799-45de-8233-cdcb8f78f9e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061102Z:f1884a57-8799-45de-8233-cdcb8f78f9e8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e723622d-1b56-409e-9f9f-147316273690" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4e8be77e-c350-477b-b183-95119a849f45" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14783" + ], + "x-ms-correlation-request-id": [ + "fc695ae3-b088-433f-a428-0b9877e51e33" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061108Z:fc695ae3-b088-433f-a428-0b9877e51e33" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:07 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad599edc-65fd-4826-a0e2-9fd2ca66c70e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/web\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"5.4\",\r\n \"pythonVersion\": \"\",\r\n \"requestTracingEnabled\": false,\r\n \"requestTracingExpirationTime\": null,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$webappsslbindingtest__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": false,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"managedPipelineMode\": 0,\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": false,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": 1,\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 \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"httpApiPrefixPath\": 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 \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountOAuthScopes\": null\r\n },\r\n \"cors\": null,\r\n \"apiDefinition\": null,\r\n \"autoSwapSlotName\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2237" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c8205e2-a847-4457-bd4f-bca48a579e52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14779" + ], + "x-ms-correlation-request-id": [ + "64a3c0b3-8b73-44ba-a828-c96789702d94" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061110Z:64a3c0b3-8b73-44ba-a828-c96789702d94" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:10 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44c8ec31-7187-427b-9e9f-649c5906cab0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7890c299-8883-426b-929a-f00a79f6c92a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "bc4a0bd8-d851-4d8d-b0b2-e19e53995b3b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061038Z:bc4a0bd8-d851-4d8d-b0b2-e19e53995b3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21b0d336-30fe-4944-94b3-b0b2d6c6ae2b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d53fe151-980b-4543-ae62-babba4290f89" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "695cae1f-a88e-45f8-b391-2804ab341488" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061043Z:695cae1f-a88e-45f8-b391-2804ab341488" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5a70114-f48b-42e2-819f-d2e744847829" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "08e2e342-4bb6-4e5a-a59e-7ef4ddbfd656" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "71def1ba-e961-49f1-8e91-8fb3c859ce88" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061049Z:71def1ba-e961-49f1-8e91-8fb3c859ce88" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99ef542c-5c0c-4a96-abc7-19277a5b5e9d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a4e6c47-0fe3-428e-bbcd-3af4e6fb9817" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "99ce9b40-0c2c-4b4b-983a-4966dcad767a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061102Z:99ce9b40-0c2c-4b4b-983a-4966dcad767a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2a7a8d2-aa1e-4a60-b36b-b485408f5578" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c2e76620-98b6-4a49-b5f3-c7a9f0b29c29" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "7829559b-9d99-4760-98d4-66c34ee1ef7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061108Z:7829559b-9d99-4760-98d4-66c34ee1ef7c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "205f788f-48a9-4f4c-9d2c-f63da40fc271" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"WEBSITE_NODE_DEFAULT_VERSION\": \"4.1.2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b211a402-15d6-4cd8-a48b-0e03a3bd4546" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "47e9329c-3b4e-4198-994d-84a9cbe54e76" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061111Z:47e9329c-3b4e-4198-994d-84a9cbe54e76" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:10 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d357dda4-554d-4ba2-b9a2-1bfa67d6149d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "938dd417-6ce3-4fb3-aa1b-457d57a52730" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a90488dc-569d-4bce-9016-11c60e130c3b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061038Z:a90488dc-569d-4bce-9016-11c60e130c3b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:37 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e987d97b-a9fe-40e5-9fb2-70f4028c03c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "978cf37d-9316-4487-b2f8-c79d665b3cb7" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "88b6911d-9503-4363-8cb8-84d3b8877f2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061043Z:88b6911d-9503-4363-8cb8-84d3b8877f2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:42 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb72db30-38e6-4ae5-804a-7d6f8f0a3b48" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "015427b6-4056-439c-a356-2d614f673217" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "8a854a71-2a75-4241-866b-36f25d7269f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061049Z:8a854a71-2a75-4241-866b-36f25d7269f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:49 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57acff4e-f270-4255-8038-18e70ad35f13" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7e73d331-905a-416d-a3fc-6519b605b084" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "e37b8c9d-0e96-48cd-9177-5c747630a241" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061103Z:e37b8c9d-0e96-48cd-9177-5c747630a241" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:02 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5001ae85-ccbd-4d57-b20f-5c87bf59307d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a79d1532-8218-40db-853d-72d4eed75221" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "cbbf073e-940f-4886-be30-4d22d87db7cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061109Z:cbbf073e-940f-4886-be30-4d22d87db7cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:08 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a510ae7-206b-4231-bff3-3a56109bb411" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {}\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "297" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d0b7a9dd-c727-4f96-a1d6-a8b57e7384fe" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "7f312771-73eb-4bc4-b98f-da6b7a330668" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061111Z:7f312771-73eb-4bc4-b98f-da6b7a330668" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:10 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "285" + ], + "x-ms-client-request-id": [ + "870849f0-90f9-4feb-9c48-4aa4eba6c195" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3440" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bbcb786b-e131-4bc0-accb-56e7a63cc8fd" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c7af253e-176d-489d-9887-05112d2b83fc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061042Z:c7af253e-176d-489d-9887-05112d2b83fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:41 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "a5d18c4b-ebef-41b9-b666-523c4314ba7b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest\",\r\n \"name\": \"webappsslbindingtest\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"api.webappsslbindingtests.com\",\r\n \"webappsslbindingtests.com\",\r\n \"www.webappsslbindingtests.com\",\r\n \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"api.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n },\r\n {\r\n \"name\": \"webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"www.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3402" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94eac547-879e-4d7c-b60c-3f021dc01f8f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "697cd3cc-782c-4a36-9e03-1de5e7981a54" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061054Z:697cd3cc-782c-4a36-9e03-1de5e7981a54" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:54 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "x-ms-client-request-id": [ + "39c1bc16-e6bd-4585-8dca-736454987111" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 1,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3016" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "18e82966-9eff-42d3-8f0d-762f70d6b031" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "8e660e45-b3f4-4c44-8beb-116e79085a7a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061045Z:8e660e45-b3f4-4c44-8beb-116e79085a7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:44 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "221" + ], + "x-ms-client-request-id": [ + "5e3b2025-738d-491a-968a-a0387e40d010" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/slots/testslot\",\r\n \"name\": \"webappsslbindingtest/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"name\": \"webappsslbindingtest(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-bay-0a93c57e.api.p.azurewebsites.windows.net:454/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/webspaces/appdemorg-asedemoappseWestUSwebspace/sites/webappsslbindingtest\",\r\n \"repositorySiteName\": \"webappsslbindingtest\",\r\n \"owner\": null,\r\n \"usageState\": 0,\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.webappsslbindingtests.com\",\r\n \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": 0,\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.webappsslbindingtests.com\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 0\r\n },\r\n {\r\n \"name\": \"webappsslbindingtest-testslot.scm.asedemo.p.azurewebsites.net\",\r\n \"sslState\": 0,\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": 0,\r\n \"hostType\": 1\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/serverfarms/travel_production_plan\",\r\n \"lastModifiedTimeUtc\": \"2015-12-23T23:23:20.69\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": 0,\r\n \"runtimeAvailabilityState\": 0,\r\n \"siteConfig\": null,\r\n \"deploymentId\": \"webappsslbindingtest__b951\",\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Premium\",\r\n \"premiumAppDeployed\": null,\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": \"asedemo\",\r\n \"hostingEnvironmentProfile\": {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"microService\": \"WebSites\",\r\n \"gatewaySiteName\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"kind\": null,\r\n \"outboundIpAddresses\": \"104.45.218.185\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2978" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b5bbf69-e276-4752-a881-7c594835029f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "2fb732ec-30f3-4786-b730-80ba577af3f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061104Z:2fb732ec-30f3-4786-b730-80ba577af3f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:04 GMT" + ], + "ETag": [ + "\"1D13DD8E94E2D20\"" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14890" + ], + "x-ms-request-id": [ + "0ea231bd-3fa7-4837-ba89-a3d71dbe5ccd" + ], + "x-ms-correlation-request-id": [ + "0ea231bd-3fa7-4837-ba89-a3d71dbe5ccd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061055Z:0ea231bd-3fa7-4837-ba89-a3d71dbe5ccd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:55 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"name\": \"6BD61F8B1250FF73790CB997A763985502951DC3\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"name\": \"B75CBF7439274AE4135E3E69CE6A19693F68D40F\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1983" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14889" + ], + "x-ms-request-id": [ + "a17b7b80-7727-4b0a-8b01-9473e21822b5" + ], + "x-ms-correlation-request-id": [ + "a17b7b80-7727-4b0a-8b01-9473e21822b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061104Z:a17b7b80-7727-4b0a-8b01-9473e21822b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:04 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "da3f754f-1fe6-4be9-97dd-424524d28539" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "25921484-6050-4fd5-aa71-9f59edc28b9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061056Z:25921484-6050-4fd5-aa71-9f59edc28b9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQwRDY2MDBCMEI4NzQwQzQxQkE0QjNEMTNCOTY3RERFRjZFRDE5MThfYXNlZGVtb19XZXN0JTIwVVNfd2ViYXBwc3NsYmluZGluZ3JiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb7341a7-ca97-48fa-8bf0-b9c5a0588369" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "22fa6558-d118-41ea-b7ad-3ad4671979a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061105Z:22fa6558-d118-41ea-b7ad-3ad4671979a7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:04 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b94a0e9e-a79c-4084-b506-b76cf6c84604" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "b4d33526-6531-40b8-a1c0-323aa223394e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061056Z:b4d33526-6531-40b8-a1c0-323aa223394e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vJTIzV2VzdCUyMFVTJTIzYXBwZGVtb3JnLWFzZWRlbW9hcHBzZVdlc3RVU3dlYnNwYWNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9wZXJtaXNzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e5a794c0-9991-4ec1-a469-8706b79367a4" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "eea4809a-e85b-401e-9492-fdc97607c79e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061105Z:eea4809a-e85b-401e-9492-fdc97607c79e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:04 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6bec9640-686c-42dc-8b21-48ec3b271bfe" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "282ba3d2-4a45-4d82-89e4-22f626a4a286" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061056Z:282ba3d2-4a45-4d82-89e4-22f626a4a286" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/appdemorg/providers/Microsoft.Web//certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzQ4N0Q4QTI4QThFQkNEM0U1QjgwMjc3NDY0MTBCOTVCMzdDRDRBMjIlMjNhc2VkZW1vZXUlMjNOb3J0aCUyMEV1cm9wZSUyM2FwcGRlbW9yZy1hc2VkZW1vZXVhcHBzZU5vcnRoRXVyb3Bld2Vic3BhY2UvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab71583f-85ad-4198-bfb6-d2fa41e7b7c6" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "cc0f4961-715f-418c-ac4b-408d86e271b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061105Z:cc0f4961-715f-418c-ac4b-408d86e271b5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fbe71467-5ac2-4acd-8ee9-9bad62c6df2e" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "562ba891-a1d0-4584-879c-0c0f6ee806f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061056Z:562ba891-a1d0-4584-879c-0c0f6ee806f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-NorthEurope/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViLy9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c8e545f5-13cc-4c88-8dea-84cd64a3178d" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "3b04b911-1b24-422a-a1c0-b345504fe9d7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061105Z:3b04b911-1b24-422a-a1c0-b345504fe9d7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5e25572-fa46-48bb-9e33-be86c26e765d" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "1fdecb43-004b-427f-a1c8-a720f4a90172" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061056Z:1fdecb43-004b-427f-a1c8-a720f4a90172" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/6BD61F8B1250FF73790CB997A763985502951DC3/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzLzZCRDYxRjhCMTI1MEZGNzM3OTBDQjk5N0E3NjM5ODU1MDI5NTFEQzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ea5e371a-2ebf-4a27-9830-f28cc2fc7338" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "0b3d6198-be63-4305-a1e5-516af95fd818" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061105Z:0b3d6198-be63-4305-a1e5-516af95fd818" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b261670a-5bdb-487b-acbd-234e4a81c8d1" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "566a635f-3259-4216-ab68-a8fc04e4bf29" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061056Z:566a635f-3259-4216-ab68-a8fc04e4bf29" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:56 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourcegroups/Default-Web-WestUS/providers/Microsoft.Web//certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F/providers/Microsoft.Authorization/permissions?api-version=2015-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi8vY2VydGlmaWNhdGVzL0I3NUNCRjc0MzkyNzRBRTQxMzVFM0U2OUNFNkExOTY5M0Y2OEQ0MEYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "61" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ea2398eb-899d-43d2-a578-b8cb34a01133" + ], + "x-ms-gateway-service-instanceid": [ + "PASFE_IN_3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "c1c9ecd8-0dd1-48e2-9baa-3cd494c9398d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061105Z:c1c9ecd8-0dd1-48e2-9baa-3cd494c9398d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5f2ee3f-8e90-4884-9023-c77a6345fb79" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aee4d061-a940-48d2-94fe-db9d148487ac" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14794" + ], + "x-ms-correlation-request-id": [ + "6cb026d7-f9b4-4f62-ad47-ebe8ad7021d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061058Z:6cb026d7-f9b4-4f62-ad47-ebe8ad7021d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:57 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f41e51db-ad5a-40fb-9f81-d675d8ac116d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"name\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West US_webappsslbindingrb\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.webappsslbindingtests.com\",\r\n \"hostNames\": [\r\n \"*.webappsslbindingtests.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"*.webappsslbindingtests.com\",\r\n \"issueDate\": \"2015-12-06T15:40:49-08:00\",\r\n \"expirationDate\": \"2039-12-31T15:59:59-08:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1135" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44a86fd7-f1eb-403c-b38a-d2919823d1e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14787" + ], + "x-ms-correlation-request-id": [ + "28f30a4f-a98b-4526-8228-6ce44c2f1710" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061105Z:28f30a4f-a98b-4526-8228-6ce44c2f1710" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d50e6149-37d2-476b-b817-fabd044bd116" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9832d7fc-1b2f-45cf-8ef2-cb3ecf3268d7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14793" + ], + "x-ms-correlation-request-id": [ + "27cfa8ea-92f5-40d3-8df0-e9eac117294a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061058Z:27cfa8ea-92f5-40d3-8df0-e9eac117294a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:58 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8cadc62-c054-40d0-968c-12887ef0a9d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemo#West US#appdemorg-asedemoappseWestUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemo\",\r\n \"name\": \"asedemo\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"webSpace\": \"appdemorg-asedemoappseWestUSwebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1159" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "09ecf94c-c430-445d-8a39-341843d82977" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14786" + ], + "x-ms-correlation-request-id": [ + "ade56af8-bee2-4def-a378-afecfa8d02ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061106Z:ade56af8-bee2-4def-a378-afecfa8d02ca" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:05 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0121e4dc-0977-42c1-8201-6b51b1ea84cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ace601d-4fcc-4ead-8f92-aa9d4b7e64b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14792" + ], + "x-ms-correlation-request-id": [ + "0926dcf6-c870-4705-add4-5f8ffaef13fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061100Z:0926dcf6-c870-4705-add4-5f8ffaef13fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:10:59 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "452486e8-50db-4352-8a40-49366838cf54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"name\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22#asedemoeu#North Europe#appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"North Europe\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.contosoweb.net,contosoweb.net\",\r\n \"hostNames\": [\r\n \"*.contosoweb.net\",\r\n \"contosoweb.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"COMODO RSA Domain Validation Secure Server CA\",\r\n \"issueDate\": \"2015-10-07T17:00:00-07:00\",\r\n \"expirationDate\": \"2016-10-07T16:59:59-07:00\",\r\n \"password\": null,\r\n \"thumbprint\": \"487D8A28A8EBCD3E5B8027746410B95B37CD4A22\",\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/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/hostingEnvironments/asedemoeu\",\r\n \"name\": \"asedemoeu\",\r\n \"type\": \"Microsoft.Web/hostingEnvironments\"\r\n },\r\n \"keyVaultId\": \"\",\r\n \"keyVaultSecretName\": \"\",\r\n \"webSpace\": \"appdemorg-asedemoeuappseNorthEuropewebspace\",\r\n \"tags\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1243" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "644e8dcc-c501-4cf9-be73-fe02c4c56772" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14785" + ], + "x-ms-correlation-request-id": [ + "228d2a92-54de-420c-9c95-5ca00190a937" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061106Z:228d2a92-54de-420c-9c95-5ca00190a937" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8b91218-2957-413a-bc42-d2972b65b3aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "b84f4411-84e6-4d69-969a-0e286c20d82d" + ], + "x-ms-correlation-request-id": [ + "b84f4411-84e6-4d69-969a-0e286c20d82d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061100Z:b84f4411-84e6-4d69-969a-0e286c20d82d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:00 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/subscriptions/ef90e930-9d7f-4a60-8a99-748e0eea69de/resourceGroups/appdemorg/providers/Microsoft.Web/certificates/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9fd8c120-c0bc-4ea4-bdb1-bcb477a231f3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.2" + ], + "Accept": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 40D6600B0B8740C41BA4B3D13B967DDEF6ED1918 because it is used for hostname api.webappsslbindingtests.com.\",\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"40D6600B0B8740C41BA4B3D13B967DDEF6ED1918\",\r\n \"api.webappsslbindingtests.com\"\r\n ],\r\n \"InnerErrors\": null\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "830" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "efe04a89-8f71-4dd7-a59c-13835edeee10" + ], + "x-ms-correlation-request-id": [ + "efe04a89-8f71-4dd7-a59c-13835edeee10" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20151230T061107Z:efe04a89-8f71-4dd7-a59c-13835edeee10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 30 Dec 2015 06:11:06 GMT" + ], + "Server": [ + "Microsoft-IIS/8.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 409 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "ef90e930-9d7f-4a60-8a99-748e0eea69de" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config index 679ff8f77445..b2ffec7baaf2 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config @@ -7,7 +7,7 @@ - + diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlan.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlan.cs index 8f2c16ef4692..de39ec30c370 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlan.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlan.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.AppServicePlans /// /// this commandlet will let you Get an Azure App Service Plan using ARM APIs /// - [Cmdlet(VerbsCommon.Get, "AzureRMAppServicePlan"), OutputType(typeof(ServerFarmWithRichSku), typeof(ServerFarmCollection))] + [Cmdlet(VerbsCommon.Get, "AzureRmAppServicePlan"), OutputType(typeof(ServerFarmWithRichSku), typeof(ServerFarmCollection))] public class GetAppServicePlanCmdlet : WebAppBaseClientCmdLet { private const string ParameterSet1 = "S1"; diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs index 052975385f71..990709550744 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/GetAzureAppServicePlanMetrics.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you get Azure servce plan metrics /// - [Cmdlet(VerbsCommon.Get, "AzureRMAppServicePlanMetrics")] + [Cmdlet(VerbsCommon.Get, "AzureRmAppServicePlanMetrics")] public class GetAzureAppServicePlanMetricsCmdlet : AppServicePlanBaseCmdlet { [Parameter(Position = 2, Mandatory = true, HelpMessage = "Names of web app metrics")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/NewAzureAppServicePlan.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/NewAzureAppServicePlan.cs index 3d40ff4ce6e8..e488a6921d54 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/NewAzureAppServicePlan.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/NewAzureAppServicePlan.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.AppServicePlans /// /// this commandlet will let you create a new Azure App service Plan using ARM APIs /// - [Cmdlet(VerbsCommon.New, "AzureRMAppServicePlan"), OutputType(typeof(ServerFarmWithRichSku))] + [Cmdlet(VerbsCommon.New, "AzureRmAppServicePlan"), OutputType(typeof(ServerFarmWithRichSku))] public class NewAzureAppServicePlanCmdlet : AppServicePlanBaseCmdlet { [Parameter(Position = 2, Mandatory = true, HelpMessage = "The location of the app service plan.")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/SetAzureAppServicePlan.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/SetAzureAppServicePlan.cs index 814d0b80cfbc..5db131917aa7 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/SetAzureAppServicePlan.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/AppServicePlans/SetAzureAppServicePlan.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.AppServicePlans /// /// this commandlet will let you set Azure App Service Plan using ARM APIs /// - [Cmdlet(VerbsCommon.Set, "AzureRMAppServicePlan"), OutputType(typeof(ServerFarmWithRichSku))] + [Cmdlet(VerbsCommon.Set, "AzureRmAppServicePlan"), OutputType(typeof(ServerFarmWithRichSku))] public class SetAzureAppServicePlanCmdlet : AppServicePlanBaseCmdlet { [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the admin web app")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppCertificate.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppCertificate.cs new file mode 100644 index 000000000000..c35ccade88db --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppCertificate.cs @@ -0,0 +1,35 @@ +// 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 System.Management.Automation; +using Microsoft.Azure.Commands.WebApps.Models; +using Microsoft.Azure.Commands.WebApps.Utilities; + +namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps +{ + /// + /// this commandlet will let you get existing web app certificates using ARM APIs + /// + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppCertificate")] + public class GetAzureWebAppCertificate : WebAppBaseClientCmdLet + { + [Parameter(Position = 0, Mandatory = false, HelpMessage = "The name of the resource group.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(Position = 1, Mandatory = false, HelpMessage = "Thumbprint of the certificate that already exists in web space")] + [ValidateNotNullOrEmpty] + public string Thumbprint { get; set; } + + protected override void ProcessRecord() + { + WriteObject(CmdletHelpers.GetCertificates(this.ResourcesClient, this.WebsitesClient, ResourceGroupName, Thumbprint)); + } + } +} diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppSSLBinding.cs new file mode 100644 index 000000000000..166e957564e7 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppSSLBinding.cs @@ -0,0 +1,33 @@ +// 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 System.Management.Automation; + +using Microsoft.Azure.Commands.WebApps.Utilities; + +namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps +{ + /// + /// this commandlet will let you get an existing web app Ssl binding using ARM APIs + /// + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppSSLBinding")] + public class GetAzureWebAppSSLBinding : WebAppSSLBindingBaseCmdlet + { + [Parameter(Position = 3, Mandatory = false, HelpMessage = "The name of the host name.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + protected override void ProcessRecord() + { + base.ProcessRecord(); + var webapp = WebsitesClient.GetWebApp(resourceGroupName, webAppName, slot); + WriteObject(CmdletHelpers.GetHostNameSslStatesFromSiteResponse(webapp, Name)); + } + } +} diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs new file mode 100644 index 000000000000..6bf51202f3db --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs @@ -0,0 +1,178 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System; +using System.Management.Automation; +using System.Net; +using Microsoft.Azure.Commands.WebApps.Models; +using Microsoft.Azure.Management.WebSites.Models; + +using System.Security.Cryptography.X509Certificates; +using System.IO; +using Microsoft.Rest.Azure; +using Microsoft.Azure.Commands.WebApps.Utilities; + +namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps +{ + /// + /// this commandlet will let you create a new Azure Web app using ARM APIs + /// + [Cmdlet(VerbsCommon.New, "AzureRmWebAppSSLBinding")] + public class NewAzureWebAppSSLBinding : WebAppBaseClientCmdLet + { + const string CertNamePostFixSeparator = "_"; + const string ParameterSet1Name = "S1"; + const string ParameterSet2Name = "S2"; + const string ParameterSet3Name = "S3"; + const string ParameterSet4Name = "S4"; + + string resourceGroupName; + string webAppName; + string slot; + + [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.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(ParameterSetName = ParameterSet1Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")] + [Parameter(ParameterSetName = ParameterSet2Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")] + [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.")] + [ValidateNotNullOrEmpty] + public string Slot { get; set; } + + [Parameter(ParameterSetName = ParameterSet3Name, Position = 0, Mandatory = true, HelpMessage = "The web app object.", ValueFromPipeline = true)] + [Parameter(ParameterSetName = ParameterSet4Name, Position = 0, Mandatory = true, HelpMessage = "The web app object.", ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public Site WebApp { get; set; } + + [Parameter(Position = 3, Mandatory = true, HelpMessage = "The name of the host name.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Position = 4, Mandatory = false, HelpMessage = "Ssl state option. Use either 'SniEnabled' or 'IpBasedEnabled'. Default option is 'SniEnabled'.")] + [ValidateNotNullOrEmpty] + public SslState? SslState { get; set; } + + [Parameter(ParameterSetName = ParameterSet1Name, Position = 4, Mandatory = true, HelpMessage = "Certificate file path")] + [Parameter(ParameterSetName = ParameterSet3Name, Position = 4, Mandatory = true, HelpMessage = "Certificate file path")] + [ValidateNotNullOrEmpty] + public string CertificateFilePath { get; set; } + + [Parameter(ParameterSetName = ParameterSet1Name, Position = 5, Mandatory = true, HelpMessage = "Certificate password")] + [Parameter(ParameterSetName = ParameterSet3Name, Position = 5, Mandatory = true, HelpMessage = "Certificate password")] + [ValidateNotNullOrEmpty] + public string CertificatePassword { get; set; } + + [Parameter(ParameterSetName = ParameterSet2Name, Position = 6, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space")] + [Parameter(ParameterSetName = ParameterSet4Name, Position = 6, Mandatory = true, HelpMessage = "Thumbprint of the certificate that already exists in web space")] + [ValidateNotNullOrEmpty] + public string Thumbprint { get; set; } + + protected override void ProcessRecord() + { + if (ParameterSetName != ParameterSet1Name + && ParameterSetName != ParameterSet2Name + && ParameterSetName != ParameterSet3Name + && ParameterSetName != ParameterSet4Name) + { + throw new ValidationMetadataException("Please input web app and certificate."); + } + + if (ParameterSetName == ParameterSet3Name + || ParameterSetName == ParameterSet4Name) + { + CmdletHelpers.ExtractWebAppPropertiesFromWebApp(WebApp, out resourceGroupName, out webAppName, out slot); + } + else + { + resourceGroupName = ResourceGroupName; + webAppName = WebAppName; + slot = Slot; + } + + string thumbPrint = null; + var webapp = WebsitesClient.GetWebApp(resourceGroupName, webAppName, slot); + + switch (ParameterSetName) + { + case ParameterSet1Name: + case ParameterSet3Name: + var certificateBytes = File.ReadAllBytes(CertificateFilePath); + var certificateDetails = new X509Certificate2(certificateBytes, CertificatePassword); + + var certificateName = GenerateCertName(certificateDetails.Thumbprint, webapp.HostingEnvironmentProfile != null ? webapp.HostingEnvironmentProfile.Name : null , webapp.Location, resourceGroupName); + var certificate = new Certificate + { + PfxBlob = Convert.ToBase64String(certificateBytes), + Password = CertificatePassword, + Location = webapp.Location + }; + + if (webapp.HostingEnvironmentProfile != null) + { + certificate.HostingEnvironmentProfile = webapp.HostingEnvironmentProfile; + } + + var certificateResourceGroup = CmdletHelpers.GetResourceGroupFromResourceId(webapp.ServerFarmId); + try + { + WebsitesClient.CreateCertificate(certificateResourceGroup, certificateName, certificate); + } + catch (CloudException e) + { + // This exception is thrown when certificate already exists. Let's swallow it and continue. + if (e.Response.StatusCode != HttpStatusCode.Conflict) + { + throw; + } + } + + thumbPrint = certificateDetails.Thumbprint; + break; + + case ParameterSet2Name: + case ParameterSet4Name: + thumbPrint = Thumbprint; + break; + } + + WriteObject(CmdletHelpers.GetHostNameSslStatesFromSiteResponse( + WebsitesClient.UpdateHostNameSslState( + resourceGroupName, + webAppName, + slot, + webapp.Location, + Name, + SslState.HasValue ? SslState.Value : Management.WebSites.Models.SslState.SniEnabled, + thumbPrint), + Name)); + } + + private string GenerateCertName(string thumbPrint, string hostingEnv, string location, string resourceGroupName) + { + return string.Format("{0}{1}{2}", thumbPrint, CertNamePostFixSeparator, GenerateCertNamePostFix(hostingEnv, location, resourceGroupName)); + } + + private string GenerateCertNamePostFix(string hostingEnv, string location, string resourceGroupName) + { + return string.Format("{0}{1}{2}{3}{4}", string.IsNullOrEmpty(hostingEnv) ? "" : hostingEnv, CertNamePostFixSeparator, location, CertNamePostFixSeparator, resourceGroupName); + } + } +} diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs new file mode 100644 index 000000000000..2eae41eef674 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs @@ -0,0 +1,78 @@ +// 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 System.Linq; +using System.Management.Automation; +using System.Net; + +using Microsoft.Azure.Management.WebSites.Models; +using Microsoft.Rest.Azure; +using Microsoft.Azure.Commands.WebApps.Utilities; + +namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps +{ + /// + /// this commandlet will let you delete an existing Web app Ssl binding + /// + [Cmdlet(VerbsCommon.Remove, "AzureRmWebAppSSLBinding")] + public class RemoveAzureWebAppSSLBinding : WebAppSSLBindingBaseCmdlet + { + [Parameter(Position = 3, Mandatory = true, HelpMessage = "The name of the host name.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + [Parameter(Position = 4, Mandatory = false, HelpMessage = "Delete the certificate if it's the last certificate binding. The default selection is true")] + [ValidateNotNullOrEmpty] + public bool? DeleteCertificate { get; set; } + + [Parameter(Position = 5, Mandatory = false, HelpMessage = "Do not ask for confirmation.")] + public SwitchParameter Force { get; set; } + + protected override void ProcessRecord() + { + base.ProcessRecord(); + ConfirmAction( + Force.IsPresent, + string.Format(Properties.Resources.RemovingWebAppSSLBinding, Name), + Properties.Resources.RemoveWebAppSSLBinding, + Name, + () => + { + var webapp = WebsitesClient.GetWebApp(resourceGroupName, webAppName, slot); + var hostNameSslStates = CmdletHelpers.GetHostNameSslStatesFromSiteResponse(webapp, Name).ToList(); + if (hostNameSslStates.Count > 0) + { + var thumbprint = hostNameSslStates[0].Thumbprint; + WebsitesClient.UpdateHostNameSslState(resourceGroupName, webAppName, slot, webapp.Location, Name, SslState.Disabled, null); + + if (!DeleteCertificate.HasValue || DeleteCertificate.Value) + { + 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 (CloudException e) + { + // This exception is thrown when there are other Ssl bindings using this certificate. Let's swallow it and continue. + if (e.Response.StatusCode != HttpStatusCode.Conflict) + { + throw; + } + } + } + } + } + }); + } + } +} diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlot.cs index 6e11e8742282..1fcf024c4061 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlot.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you get a new Azure Web app slot using ARM APIs /// - [Cmdlet(VerbsCommon.Get, "AzureRMWebAppSlot")] + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppSlot")] public class GetAzureWebAppSlotCmdlet : WebAppBaseClientCmdLet { protected const string ParameterSet1Name = "S1"; diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs index c735abe07460..a4bc6f0ae4a5 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotMetrics.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you get Azure Web App slot metrics /// - [Cmdlet(VerbsCommon.Get, "AzureRMWebAppSlotMetrics")] + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppSlotMetrics")] public class GetAzureWebAppSlotMetricsCmdlet : WebAppSlotBaseCmdlet { [Parameter(Position = 3, Mandatory = true, HelpMessage = "Names of web app metrics")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotPublishingProfile.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotPublishingProfile.cs index 557afdd7e81f..2cace4f06ed9 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotPublishingProfile.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/GetAzureWebAppSlotPublishingProfile.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will get the publishing creds of the given Azure Web app slot using ARM APIs /// - [Cmdlet(VerbsCommon.Get, "AzureRMWebAppSlotPublishingProfile")] + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppSlotPublishingProfile")] public class GetAzureWebAppSlotPublishingProfileCmdlet : WebAppSlotBaseCmdlet { private const string DefaultFormat = "WebDeploy"; diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/NewAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/NewAzureWebAppSlot.cs index 9f868765ab65..a22a0c941f03 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/NewAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/NewAzureWebAppSlot.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you create a new Azure Web app slot using ARM APIs /// - [Cmdlet(VerbsCommon.New, "AzureRMWebAppSlot")] + [Cmdlet(VerbsCommon.New, "AzureRmWebAppSlot")] public class NewAzureWebAppSlotCmdlet : WebAppBaseClientCmdLet { [Parameter(Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RemoveAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RemoveAzureWebAppSlot.cs index 9aebd60acdc2..cc4603034ae9 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RemoveAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RemoveAzureWebAppSlot.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you delete an Azure web app slot /// - [Cmdlet(VerbsCommon.Remove, "AzureRMWebAppSlot"), OutputType(typeof(AzureOperationResponse))] + [Cmdlet(VerbsCommon.Remove, "AzureRmWebAppSlot"), OutputType(typeof(AzureOperationResponse))] public class RemoveAzureWebAppSlotCmdlet : WebAppSlotBaseCmdlet { //always delete the slots, diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/ResetAzureWebAppSlotPublishingProfile.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/ResetAzureWebAppSlotPublishingProfile.cs index e10a12ccba73..7f196e8f789b 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/ResetAzureWebAppSlotPublishingProfile.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/ResetAzureWebAppSlotPublishingProfile.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// This commandlet resets the publishing creds of the given Azure Web app slot /// - [Cmdlet(VerbsCommon.Reset, "AzureRMWebAppSlotPublishingProfile")] + [Cmdlet(VerbsCommon.Reset, "AzureRmWebAppSlotPublishingProfile")] public class ResetAzureWebAppPSlotublishingProfileCmdlet : WebAppSlotBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RestartAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RestartAzureWebAppSlot.cs index fa28b04f9799..dd119adb5369 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RestartAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/RestartAzureWebAppSlot.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you restart an Azure Web app slot /// - [Cmdlet(VerbsLifecycle.Restart, "AzureRMWebAppSlot")] + [Cmdlet(VerbsLifecycle.Restart, "AzureRmWebAppSlot")] public class RestartAzureWebAppSlotCmdlet : WebAppSlotBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs index e910a5ae2c46..cf342fc12db8 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you create a new Azure Web app using ARM APIs /// - [Cmdlet(VerbsCommon.Set, "AzureRMWebAppSlot")] + [Cmdlet(VerbsCommon.Set, "AzureRmWebAppSlot")] public class SetAzureWebAppSlotCmdlet : WebAppSlotBaseCmdlet { [Parameter(Position = 3, Mandatory = false, HelpMessage = "The name of the app service plan eg: Default1.")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StartAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StartAzureWebAppSlot.cs index fa7bdcab8f7d..fa72ed0ae222 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StartAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StartAzureWebAppSlot.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you Start an Azure Web app slot /// - [Cmdlet(VerbsLifecycle.Start, "AzureRMWebAppSlot")] + [Cmdlet(VerbsLifecycle.Start, "AzureRmWebAppSlot")] public class StartAzureWebAppSlotCmdlet : WebAppSlotBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StopAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StopAzureWebAppSlot.cs index 3c0fe00818ce..224c7a62a693 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StopAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/StopAzureWebAppSlot.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.DeploymentSlots /// /// this commandlet will let you stop an Azure Web app slot /// - [Cmdlet(VerbsLifecycle.Stop, "AzureRMWebAppSlot")] + [Cmdlet(VerbsLifecycle.Stop, "AzureRmWebAppSlot")] public class StopAzureWebAppSlotCmdlet : WebAppSlotBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebApp.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebApp.cs index f9d0cd212237..de830507906a 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebApp.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebApp.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you get a new Azure Websites using ARM APIs /// - [Cmdlet(VerbsCommon.Get, "AzureRMWebApp")] + [Cmdlet(VerbsCommon.Get, "AzureRmWebApp")] public class GetAzureWebAppCmdlet : WebAppBaseClientCmdLet { private const string ParameterSet1 = "S1"; diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs index 6e7f797bd058..85c75018f0ef 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppMetrics.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you get Azure Web App metrics /// - [Cmdlet(VerbsCommon.Get, "AzureRMWebAppMetrics")] + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppMetrics")] public class GetAzureWebAppMetricsCmdlet : WebAppBaseCmdlet { [Parameter(Position = 2, Mandatory = true, HelpMessage = "Names of web app metrics")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppPublishingProfile.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppPublishingProfile.cs index 3fbfeb4804c8..464710d3cade 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppPublishingProfile.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebAppPublishingProfile.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will get the publishing creds of the given Azure Web app using ARM APIs /// - [Cmdlet(VerbsCommon.Get, "AzureRMWebAppPublishingProfile")] + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppPublishingProfile")] public class GetAzureWebAppPublishingProfileCmdlet : WebAppBaseCmdlet { private const string DefaultFormat = "WebDeploy"; diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/RemoveAzureWebApp.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/RemoveAzureWebApp.cs index 404860859887..6b452073cc25 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/RemoveAzureWebApp.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/RemoveAzureWebApp.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you delete an Azure web app /// - [Cmdlet(VerbsCommon.Remove, "AzureRMWebApp")] + [Cmdlet(VerbsCommon.Remove, "AzureRmWebApp")] public class RemoveAzureWebAppCmdlet : WebAppBaseCmdlet { diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/ResetAzureWebAppPublishingProfile.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/ResetAzureWebAppPublishingProfile.cs index cd22c2f2e140..eb2b83604530 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/ResetAzureWebAppPublishingProfile.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/ResetAzureWebAppPublishingProfile.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// This commandlet resets the publishing creds of the given Azure Web app /// - [Cmdlet(VerbsCommon.Reset, "AzureRMWebAppPublishingProfile")] + [Cmdlet(VerbsCommon.Reset, "AzureRmWebAppPublishingProfile")] public class ResetAzureWebAppPublishingProfileCmdlet : WebAppBaseCmdlet { public override void ExecuteCmdlet() diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs index a2e6bf6d0ec6..0067d279da26 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs @@ -30,7 +30,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you create a new Azure Web app using ARM APIs /// - [Cmdlet(VerbsCommon.Set, "AzureRMWebApp")] + [Cmdlet(VerbsCommon.Set, "AzureRmWebApp")] public class SetAzureWebAppCmdlet : WebAppBaseCmdlet { [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the app service plan eg: Default1.")] diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index 538a37ea6ddb..dca64dd0e838 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -74,8 +74,8 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll True - - ..\..\..\packages\Microsoft.Azure.Management.Websites.1.0.0-preview\lib\net45\Microsoft.Azure.Management.Websites.dll + + ..\..\..\packages\Microsoft.Azure.Management.Websites.1.0.2-preview\lib\net45\Microsoft.Azure.Management.Websites.dll True @@ -143,6 +143,10 @@ + + + + @@ -171,6 +175,7 @@ + @@ -215,8 +220,6 @@ Commands.Resources - - - + \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites/Models.WebApp/WebAppSSLBindingBaseCmdlet.cs b/src/ResourceManager/Websites/Commands.Websites/Models.WebApp/WebAppSSLBindingBaseCmdlet.cs new file mode 100644 index 000000000000..2b16f7c5b531 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Models.WebApp/WebAppSSLBindingBaseCmdlet.cs @@ -0,0 +1,68 @@ +// ---------------------------------------------------------------------------------- +// +// 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 System.Management.Automation; + +using Microsoft.Azure.Commands.WebApps.Models; +using Microsoft.Azure.Commands.WebApps.Utilities; +using Microsoft.Azure.Management.WebSites.Models; + +namespace Microsoft.Azure.Commands.WebApps +{ + public abstract class WebAppSSLBindingBaseCmdlet : WebAppBaseClientCmdLet + { + protected const string ParameterSet1Name = "S1"; + protected const string ParameterSet2Name = "S2"; + + protected string resourceGroupName; + protected string webAppName; + protected string slot; + + [Parameter(ParameterSetName = ParameterSet1Name, Position = 0, Mandatory = true, HelpMessage = "The name of the resource group.")] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter(ParameterSetName = ParameterSet1Name, Position = 1, Mandatory = true, HelpMessage = "The name of the web app.")] + [ValidateNotNullOrEmpty] + public string WebAppName { get; set; } + + [Parameter(ParameterSetName = ParameterSet1Name, Position = 2, Mandatory = false, HelpMessage = "The name of the web app slot.")] + [ValidateNotNullOrEmpty] + public string Slot { get; set; } + + [Parameter(ParameterSetName = ParameterSet2Name, Position = 0, Mandatory = true, HelpMessage = "The web app object.", ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public Site WebApp { get; set; } + + protected override void ProcessRecord() + { + if (ParameterSetName != ParameterSet1Name + && ParameterSetName != ParameterSet2Name) + { + throw new ValidationMetadataException("Please input web app and certificate."); + } + + if (ParameterSetName == ParameterSet2Name) + { + CmdletHelpers.ExtractWebAppPropertiesFromWebApp(WebApp, out resourceGroupName, out webAppName, out slot); + } + else + { + resourceGroupName = ResourceGroupName; + webAppName = WebAppName; + slot = Slot; + } + } + } +} diff --git a/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.Designer.cs b/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.Designer.cs index a3b52a3559dc..cd265ced1722 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34209 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -78,6 +78,15 @@ internal static string RemoveWebappSlotWarning { } } + /// + /// Looks up a localized string similar to Removing web app ssl binding. + /// + internal static string RemoveWebAppSSLBinding { + get { + return ResourceManager.GetString("RemoveWebAppSSLBinding", resourceCulture); + } + } + /// /// Looks up a localized string similar to Removing web app. /// @@ -105,6 +114,15 @@ internal static string RemovingAppServicePlan { } } + /// + /// Looks up a localized string similar to Are you sure you want to remove the web app ssl binding for hostname '{0}'. + /// + internal static string RemovingWebAppSSLBinding { + get { + return ResourceManager.GetString("RemovingWebAppSSLBinding", resourceCulture); + } + } + /// /// Looks up a localized string similar to Are you sure you want to remove web app '{0}'. /// diff --git a/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.resx b/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.resx index 148922f5ebad..b57d752e571d 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.resx +++ b/src/ResourceManager/Websites/Commands.Websites/Properties/Resources.resx @@ -135,4 +135,10 @@ Are you sure you want to remove the web app slot "{0}({1})" + + Removing web app ssl binding + + + Are you sure you want to remove the web app ssl binding for hostname '{0}' + \ No newline at end of file diff --git a/src/ResourceManager/Websites/Commands.Websites/Utilities/CmdletHelpers.cs b/src/ResourceManager/Websites/Commands.Websites/Utilities/CmdletHelpers.cs index 83de6fb43aca..5fb4e6017fc1 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Utilities/CmdletHelpers.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Utilities/CmdletHelpers.cs @@ -4,6 +4,7 @@ using System.Linq; using System.Text.RegularExpressions; using Microsoft.Azure.Management.WebSites.Models; +using Microsoft.Azure.Commands.Resources.Models; namespace Microsoft.Azure.Commands.WebApps.Utilities { @@ -206,5 +207,66 @@ internal static bool TryParseAppAndSlotNames(string name, out string webAppName, return false; } + + internal static HostNameSslState[] GetHostNameSslStatesFromSiteResponse(Site site, string hostName = null) + { + var hostNameSslState = new HostNameSslState[0]; + if (site.HostNameSslStates != null) + { + hostNameSslState = site.HostNameSslStates.Where(h => h.SslState.HasValue && h.SslState.Value != SslState.Disabled).ToArray(); + if (!string.IsNullOrEmpty(hostName)) + { + hostNameSslState = hostNameSslState.Where(h => string.Equals(h.Name, hostName)).ToArray(); + } + } + return hostNameSslState; + } + + internal static string GetResourceGroupFromResourceId(string resourceId) + { + return new ResourceIdentifier(resourceId).ResourceGroupName; + } + + internal static void ExtractWebAppPropertiesFromWebApp(Site webapp, out string resourceGroupName, out string webAppName, out string slot) + { + resourceGroupName = GetResourceGroupFromResourceId(webapp.Id); + + string webAppNameTemp, slotNameTemp; + if (TryParseAppAndSlotNames(webapp.SiteName, out webAppNameTemp, out slotNameTemp)) + { + webAppName = webAppNameTemp; + slot = slotNameTemp; + } + else + { + webAppName = webapp.Name; + slot = null; + } + } + + internal static Certificate[] GetCertificates(ResourcesClient resourceClient, WebsitesClient websitesClient, string resourceGroupName, string thumbPrint) + { + var certificateResources = resourceClient.FilterPSResources(new BasePSResourceParameters() + { + ResourceType = "Microsoft.Web/Certificates" + }).ToArray(); + + if (!string.IsNullOrEmpty(resourceGroupName)) + { + certificateResources = certificateResources.Where(c => string.Equals(c.ResourceGroupName, resourceGroupName, StringComparison.OrdinalIgnoreCase)).ToArray(); + } + + var certificates = + certificateResources.Select( + certificateResource => + websitesClient.GetCertificate(certificateResource.ResourceGroupName, certificateResource.Name)); + + if (!string.IsNullOrEmpty(thumbPrint)) + { + certificates = certificates.Where(c => string.Equals(c.Thumbprint, thumbPrint, StringComparison.OrdinalIgnoreCase)).ToList(); + } + + return certificates.ToArray(); + } } } diff --git a/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs b/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs index b555df2a41dd..47b725354200 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Utilities/WebsitesClient.cs @@ -365,6 +365,56 @@ private void GetWebAppConfiguration(string resourceGroupName, string webSiteName } } + public Certificate CreateCertificate(string resourceGroupName, string certificateName, Certificate certificate) + { + return WrappedWebsitesClient.Certificates.CreateOrUpdateCertificate(resourceGroupName, certificateName, certificate); + } + + public Certificate GetCertificate(string resourceGroupName, string certificateName) + { + return WrappedWebsitesClient.Certificates.GetCertificate(resourceGroupName, certificateName); + } + + public HttpStatusCode RemoveCertificate(string resourceGroupName, string certificateName) + { + WrappedWebsitesClient.Certificates.DeleteCertificate(resourceGroupName, certificateName); + return HttpStatusCode.OK; + } + + public Site UpdateHostNameSslState(string resourceGroupName, string webAppName, string slotName, string location, string hostName, SslState sslState, string thumbPrint) + { + Site updateWebSite; + string qualifiedSiteName; + + var shouldUseDeploymentSlot = CmdletHelpers.ShouldUseDeploymentSlot(webAppName, slotName, out qualifiedSiteName); + + var webappWithNewSslBinding = new Site + { + HostNameSslStates = new List{new HostNameSslState + { + Name = hostName, + Thumbprint = thumbPrint, + ToUpdate = true, + SslState = sslState + }}, + Location = location + }; + + if (shouldUseDeploymentSlot) + { + updateWebSite = WrappedWebsitesClient.Sites.CreateOrUpdateSiteSlot( + resourceGroupName, webAppName, slot: slotName, siteEnvelope: + webappWithNewSslBinding); + } + else + { + updateWebSite = WrappedWebsitesClient.Sites.CreateOrUpdateSite( + resourceGroupName, webAppName, siteEnvelope: + webappWithNewSslBinding); + } + return updateWebSite; + } + private void WriteVerbose(string verboseFormat, params object[] args) { if (VerboseLogger != null) diff --git a/src/ResourceManager/Websites/Commands.Websites/packages.config b/src/ResourceManager/Websites/Commands.Websites/packages.config index 737a40b30858..4ed948a5c97a 100644 --- a/src/ResourceManager/Websites/Commands.Websites/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites/packages.config @@ -8,7 +8,7 @@ - +