From 71a3190b8a0323e1ebc40b351efbddaaf2fcbe95 Mon Sep 17 00:00:00 2001 From: akurmi - Ashish Kurmi Date: Mon, 7 Dec 2015 11:47:18 -0800 Subject: [PATCH 1/7] Adding web app certificate cmdlets --- .../Commands.Websites.Test.csproj | 17 +- .../ScenarioTests/SSLBindingTests.cs | 59 + .../ScenarioTests/SSLBindingTests.ps1 | 189 + .../TestCreateNewWebAppSSLBinding.json | 2672 ++++++++++ .../TestGetNewWebAppSSLBinding.json | 3692 +++++++++++++ .../TestGetWebAppCertificate.json | 2948 +++++++++++ .../TestRemoveNewWebAppSSLBinding.json | 3692 +++++++++++++ .../TestWebAppSSLBindingPipeSupport.json | 4712 +++++++++++++++++ .../GetAzureRMWebAppCertificate.cs | 35 + .../GetAzureRMWebAppSSLBinding.cs | 33 + .../NewAzureRMWebAppSSLBinding.cs | 178 + .../RemoveAzureRMWebAppSSLBinding.cs | 78 + .../Cmdlets/WebApps/GetAzureWebApp.cs | 2 +- .../Commands.Websites.csproj | 15 +- .../WebAppSSLBindingBaseCmdlet.cs | 68 + .../Properties/Resources.Designer.cs | 20 +- .../Properties/Resources.resx | 6 + .../Utilities/CmdletHelpers.cs | 62 + .../Utilities/WebsitesClient.cs | 50 + 19 files changed, 18517 insertions(+), 11 deletions(-) create mode 100644 src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.cs create mode 100644 src/ResourceManager/Websites/Commands.Websites.Test/ScenarioTests/SSLBindingTests.ps1 create mode 100644 src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json create mode 100644 src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json create mode 100644 src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json create mode 100644 src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json create mode 100644 src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json create mode 100644 src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppCertificate.cs create mode 100644 src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppSSLBinding.cs create mode 100644 src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureRMWebAppSSLBinding.cs create mode 100644 src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureRMWebAppSSLBinding.cs create mode 100644 src/ResourceManager/Websites/Commands.Websites/Models.WebApp/WebAppSSLBindingBaseCmdlet.cs 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 98a517639d2a..7249060a9ac0 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -63,9 +63,9 @@ ..\..\..\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 - True + + False + ..\..\..\..\..\azure-sdk-for-net\src\ResourceManagement\WebSite\artifacts\bin\Microsoft.Azure.Management.Websites\Debug\net45\Microsoft.Azure.Management.Websites.dll False @@ -141,6 +141,7 @@ + @@ -158,6 +159,9 @@ PreserveNewest + + PreserveNewest + PreserveNewest @@ -179,6 +183,13 @@ 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..f57f138d3f92 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json @@ -0,0 +1,2672 @@ +{ + "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": [ + "301e4d16-42fb-4239-8450-28600a16a2b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d4bbb5b-49ed-4d60-9b1c-331967ef0b06" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "c2b0ca73-fe42-4b1d-81df-2336e18a3890" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163351Z:c2b0ca73-fe42-4b1d-81df-2336e18a3890" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:51 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "81442302-570e-45ef-a18a-3b692cc17694" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a895ca49-b19c-47f1-bfde-83337d4b0b18" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "fa2542d0-379e-4d5b-867a-54e40189bbc8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163400Z:fa2542d0-379e-4d5b-867a-54e40189bbc8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:59 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "d038eab1-6422-48fa-b38b-9760be08598b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "3f3280f8-e623-488b-970b-6b890f85d57e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "dba36060-d406-46c5-9c5b-5230a563141a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163352Z:dba36060-d406-46c5-9c5b-5230a563141a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33: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/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94823b45-e556-42a4-90f9-a517f2c6d899" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "b6f42611-cf76-4d25-8c35-33fe2138f264" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "669cd8a6-5679-47ee-81d6-8813bf681804" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163400Z:669cd8a6-5679-47ee-81d6-8813bf681804" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33: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/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49e681f3-a2b4-4ef9-a639-dbe66004b2f1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "b0c3e6bc-41ff-45ea-9b67-d5ccd2cc6315" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8dc22ef8-7330-40b1-9317-6e6ac04097f2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163352Z:8dc22ef8-7330-40b1-9317-6e6ac04097f2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:52 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": [ + "119f0663-e587-4e02-8778-f2cf47fe2e31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0bc66335-9452-4382-ba5c-9ae749d0a8ae" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a7d36e4b-0bcb-4a7a-aa0f-6f64c9c355bf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163400Z:a7d36e4b-0bcb-4a7a-aa0f-6f64c9c355bf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33: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": [ + "acf6e154-301c-4f76-9d76-1d709dd62b8a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "7df41db3-a84a-4982-ae2c-b33393d3f02b" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b328d01b-3763-44f4-8080-530658674a9f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163352Z:b328d01b-3763-44f4-8080-530658674a9f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:52 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": [ + "ba809708-09a1-4edb-acb2-b9c1e9825264" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6ae27428-6db7-4e1f-9058-f56d60b4869a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "1ecbc681-e4df-49f4-a5cf-00903024eb2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163400Z:1ecbc681-e4df-49f4-a5cf-00903024eb2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:00 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": [ + "c0604501-490e-40b6-9a11-868a4604ae68" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bb9eba96-8ed8-429f-87fb-1f2226ae0714" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9e0ee8eb-1347-453a-bfe7-f2c54145ce97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163355Z:9e0ee8eb-1347-453a-bfe7-f2c54145ce97" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:55 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "4555a326-f45c-47a3-9825-c5709d999f8c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a045f65d-82e0-41e0-92a7-058e23dbc3be" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "83f49506-c709-4281-be4d-20de07e6fee2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163402Z:83f49506-c709-4281-be4d-20de07e6fee2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:01 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "d0c58099-16d2-4a18-9524-9e42f3c7ce15" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ba103d82-1d7f-482f-a986-c95a4627b912" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "efb6d3c8-ab34-4d75-821f-ab82c2ab60b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163356Z:efb6d3c8-ab34-4d75-821f-ab82c2ab60b3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:55 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "bd2f6899-3cee-43c4-905f-952034ba0863" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "97724ed0-32ae-4b8b-9714-66106ca62679" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "1ba3f1bf-1896-4af8-9cdd-ebd5a4a375de" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163408Z:1ba3f1bf-1896-4af8-9cdd-ebd5a4a375de" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:08 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "1cb26df6-0894-47c0-bfee-4c8a03bf5cd2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "dd000429-b771-44da-b943-1300a6b91bc7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "8f19b495-8075-4cae-8f98-48f3280af385" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163356Z:8f19b495-8075-4cae-8f98-48f3280af385" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:55 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": [ + "f9b13560-72a8-40ca-93b5-6ab2c0484e36" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0b49f25e-5daf-4340-8705-7ebf2c4bdb6a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "73396eda-f4aa-4355-b9ec-b19680c92d88" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163410Z:73396eda-f4aa-4355-b9ec-b19680c92d88" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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": [ + "63921848-e5a5-4b8c-9870-d2004a79c886" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "2f02d813-b2aa-4703-893b-aa7f9da166c8" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "546eade0-e698-45be-9efc-01c3062db429" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163356Z:546eade0-e698-45be-9efc-01c3062db429" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33: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/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c827ac8b-d133-406e-8287-ea42fb325e14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "8f54ec3c-de80-43ca-9bc2-964a99b30df6" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "5edfa887-0087-47f4-85b0-836b51510adb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163412Z:5edfa887-0087-47f4-85b0-836b51510adb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:11 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": [ + "a16b362d-fb81-46fc-b99d-1f1162146178" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "8b562412-7569-4893-b06d-95ccb318bce0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "122e4398-79fc-433f-ab18-e527cc70ff2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163356Z:122e4398-79fc-433f-ab18-e527cc70ff2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33: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/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0d9fa6b0-d308-42a4-af94-78475ad4e16c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "4ddcd540-5d88-4b71-ba30-ee9808309cc0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "6dd0a741-dcf3-4c26-8b6e-02a2c02b40f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163413Z:6dd0a741-dcf3-4c26-8b6e-02a2c02b40f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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/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": [ + "270e7fcc-4466-4b0e-91f5-f06925596934" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2be4264a-bfa3-4bce-b891-8214e20a3331" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "171676ec-bef5-4bf4-967e-4a5f176d588e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163359Z:171676ec-bef5-4bf4-967e-4a5f176d588e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:33:59 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "1d21412d-c53f-4bc7-bbcd-e7739af08b7e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e8ac595d-c072-4799-872d-41a7d3f0b39e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "a2335c8f-60e8-4714-a5f5-0fda385eb72f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163415Z:a2335c8f-60e8-4714-a5f5-0fda385eb72f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "14986" + ], + "x-ms-request-id": [ + "c240133c-475c-4765-a887-fc27397292cd" + ], + "x-ms-correlation-request-id": [ + "c240133c-475c-4765-a887-fc27397292cd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163403Z:c240133c-475c-4765-a887-fc27397292cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:03 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": [ + "14985" + ], + "x-ms-request-id": [ + "0a56171a-cf61-4f9b-bef2-bc5e8b563723" + ], + "x-ms-correlation-request-id": [ + "0a56171a-cf61-4f9b-bef2-bc5e8b563723" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163415Z:0a56171a-cf61-4f9b-bef2-bc5e8b563723" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 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": [ + "58caf60e-cff6-4c7d-81c0-6cea49eb62cc" + ], + "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": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "275e7b8f-9e5a-4176-be49-e2457e04dd05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163403Z:275e7b8f-9e5a-4176-be49-e2457e04dd05" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:03 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "713ed079-f487-49fe-8826-97a16c60a4ce" + ], + "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": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "a5dc0b2a-4ae1-4186-bbca-6077aa622e1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163415Z:a5dc0b2a-4ae1-4186-bbca-6077aa622e1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "b74ce190-8fc3-476d-ba7b-e5b6c8920f31" + ], + "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": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "c0fa0bed-830c-479b-baf1-52f094c97d12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163403Z:c0fa0bed-830c-479b-baf1-52f094c97d12" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:03 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "4dc33fa0-44e5-4707-aced-479bcb008e11" + ], + "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": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "342c33d7-0d13-4c8a-aea2-ca2d59a5fbdf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163415Z:342c33d7-0d13-4c8a-aea2-ca2d59a5fbdf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "2dd53069-7335-4f88-bfc2-5846f9e77559" + ], + "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": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "55cfa50d-78da-450b-a7ad-26e594050772" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163403Z:55cfa50d-78da-450b-a7ad-26e594050772" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:03 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "c2888697-66b6-4a1a-943e-7092e3b9e8d5" + ], + "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": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "fe660e05-662e-4bd2-ac5f-63e3742aa5a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163416Z:fe660e05-662e-4bd2-ac5f-63e3742aa5a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "a06fe0e5-7689-4ba5-8842-e6229d987974" + ], + "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": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "3e984fab-6ab2-460e-994b-a34ae80334a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163403Z:3e984fab-6ab2-460e-994b-a34ae80334a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:03 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "f634955c-c8ac-47c9-a284-315b06c318d1" + ], + "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": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "ddc13653-1f9d-4913-826c-bf2c1e3193f0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163416Z:ddc13653-1f9d-4913-826c-bf2c1e3193f0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "25d82bad-c292-424c-ab8b-64f0e370b802" + ], + "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": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "4a8ecb91-e3d0-4efd-be11-c413b6687525" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163404Z:4a8ecb91-e3d0-4efd-be11-c413b6687525" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:03 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "185c4591-dc5f-4340-8d95-93b7b12d057d" + ], + "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": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "35a09372-4759-4a0a-9ecd-1e14b29d1124" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163416Z:35a09372-4759-4a0a-9ecd-1e14b29d1124" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "2b1b1fed-2214-4803-8bec-77fdb5a69645" + ], + "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": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "8bc06bda-3646-4207-afbc-061e1e51a488" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163404Z:8bc06bda-3646-4207-afbc-061e1e51a488" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:04 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "6168b24c-8b5c-49b9-bd9c-b0f91adeccfb" + ], + "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": [ + "7587603b-b60e-4e7d-b4f3-9c589c2f2f14" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163416Z:7587603b-b60e-4e7d-b4f3-9c589c2f2f14" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:15 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "bdc86241-c21d-4ee3-b9d5-856ea568abed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "b54046d2-7a8d-417e-8207-cf31dfbcc072" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "739009b5-60ae-4577-9340-35cd0544147d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163405Z:739009b5-60ae-4577-9340-35cd0544147d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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/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": [ + "2ff48343-7a95-41d1-a133-0dd8117ff89f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "42eba918-87ac-458a-a259-f16cd2e5daf4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "5b5edc3c-4980-464c-9187-807d65ec1e59" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163416Z:5b5edc3c-4980-464c-9187-807d65ec1e59" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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/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": [ + "84b449cd-4dbf-4f14-8718-40fcffd10a0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "9caac12b-e46f-4f5f-b470-952013d73fa4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "78ce0e24-9425-4a62-907e-bbb300e64cbf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163406Z:78ce0e24-9425-4a62-907e-bbb300e64cbf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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": [ + "ab2abe6e-2a94-47e9-b6dc-ef18c9905add" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "e1bb11a3-e9d8-4149-a550-16fafccea29c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "5344d683-e45e-4910-b32f-7b70b8c76a2b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163416Z:5344d683-e45e-4910-b32f-7b70b8c76a2b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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/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": [ + "e00f0342-ee7a-44ce-ada1-83b5078e149f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6283b495-0179-4e12-af67-f715159c7f11" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "3e57a64a-f25f-4fc6-9bb3-e9ff1f6ae065" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163406Z:3e57a64a-f25f-4fc6-9bb3-e9ff1f6ae065" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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": [ + "a643fd7a-7189-46bc-93ff-292049e97cad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "d70c043f-cb95-4d7c-8b04-144809cdbcfd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "2f13f888-4263-482e-a447-3bb0f6b271c9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163417Z:2f13f888-4263-482e-a447-3bb0f6b271c9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34: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/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": [ + "94fd55e1-545d-4401-a70d-65da2d7f0a89" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "3e4ea008-6977-42c0-b968-61c57a7a1dbe" + ], + "x-ms-correlation-request-id": [ + "3e4ea008-6977-42c0-b968-61c57a7a1dbe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163407Z:3e4ea008-6977-42c0-b968-61c57a7a1dbe" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:06 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": [ + "6ddaba8a-ce42-47ec-bbc9-973d640968cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "70418ccd-7593-4eba-8320-81ab09209c29" + ], + "x-ms-correlation-request-id": [ + "70418ccd-7593-4eba-8320-81ab09209c29" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163417Z:70418ccd-7593-4eba-8320-81ab09209c29" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:34:17 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..895d28e2540d --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json @@ -0,0 +1,3692 @@ +{ + "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": [ + "19d3e5f8-cad3-48a9-a942-55ae7882a3a0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a66e815-20af-4cbb-ae8d-85ca05dd04c7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "00923908-3ee4-4fa3-af89-f4abffeacf9d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163554Z:00923908-3ee4-4fa3-af89-f4abffeacf9d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:35:54 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "693c58c6-4ee3-41f9-a2d4-1f9f9588e8d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7ab74dbb-94d5-4302-a504-b04ee7dfe85b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "559338e2-3513-4d7e-9e66-35df98d39166" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163605Z:559338e2-3513-4d7e-9e66-35df98d39166" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:05 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "1debe947-033a-4669-8b77-7e64cdffc675" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0ad67381-d605-48b6-a39b-604820ccb6a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "b06b0372-ab9d-4689-9f68-38128826475f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163607Z:b06b0372-ab9d-4689-9f68-38128826475f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:07 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "ea1d4ac2-615a-4a2d-8717-6814b35a6007" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b83df7df-19d3-4833-8077-3d2f70a7c652" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "998c33ac-7196-4ccd-ac5e-734c4c74ed3f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163613Z:998c33ac-7196-4ccd-ac5e-734c4c74ed3f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:13 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "4e0bc31a-81a7-4914-a035-81605a621955" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6c2fab79-bb71-4a94-8957-05a5e93a0318" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "99ced4d9-698e-426d-99bc-4aaf3d9a44c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163555Z:99ced4d9-698e-426d-99bc-4aaf3d9a44c6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:35:54 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": [ + "f9c35a8a-fc56-4b0c-91ac-7d5b165d784c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "56d2be88-0e2e-4ed5-a167-a74535768bc6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "91c5e052-c1f8-4057-9619-d44086ec0992" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163606Z:91c5e052-c1f8-4057-9619-d44086ec0992" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": [ + "c5c69634-cbcb-4ddf-b543-59995ce89cbd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "a68c1b83-4a5c-459a-8620-067ada9f8648" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "d712d9bc-1e87-4d7c-8e03-db6c03e49ed1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163608Z:d712d9bc-1e87-4d7c-8e03-db6c03e49ed1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4625991a-9452-4be2-9590-926e329c26ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "de9d480c-1d3c-4972-a0a1-b26bdb3b7bf2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "9f6eef7c-5d14-46e2-b452-02000e890b3c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163614Z:9f6eef7c-5d14-46e2-b452-02000e890b3c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf001736-87a2-4d32-a0eb-27ed2bed7ba0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "23a93af4-204e-468d-9530-c370dd16609d" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "83e7b85e-05f1-43fc-bcc9-96019c9bfe7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163555Z:83e7b85e-05f1-43fc-bcc9-96019c9bfe7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:35:54 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": [ + "c9ec1850-3583-4191-b5f9-20df6e09bb1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "ab833a7d-067b-48a5-9cdf-fd04291c9187" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "98d16880-b958-40bb-919e-fcc6cfd91996" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163606Z:98d16880-b958-40bb-919e-fcc6cfd91996" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": [ + "ddaef405-4ed7-4baf-ae0d-b1312915b02a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "bf515010-92a9-459f-9499-7b2636c0c73a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "b83d610e-ad7b-4039-a0b4-fe7a0204c944" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163608Z:b83d610e-ad7b-4039-a0b4-fe7a0204c944" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": [ + "35fcebf9-bfc2-4b3c-915d-cf65181db4e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0d1372ae-ec0d-4f93-bdac-08304e13acc2" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "bfe628b0-ac31-4790-a823-ae92249bfc52" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163614Z:bfe628b0-ac31-4790-a823-ae92249bfc52" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/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": [ + "87c84457-559b-4abf-8a0c-1171ddfee8f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1da8d09e-147e-4610-a741-aac4fdfd3ba6" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "1f630f1c-50bf-4468-a22e-9506d06264a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163555Z:1f630f1c-50bf-4468-a22e-9506d06264a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:35:55 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": [ + "3bcfd815-8ffd-4fe8-95ea-4ff1453a8efe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "e052c0a2-56b1-4767-aa62-8141a77f630c" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "fc63c3db-0f0b-4ef7-a8fa-335eb326fa78" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163606Z:fc63c3db-0f0b-4ef7-a8fa-335eb326fa78" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0798b77e-f759-4826-96bb-4768eeedbd48" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "f210ee33-9a24-4808-bcf1-c77e1155116a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "b8dc9722-1c93-4ee7-880a-cdd9c3c0f8d4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163609Z:b8dc9722-1c93-4ee7-880a-cdd9c3c0f8d4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": [ + "eb3f8fd5-fb0d-416d-bc40-f16d0e38b734" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1b1ca9a2-0c57-40dc-88d5-d36d73787f78" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "a42e7ed8-dcdc-4228-9072-53ecfd6255aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163614Z:a42e7ed8-dcdc-4228-9072-53ecfd6255aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/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": [ + "18355f5b-c92d-441c-a6fe-58e128d2766b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "79c3656f-a349-49e6-99a0-ba2051bb430a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e1c5fd90-f4f5-4b48-8710-2beff0f15504" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163600Z:e1c5fd90-f4f5-4b48-8710-2beff0f15504" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:35:59 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "f5cab312-f16c-4da4-b930-e72e3756074d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a6b0189-9117-424c-b5d5-b4438bbf52ff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "b109d2a6-e594-4241-9171-d8ff7eb2ccab" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163617Z:b109d2a6-e594-4241-9171-d8ff7eb2ccab" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:17 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "5d1e1602-6246-4e5d-a0e1-e177b54f3011" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4937489a-76b6-4336-a8bc-c031444a1887" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "c0aaeefa-90cc-4397-bcb8-0ab72237d50f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163601Z:c0aaeefa-90cc-4397-bcb8-0ab72237d50f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:00 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "6f9fc38e-5fe7-473e-8824-98300ca8826f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1daa3056-8559-40bd-8d63-7909e4cf722d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "16e0c486-bc9f-4b95-931c-2406515b3aa6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163610Z:16e0c486-bc9f-4b95-931c-2406515b3aa6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:09 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "64aa0588-1c55-429d-9b27-4c8c757f8bdf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d0434c5-ec92-4cc4-be3f-db7b60ce74f3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "185e6b34-800a-44c1-8a8b-d4fa5772f26d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163611Z:185e6b34-800a-44c1-8a8b-d4fa5772f26d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:11 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "59fbcf69-ac13-4fd3-bee8-42f8a8967db1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bcab9361-5de0-431c-9f3b-7b9d462697ca" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "83595f3d-f940-4188-9c47-6e74eaa6d27d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163626Z:83595f3d-f940-4188-9c47-6e74eaa6d27d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:26 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "6c1d4811-6e01-4204-94b5-d9e738be2d99" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "d7e61655-846f-4dad-8869-28c9ff27f741" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "5fd96442-cd53-4744-a96b-66a188a7f6d8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163601Z:5fd96442-cd53-4744-a96b-66a188a7f6d8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:00 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": [ + "6338be34-2bf0-4990-8cf6-fd37332356e5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1fa67b84-0da2-4eb2-80aa-01f2090ba0e7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "710cb75b-a508-4177-8869-ad56cf167d56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163610Z:710cb75b-a508-4177-8869-ad56cf167d56" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc7e8e57-afa3-45b9-b800-0111d7f6aeba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1ecca798-9d33-48f9-a8a6-7f9ccf18c43d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "ab25edd3-27f6-4bb4-959a-05b159eaf0c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163612Z:ab25edd3-27f6-4bb4-959a-05b159eaf0c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:11 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": [ + "6f80b2fe-cb20-4d13-9ff7-c4d2c7ac6f66" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "d11e6052-ec1d-4d7c-9003-bb0cc9560b8f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "c37b0354-341f-43b5-ab51-15e974d6b3c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163627Z:c37b0354-341f-43b5-ab51-15e974d6b3c6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:27 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": [ + "e10ab0c1-590d-4759-b474-cd980f795ba6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6ec6e4ff-b158-4981-90f6-f349f05d3189" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0873d934-996f-4136-be8c-4651846cbd03" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163601Z:0873d934-996f-4136-be8c-4651846cbd03" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:00 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": [ + "97ab5c1e-c234-4889-9df5-f67b96c56e75" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "a30ffeb8-d8c6-4a56-8670-81ed3516199e" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "89913c2b-3d69-49c0-8383-d3d30bc8f016" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163610Z:89913c2b-3d69-49c0-8383-d3d30bc8f016" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": [ + "e6704f7b-edfb-4ac4-a96a-705703232f57" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6430c112-b65f-42ac-8960-01df7cdf5a2f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "8404811b-488e-484f-8202-3f376e6bef49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163612Z:8404811b-488e-484f-8202-3f376e6bef49" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "478af98e-5e3d-42df-bcd5-92d745ed8004" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "998adea7-9e6e-4bd0-baf0-6f627740ea9f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "e2de731d-77cf-442f-ae69-36619b6aae16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163627Z:e2de731d-77cf-442f-ae69-36619b6aae16" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:27 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": [ + "35243126-b392-46cb-b64e-7d3c604609d3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "d41fef70-fd4b-4cc1-91a9-83cc1a99074a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "40d60157-34a1-4a8a-96e0-566a05fbb0ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163601Z:40d60157-34a1-4a8a-96e0-566a05fbb0ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": [ + "694667a0-06e2-4fed-92b4-3ad1a1be3aeb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "294ce2d8-866d-450f-b722-68b84cb8e1fa" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "7c0c595b-6e91-4d92-aeaf-abad29e68be8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163611Z:7c0c595b-6e91-4d92-aeaf-abad29e68be8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": [ + "58c6ea40-509c-4809-bbb6-141cf40577c4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "630f6846-aed3-4830-a93f-b4198d480a68" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "753478aa-a8e7-4963-b7bd-7f864ee8d146" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163612Z:753478aa-a8e7-4963-b7bd-7f864ee8d146" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/slots/testslot/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f1becf1-281b-4b28-ac65-9c52708a1e04" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "ca57dc69-b3f0-4beb-aa76-f13a9663561a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "2c18808f-d9b6-44db-9baa-5a9ea83bd2db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163627Z:2c18808f-d9b6-44db-9baa-5a9ea83bd2db" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:27 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": [ + "337aebfa-3e78-49fa-8ad5-a91f761e2a01" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "76a1d181-c905-479c-ad77-7e945be2457f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "09e0a78d-0995-42ce-bef0-554328f31658" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163604Z:09e0a78d-0995-42ce-bef0-554328f31658" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:04 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "79368ac6-6f39-4728-8877-3492fc3a71ec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2150a1cc-ab10-467f-a8cc-4d35f5a3f85d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5095e1ee-82ff-4458-aad5-d1d389772035" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:5095e1ee-82ff-4458-aad5-d1d389772035" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "14983" + ], + "x-ms-request-id": [ + "29d95001-7e32-4d2d-93ca-5bcc95ef1b5f" + ], + "x-ms-correlation-request-id": [ + "29d95001-7e32-4d2d-93ca-5bcc95ef1b5f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163618Z:29d95001-7e32-4d2d-93ca-5bcc95ef1b5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:18 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": [ + "14982" + ], + "x-ms-request-id": [ + "6672b7ed-3776-45d7-93bb-c19b122263e8" + ], + "x-ms-correlation-request-id": [ + "6672b7ed-3776-45d7-93bb-c19b122263e8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163630Z:6672b7ed-3776-45d7-93bb-c19b122263e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 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": [ + "6c10b2a0-50d9-4198-ba76-55e03218d49a" + ], + "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": [ + "c5fee70d-a89a-407c-977c-ca7124bb1856" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163619Z:c5fee70d-a89a-407c-977c-ca7124bb1856" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:18 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "595268c9-fc57-49e5-9c8f-45f9d4cc813c" + ], + "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": [ + "f95165b4-5dcc-4172-8a62-860d3f50ea16" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:f95165b4-5dcc-4172-8a62-860d3f50ea16" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "48a67968-5020-440c-b9c3-d3a3ce00f64a" + ], + "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": [ + "280465f6-a41c-4fc7-a7f8-7d3e3670431f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163619Z:280465f6-a41c-4fc7-a7f8-7d3e3670431f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:18 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "28955dff-b2f4-4dfc-9205-58733650cf28" + ], + "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": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "82670e60-bad9-483b-bbc9-772dbe5d39d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:82670e60-bad9-483b-bbc9-772dbe5d39d2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "e2feafde-a517-4534-8174-29085522cca4" + ], + "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": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "45b6aa13-69de-42e0-9461-8a067be6a109" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163619Z:45b6aa13-69de-42e0-9461-8a067be6a109" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:18 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "e157152e-aea3-42be-90b4-5c3c2696574f" + ], + "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": [ + "85043a5c-7025-43a9-8764-a930665f5f36" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:85043a5c-7025-43a9-8764-a930665f5f36" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "3b6c625d-040b-46c2-b1d1-0edbb368e3a8" + ], + "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": [ + "cb151bce-c232-4a24-ae4d-fc10214b1fc0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163619Z:cb151bce-c232-4a24-ae4d-fc10214b1fc0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:18 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "29f36dbf-9d4f-45cb-8d22-c746fbc591ef" + ], + "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": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "b3e222f1-3eeb-4a68-9e09-6523ead0906e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:b3e222f1-3eeb-4a68-9e09-6523ead0906e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "35917651-9405-4354-9667-bbecdd0857b5" + ], + "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": [ + "a949d26c-6618-45c7-82ec-fe18630b19bd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163619Z:a949d26c-6618-45c7-82ec-fe18630b19bd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:18 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "7e879d9f-c8de-4b97-a367-fdfe343c4c66" + ], + "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": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "10bc4a10-f194-4624-a409-6cf760b0bf63" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:10bc4a10-f194-4624-a409-6cf760b0bf63" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "56af22f3-a27a-42ee-835e-d10f0e602923" + ], + "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": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "77d3e52c-b8ce-47d8-a17c-f2f976613f3e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163619Z:77d3e52c-b8ce-47d8-a17c-f2f976613f3e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:18 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "b766fac3-cc99-48b7-b086-d6bb7aad1e81" + ], + "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": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "80619556-4c37-497e-adeb-5ac306e3e392" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:80619556-4c37-497e-adeb-5ac306e3e392" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:30 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "6e1d55c2-62e4-478f-bca4-91af13889bbd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6c1bcc82-e033-4024-9f8b-969d42788e0b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "ac6c7847-cedb-4fce-bf26-626000343558" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163621Z:ac6c7847-cedb-4fce-bf26-626000343558" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d78b2ef1-1adc-4388-9bc8-41e852d7e3fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0a96154c-70ee-4cb2-8328-d273bead14d8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "d6b8c69a-0706-4f34-8e14-7ba779850f8c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163631Z:d6b8c69a-0706-4f34-8e14-7ba779850f8c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/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": [ + "31583786-aa6c-4497-9779-e99117672e2d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "ca590570-9b1d-4350-b519-640d4c283240" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "88d462b4-a3f4-48b8-b4d4-97af627517e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163622Z:88d462b4-a3f4-48b8-b4d4-97af627517e6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/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": [ + "f55cf5ad-a6cd-4d81-8623-b3e64af99b93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "b833b082-c788-428c-b7da-68b18c2566da" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "431843fe-1d4f-479d-883a-7f7d587a955f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163632Z:431843fe-1d4f-479d-883a-7f7d587a955f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/487D8A28A8EBCD3E5B8027746410B95B37CD4A22%23asedemoeu%23North%20Europe%23appdemorg-asedemoeuappseNorthEuropewebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW9ldSUyM05vcnRoJTIwRXVyb3BlJTIzYXBwZGVtb3JnLWFzZWRlbW9ldWFwcHNlTm9ydGhFdXJvcGV3ZWJzcGFjZT9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0dd192ca-4ad9-4cc9-b0df-226e1b6dca66" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0171b13d-d36d-4f62-a0b9-c1f4a0226555" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "e7ce2d86-cf87-4714-87e9-515d0b5ee7d3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163625Z:e7ce2d86-cf87-4714-87e9-515d0b5ee7d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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/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": [ + "d44dbf49-1cf6-4faf-ab89-3cb410074c16" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "80cc0fa6-cc41-463e-91ea-4ed38c0abbcb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "1afff562-661d-4fd7-911e-02091852d3ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163632Z:1afff562-661d-4fd7-911e-02091852d3ee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36: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": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "089bbf7e-4e10-459d-9a0f-2df6039ea5e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "b537d494-25da-4d55-a424-fc0a9fe8c793" + ], + "x-ms-correlation-request-id": [ + "b537d494-25da-4d55-a424-fc0a9fe8c793" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163625Z:b537d494-25da-4d55-a424-fc0a9fe8c793" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:25 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": [ + "bd01093a-5693-4dcb-a33c-c6a693aff10e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "08b9b34a-ddba-413b-8f28-d87c2f8885a6" + ], + "x-ms-correlation-request-id": [ + "08b9b34a-ddba-413b-8f28-d87c2f8885a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163633Z:08b9b34a-ddba-413b-8f28-d87c2f8885a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:36:32 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..2c6b740b78e7 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json @@ -0,0 +1,2948 @@ +{ + "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": [ + "93d2b1e8-fd29-4485-9f65-fc0212575e4b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3699" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bdaada31-2c1a-49a2-8864-6be8cf17cfe9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "860c2379-d3c6-4d35-bd0e-5a7115dc66ae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163207Z:860c2379-d3c6-4d35-bd0e-5a7115dc66ae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:07 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "ce68d7ee-961a-423b-b52f-88de20400a7a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b041508b-a358-43a9-bf17-54d6ba6cdb1d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "708dd287-d9b7-4273-ac71-6eb2ed8e4bee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163220Z:708dd287-d9b7-4273-ac71-6eb2ed8e4bee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:19 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "1721949d-c269-4c96-9d1b-9840ddc452dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "e22082d9-8dcc-49bc-b785-b4e7dbef2773" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "c0a0f13f-ea07-4695-aa02-fc5277c1a5b6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163208Z:c0a0f13f-ea07-4695-aa02-fc5277c1a5b6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4296d1b6-6ffa-435b-aa41-bc60d5c0b900" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "91008416-6372-4a73-aa0f-5d2bb46653ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "f5b9920d-c53b-45b3-a7f2-2785773b0b2c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163220Z:f5b9920d-c53b-45b3-a7f2-2785773b0b2c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0f4b596-2b61-4c48-8873-bef65726216e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "30f74475-f56d-49e9-b372-475705a1aa55" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f1fbc751-7ce0-49a6-895d-574b17f7c54e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163208Z:f1fbc751-7ce0-49a6-895d-574b17f7c54e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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": [ + "98a19aeb-056d-47b1-9e7c-5bbd2dbead82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "fb499def-d463-46b1-8182-2f443ebf4a9a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "5a1b2a67-daf0-4614-85fe-59b927b5ab56" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163220Z:5a1b2a67-daf0-4614-85fe-59b927b5ab56" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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": [ + "5422d8ec-b1aa-4b54-9905-68f923892da3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "53f0bb39-4a72-4f26-9a09-adfb2a951d71" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "fb8f2083-b367-4afb-b3bb-9f9d02d6a125" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163208Z:fb8f2083-b367-4afb-b3bb-9f9d02d6a125" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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": [ + "f19e15b8-ea6f-44e5-98c7-e582f41e8333" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "df94180f-4e60-4c4f-8073-9d5a3c025e28" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "99d97fb3-5132-4a04-a92b-7a61e58e3dd9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163221Z:99d97fb3-5132-4a04-a92b-7a61e58e3dd9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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?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": [ + "a7ab85b8-7e5a-417c-b3ec-f1bbbd4b55aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "da0c5c6f-1bd2-4ec9-a929-6a94e4329952" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1d12f62c-012b-4657-a3a1-4f2da9a517f1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163212Z:1d12f62c-012b-4657-a3a1-4f2da9a517f1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:11 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "b7b00a58-f553-4e93-a236-253a3ae85f64" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e72f3cb6-1a58-48b3-b090-06fb88ea4347" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5c08bd38-ed06-41d4-a3d8-2a045fa2f83f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:5c08bd38-ed06-41d4-a3d8-2a045fa2f83f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "14986" + ], + "x-ms-request-id": [ + "e556e222-7406-4ef4-bbd7-3aedd24bc53c" + ], + "x-ms-correlation-request-id": [ + "e556e222-7406-4ef4-bbd7-3aedd24bc53c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163212Z:e556e222-7406-4ef4-bbd7-3aedd24bc53c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:12 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": [ + "14985" + ], + "x-ms-request-id": [ + "adb9e97a-318e-4155-a87a-a5f4588d1f30" + ], + "x-ms-correlation-request-id": [ + "adb9e97a-318e-4155-a87a-a5f4588d1f30" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:adb9e97a-318e-4155-a87a-a5f4588d1f30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:16 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": [ + "14984" + ], + "x-ms-request-id": [ + "cffcf2df-e662-463a-8e43-ec834fb88313" + ], + "x-ms-correlation-request-id": [ + "cffcf2df-e662-463a-8e43-ec834fb88313" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:cffcf2df-e662-463a-8e43-ec834fb88313" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 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": [ + "ba509394-d455-4e3a-8f68-60d4a1cf2d1a" + ], + "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": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "3f868a3c-5858-4b95-b93c-2e5e4715fa60" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163213Z:3f868a3c-5858-4b95-b93c-2e5e4715fa60" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:12 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "0f9eb890-8430-4b20-98b0-358990aa514e" + ], + "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": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "e20f63f5-4d56-432d-b483-caeae869d2f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:e20f63f5-4d56-432d-b483-caeae869d2f6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:16 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "2ba5e51b-b5b5-42e6-a0e8-4c640988601f" + ], + "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": [ + "5859c3ec-3067-476f-b7d5-51f4ed17c3a6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:5859c3ec-3067-476f-b7d5-51f4ed17c3a6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "d14edfcf-fc2f-44c6-99b7-41d5875f8f7e" + ], + "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": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "776994bc-741d-4143-bf6e-19b38d960f05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163213Z:776994bc-741d-4143-bf6e-19b38d960f05" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:12 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "5e70160a-26fd-47a5-b49d-391413e71e15" + ], + "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": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "88ed01b0-5521-4f77-b5d7-1fa892db0a33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:88ed01b0-5521-4f77-b5d7-1fa892db0a33" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:16 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "aa49a8fd-ecfb-4c61-88d5-ec4f465f20ba" + ], + "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": [ + "bd25f457-1721-4aaa-b38b-f049d826f5ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:bd25f457-1721-4aaa-b38b-f049d826f5ed" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "1f9677e8-7a8a-4797-9a16-05ef42f6c824" + ], + "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": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "33b9b50f-e2fd-41eb-96b0-9a4449f101ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163213Z:33b9b50f-e2fd-41eb-96b0-9a4449f101ac" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:12 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "4fdd29b6-71de-4568-b1e4-2edcd165da40" + ], + "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": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "d773c22b-ce91-4f12-bcc2-3ec9c61cffbb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:d773c22b-ce91-4f12-bcc2-3ec9c61cffbb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:17 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "17770806-6073-4d6c-9022-76297a52bfe8" + ], + "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": [ + "293b11a6-e195-4573-83ca-5b02b82fc97a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:293b11a6-e195-4573-83ca-5b02b82fc97a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "0e3a2f9a-d355-479f-930f-69dc10e2a8ff" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "baa46654-2abc-44a9-b24a-3bfe6ede4d33" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163213Z:baa46654-2abc-44a9-b24a-3bfe6ede4d33" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:13 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "237fd927-a568-4e00-84cb-e352d20fd7fe" + ], + "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": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "a40aca34-a22a-4f9d-b0e4-8ef69d0cedf7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:a40aca34-a22a-4f9d-b0e4-8ef69d0cedf7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:17 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "493bd5c7-e417-4857-9b06-1de7768da71c" + ], + "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": [ + "53d7721a-0034-4499-85b8-933544d45581" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:53d7721a-0034-4499-85b8-933544d45581" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "c69efd4e-5929-4100-a09e-7fb4714e50c5" + ], + "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": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "ad9414f2-abe7-4669-942d-7f76003de737" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163213Z:ad9414f2-abe7-4669-942d-7f76003de737" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:13 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "f6034fb6-78bc-4acd-a2a8-b41324b58153" + ], + "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": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "a9f50197-eee3-4910-9a60-2ac6a5267392" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:a9f50197-eee3-4910-9a60-2ac6a5267392" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:17 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "a203b697-91f0-4f63-8217-910a3202f9e2" + ], + "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": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "45def835-e74a-4f02-a4e8-85f6e66b5c4d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:45def835-e74a-4f02-a4e8-85f6e66b5c4d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "f79ba325-c231-4c25-9db4-edcde0db3c77" + ], + "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": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "4e2386af-f262-4c98-b849-9db524e61eba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163213Z:4e2386af-f262-4c98-b849-9db524e61eba" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:13 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "2dd9720f-7ff5-4610-ae42-f8e02c6d2297" + ], + "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": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "6b50491d-2f99-4db8-8d71-b6916bf16d82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:6b50491d-2f99-4db8-8d71-b6916bf16d82" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:17 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "26ed1903-f978-421f-8192-54a82ddf41c2" + ], + "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": [ + "b74150ae-4e31-436e-9a97-9752d1e77487" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163223Z:b74150ae-4e31-436e-9a97-9752d1e77487" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:23 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "f7c7a0b1-13a3-45d1-8de0-ebc0400bc5ea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "ef6412ee-eb4a-4b39-9ab8-ebc07e545243" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "46cf4de9-a9df-44c5-afac-a4bae9a9aa58" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163214Z:46cf4de9-a9df-44c5-afac-a4bae9a9aa58" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/40D6600B0B8740C41BA4B3D13B967DDEF6ED1918_asedemo_West%20US_webappsslbindingrb?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDBENjYwMEIwQjg3NDBDNDFCQTRCM0QxM0I5NjdEREVGNkVEMTkxOF9hc2VkZW1vX1dlc3QlMjBVU193ZWJhcHBzc2xiaW5kaW5ncmI/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52b87237-4c9d-4292-9e0f-d66deb0d36ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "3c22b948-4b3c-47ef-bd9f-4873e9f30a33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "b381554b-c341-4be2-8ac7-79bf2976f254" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163218Z:b381554b-c341-4be2-8ac7-79bf2976f254" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:17 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": [ + "e20e4f55-bc96-4521-a1f2-ad2acd02d8ce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "bf5c77be-15db-415b-aecd-a6b469cf9cc0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "7f61c691-65b7-4875-be5e-5d320fc58d34" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163224Z:7f61c691-65b7-4875-be5e-5d320fc58d34" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/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": [ + "727acc4f-2911-4799-880d-1145582dc97f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "cfe74d6d-8ce8-4f1a-b92c-fe2d54be6fc5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "5ae358e6-7066-4118-a3d7-8ca0745de5fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163215Z:5ae358e6-7066-4118-a3d7-8ca0745de5fb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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%23asedemo%23West%20US%23appdemorg-asedemoappseWestUSwebspace?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL2FwcGRlbW9yZy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNDg3RDhBMjhBOEVCQ0QzRTVCODAyNzc0NjQxMEI5NUIzN0NENEEyMiUyM2FzZWRlbW8lMjNXZXN0JTIwVVMlMjNhcHBkZW1vcmctYXNlZGVtb2FwcHNlV2VzdFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAxNS0wOC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0078b39f-b026-431f-a843-5872d34e0351" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "f7593797-d13d-4248-9fd9-03160fee45e2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "087b6d81-d5ae-4b19-8dfb-4634844f60c6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163218Z:087b6d81-d5ae-4b19-8dfb-4634844f60c6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:17 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": [ + "9f61c7df-f6f8-47d8-b161-883102ff55d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "9b689791-d472-4cfa-a4d6-565b8209e4dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "dc96b110-2012-4524-8ccd-c2569216ee79" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163224Z:dc96b110-2012-4524-8ccd-c2569216ee79" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/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": [ + "bedbe370-f162-448f-a43a-02d3cee0d40a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "18225c71-4b2f-4ca9-8d08-2e7891ee89db" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "6672282a-1798-47c2-ab63-3848524b0db2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163216Z:6672282a-1798-47c2-ab63-3848524b0db2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/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": [ + "9687f024-c9f2-43a0-aaad-cf47f4a22603" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "8939d6a3-98f5-4184-8317-e7faa3ee0ab0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "9076c729-beb8-4f4a-8fa9-f2bdc3f957a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163219Z:9076c729-beb8-4f4a-8fa9-f2bdc3f957a2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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": [ + "2a7bd00f-23ca-47f7-9453-5dddb2644071" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "4dab97bd-4aa6-4b5e-9251-de73d3b0454c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "09cd3fad-631b-4615-90b8-ae7bd07b175f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163225Z:09cd3fad-631b-4615-90b8-ae7bd07b175f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9CNzVDQkY3NDM5Mjc0QUU0MTM1RTNFNjlDRTZBMTk2OTNGNjhENDBGP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22d1df5d-871c-4649-9797-cd0984a52f21" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "ca592e73-eecb-4560-9e05-fb478f8eea59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "db2878b4-2ea8-4830-8c45-7cce526eab8e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:db2878b4-2ea8-4830-8c45-7cce526eab8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/Default-Web-NorthEurope/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLU5vcnRoRXVyb3BlL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9CNzVDQkY3NDM5Mjc0QUU0MTM1RTNFNjlDRTZBMTk2OTNGNjhENDBGP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b100119-248f-4bf5-9435-e5fc9e2a8ddf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "b2d92468-8810-419f-a35d-de960c911f38" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "94ec3fbe-f575-4202-85f4-16356529097a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163219Z:94ec3fbe-f575-4202-85f4-16356529097a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNkJENjFGOEIxMjUwRkY3Mzc5MENCOTk3QTc2Mzk4NTUwMjk1MURDMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa477edd-5fe0-4a24-bbf0-23f6325e3a2a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "8553e651-a5d6-4172-accd-1b66da8d4b86" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "5ef03091-9638-4c04-a2bc-cfaa7978a2dd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:5ef03091-9638-4c04-a2bc-cfaa7978a2dd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/Default-Web-WestUS/providers/Microsoft.Web/certificates/6BD61F8B1250FF73790CB997A763985502951DC3?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvNkJENjFGOEIxMjUwRkY3Mzc5MENCOTk3QTc2Mzk4NTUwMjk1MURDMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c77fde81-f179-472d-abee-c3e9039d62b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "09645930-053b-4ae5-9310-dbd9f6684cfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "47683cc9-09f8-4a82-82b7-02e1320db3c2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163219Z:47683cc9-09f8-4a82-82b7-02e1320db3c2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4c51744-b429-4e70-a534-95c0174353f3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "2318b6bf-8f7c-4a0f-a7df-7d0d0549a66e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "8645ac71-aaef-43d4-b707-96389b14f8fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163217Z:8645ac71-aaef-43d4-b707-96389b14f8fc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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/Default-Web-WestUS/providers/Microsoft.Web/certificates/B75CBF7439274AE4135E3E69CE6A19693F68D40F?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtV2ViLVdlc3RVUy9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9jZXJ0aWZpY2F0ZXMvQjc1Q0JGNzQzOTI3NEFFNDEzNUUzRTY5Q0U2QTE5NjkzRjY4RDQwRj9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "476d8ae1-f6d8-49aa-b8a6-2b9a5cd816ec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0b9778b1-097a-49ba-91ec-32162f72caad" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "95d05aaa-50c6-4c55-a0b4-070eb87f352f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163219Z:95d05aaa-50c6-4c55-a0b4-070eb87f352f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32: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": [ + "e52ea0e3-a262-418c-8278-0afbd06f68c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1197" + ], + "x-ms-request-id": [ + "d16427f5-4223-4d12-ac22-01bd48c3edf1" + ], + "x-ms-correlation-request-id": [ + "d16427f5-4223-4d12-ac22-01bd48c3edf1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163225Z:d16427f5-4223-4d12-ac22-01bd48c3edf1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:32:25 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..b0d081428657 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json @@ -0,0 +1,3692 @@ +{ + "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": [ + "e587a967-b2c2-401a-8db0-172802bcf193" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93441eb3-73f2-4c5c-91cb-a4e16132777b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "a665934b-df25-4d34-9eb6-9daa79431537" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163749Z:a665934b-df25-4d34-9eb6-9daa79431537" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:49 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "fc89b7b9-71d4-466e-9a90-fa0aea480bda" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f05e6f0c-6f4c-41f0-8458-0721264642ef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "faa8595d-6baa-45ac-a505-35e51de3e6d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163759Z:faa8595d-6baa-45ac-a505-35e51de3e6d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:58 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "c4867370-ec89-463d-82bf-3bb1f2d5f445" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f8f6d935-f0df-4c55-9db8-721038ed04f9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "74634473-7862-4a64-856f-c434719fc846" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163812Z:74634473-7862-4a64-856f-c434719fc846" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:12 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "2177e60d-1d76-40f6-bacf-49894fec38b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "907c07a8-3eba-4a9c-b8fe-8ed88211878b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "85aba963-a3ab-40cd-a89f-a3f906abd29b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163814Z:85aba963-a3ab-40cd-a89f-a3f906abd29b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:14 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "7a7f899a-de25-4a22-b2f0-b21b4d892ee4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "b5939af5-75cf-4cec-be97-1df86be38e8d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "3fe74928-faf6-4b8b-bab5-363ed6a6cba1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163749Z:3fe74928-faf6-4b8b-bab5-363ed6a6cba1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37: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/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "115c3587-c95c-4eb0-b942-ea6bb07108b3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0c816bd3-d714-4cda-811c-8e0f0fe26661" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "83d8b12b-9c06-4816-8d5f-188a05759818" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163759Z:83d8b12b-9c06-4816-8d5f-188a05759818" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37: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": [ + "363c32e9-5c13-463e-89db-d08a237e8b14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "5b7d1ae2-63ec-4abd-af4e-ecf75f0bf002" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "378d17c3-6b65-4e90-8f5b-47afe387f2cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163812Z:378d17c3-6b65-4e90-8f5b-47afe387f2cc" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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": [ + "c82ff39d-ec7a-4240-8452-0ba8067f9355" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "7812b725-ea87-4ea8-a8e4-64cf788c10b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "ceb6858f-f9c9-4fcc-bac1-f9c914cc35d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163815Z:ceb6858f-f9c9-4fcc-bac1-f9c914cc35d0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/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": [ + "f1d01721-722a-49d1-9be4-3688fde5bd0d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "66393d51-64fd-4ad4-aca1-e7494690b69d" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "044d43e4-b71c-4690-89e8-d5436e10aa89" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163749Z:044d43e4-b71c-4690-89e8-d5436e10aa89" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37: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/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f096b49a-fbd7-4ffe-bc54-11a3e858c1b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "48411bcc-5c99-4701-90cf-38a9e986a59b" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "bd263727-3f30-41ab-8f33-f2e49a3a6a66" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163759Z:bd263727-3f30-41ab-8f33-f2e49a3a6a66" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37: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": [ + "205229c8-ec22-48d9-bd2d-66ac0157ef82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "9a86acad-eee3-4c47-b78e-b8b67077814c" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "bf384c3a-bd2c-49a4-8d7e-6f8836d32d17" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163812Z:bf384c3a-bd2c-49a4-8d7e-6f8836d32d17" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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": [ + "88462f4e-4b4c-420f-b4b7-2cb4ada55a5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "c711d12e-cd44-496a-a321-dd2d9f49aa9f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "2954cc83-d6b3-49b2-ad9b-425f4109b81c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163815Z:2954cc83-d6b3-49b2-ad9b-425f4109b81c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d37eb3b-c618-4c98-9f29-d52b87729729" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "8efd79a0-7246-4f13-9746-76904253b407" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "88129f23-547f-46d6-b805-665fb7127e7d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163750Z:88129f23-547f-46d6-b805-665fb7127e7d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37: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/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "628f7cb9-6756-404c-b890-0447d29fef5b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "a422f1c7-3fc0-469c-9af5-d1567acdf4ee" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "5b78d6d8-e1ae-4cb5-9461-8893aca26c05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163759Z:5b78d6d8-e1ae-4cb5-9461-8893aca26c05" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37: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": [ + "aa17842f-6f03-468e-aaef-fac6c58019e5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "24c3e513-8785-4d27-b245-44e5da18b7ea" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "54bd3e1f-3403-4235-969f-fd5d89273148" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163813Z:54bd3e1f-3403-4235-969f-fd5d89273148" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb8a93d8-c17d-4bed-849d-264dbdf7a63c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "f0f49c11-c7ab-4e87-9d79-710dc11f8e81" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "04cbb9a3-401f-42c5-9dbf-723c2d144933" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163815Z:04cbb9a3-401f-42c5-9dbf-723c2d144933" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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?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": [ + "5fe36ebf-3bd3-463b-b69d-8200e7313a60" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7b3df94d-e115-4de1-8d0d-97988c9d6532" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "0bf6ec75-0d3f-4a48-8ae6-77e6a0215ae5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163752Z:0bf6ec75-0d3f-4a48-8ae6-77e6a0215ae5" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:52 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "d288011c-fb8e-4f96-bf8f-d92d7105dc0b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aed3a9a1-c61d-4758-9daf-4ac3400576b1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "d82a1f1b-40d2-4acf-ac43-c5ee1a904c8f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163801Z:d82a1f1b-40d2-4acf-ac43-c5ee1a904c8f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:00 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "adaac236-e8ea-450b-8b60-d0865c5a0dce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c254ed0-6b55-4a13-8975-122305e3a1c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "49dbff09-f5e1-4418-a1bb-7004a8864cbf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163754Z:49dbff09-f5e1-4418-a1bb-7004a8864cbf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:53 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "9af3f989-2fe1-4c9f-b10f-b13f5757fe69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7095786e-5ef4-4890-b3a4-67debdc3a07c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "7dc58843-413d-436d-981d-f911c20add44" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163806Z:7dc58843-413d-436d-981d-f911c20add44" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:05 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "52da7f6c-9f43-4403-8a5e-0ac3579838b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93684b91-b6e9-45a9-a1d6-112321c79387" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "0fd29fce-a8c2-4b3c-8374-d7605ce34d10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163813Z:0fd29fce-a8c2-4b3c-8374-d7605ce34d10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:13 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "5c52b695-683e-40d6-9bd2-7e18087072c7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4ae83565-058e-46f7-aeed-b23664750af2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "cc4ed6d1-1e99-4b3f-b07a-07cb8797ecbf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163815Z:cc4ed6d1-1e99-4b3f-b07a-07cb8797ecbf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:15 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "34a376a9-6544-4625-b0cd-ded400b965ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "e3dae3e2-72de-4a34-b297-2a9aa595b5ac" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "db407b58-8f26-4b04-8885-9428d43021eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163754Z:db407b58-8f26-4b04-8885-9428d43021eb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:53 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": [ + "c8e3ca12-ac89-4745-a83e-58a2e35ae601" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "d853dba5-f2e6-46c4-ab3e-06ef0d1e5084" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "d606af80-4bd7-4787-86ee-81657fb49022" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163807Z:d606af80-4bd7-4787-86ee-81657fb49022" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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": [ + "1d05970a-b73f-4c3e-9c94-86481dda110c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "46d3fb46-e531-47c9-aed0-e9f567356288" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "ddc3d23a-2060-4a1d-b0cb-e28df1b8627a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163813Z:ddc3d23a-2060-4a1d-b0cb-e28df1b8627a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dab8dbf6-cc24-41f0-a81a-a5d623e04494" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6bbb4b0d-a0eb-4025-958f-690515b6a2d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "76b51343-2bf1-4b94-850d-5540cbf7cd10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163816Z:76b51343-2bf1-4b94-850d-5540cbf7cd10" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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": [ + "dbc83f90-3fbf-4988-8a46-1e796393f0a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "09674b44-ba91-42a9-aa64-93cdfc56ffe2" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6c26c4d3-f1e4-4a37-b9ab-2b33a42c41e2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163754Z:6c26c4d3-f1e4-4a37-b9ab-2b33a42c41e2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:54 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": [ + "8cd65aad-4eaf-4aeb-9020-8e2d6297d4e2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "a4a03bc6-8e90-41c7-9a56-52564485af6c" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "faccf6d2-b231-44da-ac1d-4090e7f267f7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163807Z:faccf6d2-b231-44da-ac1d-4090e7f267f7" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8df1217-8603-45c0-974d-8a3867bd20e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "505fb34d-3a48-409f-a3a2-34b7d9562910" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "428854f3-11e9-47bd-bb1d-0bf7cdeb64d2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163814Z:428854f3-11e9-47bd-bb1d-0bf7cdeb64d2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/slots/testslot/config/appsettings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f8149e8-59e0-493c-a8ea-a3726269ceff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "e799375c-fb78-418b-81a6-7fa1909b938e" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "1cd8333e-6fc6-480a-b359-d1f772df3770" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163816Z:1cd8333e-6fc6-480a-b359-d1f772df3770" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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": [ + "3997491e-e14b-4e05-abb4-dedccf47e642" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "27500540-294c-462f-8670-647566e5a243" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "9b9c3cc2-4d5b-45e0-bf26-6af39604681d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163754Z:9b9c3cc2-4d5b-45e0-bf26-6af39604681d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:54 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": [ + "2731b3ed-f020-4fe3-8b9b-2091c3fcec90" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "bed6cb02-34f5-40a4-a085-9527f23b5aad" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "ec570e18-3454-41b8-9528-07c4cccdb30b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163807Z:ec570e18-3454-41b8-9528-07c4cccdb30b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a118552-efc1-4850-8e3d-b194bce8cb5b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "7862662e-2f12-440b-bb2b-af2ccb767333" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "3f22bcd2-a1bf-482e-8ccf-9d1719641859" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163814Z:3f22bcd2-a1bf-482e-8ccf-9d1719641859" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/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": [ + "70aad24f-7c92-4d77-bb09-d7bad73ea3e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "edc95191-794b-4fbc-b11e-3bd1d8b203c5" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "891dfa2a-fbc0-49d7-9e02-9bb88de4c3ea" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163816Z:891dfa2a-fbc0-49d7-9e02-9bb88de4c3ea" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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": [ + "097986d2-c6ba-4d4e-bfac-160879de2dfb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8e30683b-cd12-4418-b7b5-48f3bd068bba" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1e5ad6c8-dc02-46ff-9c8a-2d5e45ede735" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163758Z:1e5ad6c8-dc02-46ff-9c8a-2d5e45ede735" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:37:58 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "3678ad88-48ac-4201-b8a8-25d908fd559a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4da90473-8852-4645-a3bc-985030769cb1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "084d9f4c-9f4d-40c0-8aca-a4ceb62282a0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:084d9f4c-9f4d-40c0-8aca-a4ceb62282a0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:10 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "14982" + ], + "x-ms-request-id": [ + "f4a0032d-76e1-4d0f-a806-d7f4bd4554d6" + ], + "x-ms-correlation-request-id": [ + "f4a0032d-76e1-4d0f-a806-d7f4bd4554d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163802Z:f4a0032d-76e1-4d0f-a806-d7f4bd4554d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:01 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": [ + "14981" + ], + "x-ms-request-id": [ + "45ea1c2a-ee53-49ef-9970-7619d76e2e8e" + ], + "x-ms-correlation-request-id": [ + "45ea1c2a-ee53-49ef-9970-7619d76e2e8e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:45ea1c2a-ee53-49ef-9970-7619d76e2e8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:09 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": [ + "2bef72eb-0044-4959-8e4e-eaf8db48b405" + ], + "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": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "e69e0d07-4d8f-4dde-8a89-3962bc2b2bef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163802Z:e69e0d07-4d8f-4dde-8a89-3962bc2b2bef" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:01 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "c62cae5b-47cd-4fd9-a1e1-9ec9a8c10314" + ], + "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": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "161077bb-5353-4970-bf3e-96a26f01db6f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:161077bb-5353-4970-bf3e-96a26f01db6f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "c788b677-8609-47f9-9e90-8b4e37977df2" + ], + "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": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "74eeb2ef-df61-465c-bb98-9c81f6e53477" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163802Z:74eeb2ef-df61-465c-bb98-9c81f6e53477" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:02 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "f8732654-97ce-47bc-aab8-a2206754db5d" + ], + "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": [ + "20d29507-9621-4445-80b7-1e4558565037" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:20d29507-9621-4445-80b7-1e4558565037" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "bbf3cb28-71e2-45ea-acd4-0eed996c5034" + ], + "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": [ + "4d33ddc2-2626-40dc-a5b9-33248a17bd0f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163802Z:4d33ddc2-2626-40dc-a5b9-33248a17bd0f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:02 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "26ce7173-6ef5-481e-aeb7-ee30521f3b7b" + ], + "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": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "f43a8cd0-3efe-49b9-86ee-66d2a1e56e1d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:f43a8cd0-3efe-49b9-86ee-66d2a1e56e1d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "4fd49ce9-970d-4907-99f1-02af6dd49c21" + ], + "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": [ + "b1383462-d810-4064-b85c-7f43fd2caf3c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163802Z:b1383462-d810-4064-b85c-7f43fd2caf3c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:02 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "b2f90273-5950-4e47-804a-82d59543c6aa" + ], + "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": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "39079bcb-6d25-4df1-8238-7154622b4a2d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:39079bcb-6d25-4df1-8238-7154622b4a2d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "fb6b6551-f4aa-4f3f-91f7-194ee8f07a0f" + ], + "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": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "e496bd4c-cfc2-444f-b602-8b3476956061" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163802Z:e496bd4c-cfc2-444f-b602-8b3476956061" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:02 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "47d5295b-4a5e-4c4a-92da-97dc97e855f7" + ], + "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": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "e1dc5175-32b4-430a-aeaf-9bb47e419e21" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:e1dc5175-32b4-430a-aeaf-9bb47e419e21" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "9222fe1a-215e-4ccf-8956-1443620acb73" + ], + "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": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "77fb7f25-c3e6-43a4-8969-f230256c3fb4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163803Z:77fb7f25-c3e6-43a4-8969-f230256c3fb4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:02 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "1b5591dc-9880-47b3-a21f-50cf62242c2d" + ], + "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": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "d8ef24d4-abae-46f1-a8c0-08ee46497dc2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163810Z:d8ef24d4-abae-46f1-a8c0-08ee46497dc2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "3fa96b6e-d5a7-409f-ad73-eeac8d0e6f8f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "71848575-4100-4254-8346-9329cabf4e2c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "dd91b172-e3a2-480e-9ef1-dc42e975f377" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163804Z:dd91b172-e3a2-480e-9ef1-dc42e975f377" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/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": [ + "51638398-dae6-4522-b032-0b943592f246" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "f9c78fec-6e3e-4db8-bab8-5bdac079897d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "53c81cd3-d423-45b8-8ded-88f0e785c422" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163811Z:53c81cd3-d423-45b8-8ded-88f0e785c422" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:11 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": [ + "ccc31ad9-4231-4f95-9426-058fd811c0a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "79fe3b20-d626-41c3-9eb0-ab7f718baa30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "473a971c-f59f-45bd-be2f-7f6e5f5403df" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163804Z:473a971c-f59f-45bd-be2f-7f6e5f5403df" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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/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": [ + "25926e66-df43-448b-86e5-3ca1712517d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "ef8cb3f2-0dd5-43e9-8520-cc8cbdd707d0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "2714fa3b-646a-49f8-b47f-a86830c33383" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163811Z:2714fa3b-646a-49f8-b47f-a86830c33383" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:11 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": [ + "59a2026c-6dc8-4ea8-876d-c066295fd17d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "72f01c15-1578-4a42-8db1-199c0145fbc9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "d1479f1b-b8eb-4413-8123-881b137cd500" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163806Z:d1479f1b-b8eb-4413-8123-881b137cd500" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38: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": [ + "fce7b63c-e347-4888-bd95-d758e0b39906" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "cab09272-c0f4-442d-bf26-77fc4de5e563" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "dafc2502-0331-4fee-bc66-fd193b6c7ad2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163811Z:dafc2502-0331-4fee-bc66-fd193b6c7ad2" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:11 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": [ + "94f68745-f36c-48bc-b076-236a12764585" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "fd57f073-8b83-46b5-aa05-144e88f229b0" + ], + "x-ms-correlation-request-id": [ + "fd57f073-8b83-46b5-aa05-144e88f229b0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163806Z:fd57f073-8b83-46b5-aa05-144e88f229b0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:05 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": [ + "eb55a7ab-c91b-4d34-95d1-c69c67864231" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "afe87452-68f2-4492-9aff-bd5d984896a3" + ], + "x-ms-correlation-request-id": [ + "afe87452-68f2-4492-9aff-bd5d984896a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T163812Z:afe87452-68f2-4492-9aff-bd5d984896a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:38:11 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..8cd6d5529d5c --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json @@ -0,0 +1,4712 @@ +{ + "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": [ + "8120f98f-02bc-4f83-bb5e-d6254d0c7985" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ce038eb7-fe92-4265-adc9-ada3652bf83f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "5e40bf8e-bb0a-4352-b446-5b23d1f37097" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164141Z:5e40bf8e-bb0a-4352-b446-5b23d1f37097" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:41 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "aa9f4f5f-1a5e-434e-b42a-03b14c4b14b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4cb12121-5795-419f-9223-d0df91f35d83" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "a20c01aa-57c7-4d96-8827-86e5a5e993af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164144Z:a20c01aa-57c7-4d96-8827-86e5a5e993af" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:44 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "a9a9ddd4-ced8-437a-ae15-9112e521c230" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3133bd1d-60df-4aa4-b9dc-424795fcb47f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "cd17b028-c283-4d0b-9e73-017bd2009adf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164153Z:cd17b028-c283-4d0b-9e73-017bd2009adf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:52 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "1caceddd-d09c-4269-8228-18b5b06e8664" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b402237a-72d5-4192-aa78-f0bf01e2b5ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "1ca67026-a09d-403a-bb3a-02bb79f8fe9d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164155Z:1ca67026-a09d-403a-bb3a-02bb79f8fe9d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:55 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "e06d50e1-c072-449e-95dc-93a0818aeccc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8f7fbdc7-dd1e-407d-a5c9-8c03b66dab76" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "1602ac34-b8f2-4396-8397-e26b38fbb154" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164206Z:1602ac34-b8f2-4396-8397-e26b38fbb154" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:05 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "533a5f35-46dc-4987-8b74-c7bc7860488b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2eed969a-29d6-43f3-aca1-fcb99faa1318" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "40c54bb0-e899-40ea-b0c2-440c0e170ae8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164214Z:40c54bb0-e899-40ea-b0c2-440c0e170ae8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:14 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "7a8bb7c3-1db1-46a2-bd81-6b8bb9b3b260" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "5df4addb-19e4-41da-b4ce-a2cb650572e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "f7d1a2b7-98f6-4dc5-b325-84eedafc3529" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164141Z:f7d1a2b7-98f6-4dc5-b325-84eedafc3529" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4cabed0-9334-44d4-8a93-e31f9541652e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "02a3d450-221e-4a81-b6d8-163c99003f56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "bbdae6c0-de6c-425d-89a8-40e6787c6539" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164145Z:bbdae6c0-de6c-425d-89a8-40e6787c6539" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:44 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": [ + "59fc00ac-a234-4a93-b6de-eff3a16c8774" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "52e57d36-771c-402f-a183-cfcd5977d11f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "0c711afe-c9a1-4715-955a-f38d273339c0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164153Z:0c711afe-c9a1-4715-955a-f38d273339c0" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:52 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": [ + "84be9546-d9c5-4136-ad4c-f3f0bd215dd5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "454018b3-ab46-4f76-996c-63e71cd133d3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "b740b63f-249b-464d-9410-115dc065fa8e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164155Z:b740b63f-249b-464d-9410-115dc065fa8e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:55 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": [ + "a20ba97d-537c-4726-8013-b48c4887d630" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "e20f8ebf-027d-4960-b283-1d9462cb6af8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "971720da-b39b-42b4-b033-bb641871357e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164206Z:971720da-b39b-42b4-b033-bb641871357e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/webappsslbindingrb/providers/Microsoft.Web/sites/webappsslbindingtest/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a5d7ff4-d777-48ba-9525-d02b2a7cb234" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "5caf0c7b-8eb3-415c-ad8b-5d4afba866b4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "3904821c-0455-4c45-af00-e292f53692ec" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164215Z:3904821c-0455-4c45-af00-e292f53692ec" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "37ce1cf4-ef8e-4bdd-8fdb-53febe66414a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0f102755-2523-402a-9ed1-7a702a6b70c9" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "408792bb-048d-4e4e-8ae3-981a7e503d04" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164141Z:408792bb-048d-4e4e-8ae3-981a7e503d04" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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": [ + "e3590a12-eea4-4689-a5db-31be647ce9fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "e98f7d7e-57d0-48b0-a3ab-b9de464ada11" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "69a29b7b-c3c4-49c7-bf51-472a50aff34d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164145Z:69a29b7b-c3c4-49c7-bf51-472a50aff34d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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/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": [ + "766592b2-383f-4377-ad18-c9275172c5cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "19186483-cfed-439f-bff0-0cb7cae5634f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "7521c206-2938-47ae-a8d4-fe9ddeb83340" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164153Z:7521c206-2938-47ae-a8d4-fe9ddeb83340" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:53 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": [ + "7572d3fc-fd6a-4449-b021-c76b09d81143" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "9c464461-8299-4fe9-aa9a-8742e556d1a3" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "65674801-776e-453e-901c-b0b872342a86" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164156Z:65674801-776e-453e-901c-b0b872342a86" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:55 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": [ + "f067006a-b456-49e2-a5f8-0882059fb7db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "0d6d4bcc-014a-4ec7-a6c5-68429771e40d" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "e5c399f1-e9b7-46b6-b87d-77680dd56ed8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164206Z:e5c399f1-e9b7-46b6-b87d-77680dd56ed8" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "151364a7-6d31-4a72-ad25-0e6999346266" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "77330ce0-75c0-4b3a-9eac-7aa3206a0845" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "5fd193c2-7f81-4867-a19d-c9bfc49e4b1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164215Z:5fd193c2-7f81-4867-a19d-c9bfc49e4b1a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b3817ed-f232-4211-9dbd-1f23be71b486" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "c1b713e2-e522-4036-9cbc-279a7d3be0e1" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e8c29e46-cbce-4c73-a619-29955fad993b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164142Z:e8c29e46-cbce-4c73-a619-29955fad993b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df52edf5-7d48-4d0e-bb38-179456a28598" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1221792e-7b37-4feb-91e5-ace98b7d2532" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "15eaa486-3724-4a54-b5a3-f2c70bc115fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164145Z:15eaa486-3724-4a54-b5a3-f2c70bc115fa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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/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": [ + "492ad015-3c82-44c2-81b7-583cd0d70917" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "3439e6d2-9e97-4621-8f89-3b5fdb3eac18" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "2ee11dbf-a594-4591-8d1d-e9857c71626c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164154Z:2ee11dbf-a594-4591-8d1d-e9857c71626c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:53 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": [ + "14a28504-61bf-4dc9-ad38-11c00578f3e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "3c606d9b-7f36-429c-9301-1cbf5516df8f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "b906474d-5cb0-4a68-ab5a-2f3c5d8ff173" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164156Z:b906474d-5cb0-4a68-ab5a-2f3c5d8ff173" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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": [ + "084a275d-662d-400c-95a6-7845082142e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "c5feeb02-15ea-46c3-b9d8-22945965cd81" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "cb771b99-57aa-4feb-9349-cb8f1ccb0d05" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164207Z:cb771b99-57aa-4feb-9349-cb8f1ccb0d05" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/config/connectionstrings/list?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "431dc68a-f0e0-46f8-b8be-68e95263242b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "700d7418-fe69-4ebf-a043-cd0505eb46bf" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "b09fece1-15bf-49ac-accc-17ae4aaab956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164215Z:b09fece1-15bf-49ac-accc-17ae4aaab956" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDE1LTA4LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "731c4834-8fcb-4ebf-826b-f7748741c772" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a9d4246d-e10e-4ad3-83cb-9c83db8426a0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "0e36b31d-a823-4951-97b1-296b9e92fe7a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164143Z:0e36b31d-a823-4951-97b1-296b9e92fe7a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:43 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "59c4212e-00a7-47c3-b6c2-715fba5475d9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b1ff37c2-57a9-4efa-b2c8-3a92d15e1c68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "c3bf563b-5f57-4c68-a920-1ca866638815" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164149Z:c3bf563b-5f57-4c68-a920-1ca866638815" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:49 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "aa12aff5-a81c-4942-bf50-4a4a5c0aee78" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "326ac688-6781-4923-a272-2ca78573e339" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "399c275e-cf85-4ef0-8016-59cb67c49638" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164154Z:399c275e-cf85-4ef0-8016-59cb67c49638" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:54 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "79f9c41e-6ae1-4800-89dd-ab501b317a8e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c9f7ed13-38c2-40de-a41c-d7833de8ed0c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "56c5ba3d-a330-4c6e-add9-9f39ce6edac9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164207Z:56c5ba3d-a330-4c6e-add9-9f39ce6edac9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:07 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "c4abe5b1-7b54-4dbb-b7c7-200fa0532010" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6783e868-e782-4548-ae90-869300a55cfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "9a1eca4c-8833-4fed-b207-b9f34bbd5b65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164213Z:9a1eca4c-8833-4fed-b207-b9f34bbd5b65" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:13 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "8834cbd5-cbd5-45ea-997f-ebe90baedfa8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cea10e4e-b327-43b4-b271-6abf66877028" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "a598a552-2b60-4835-86e0-824d5bf3c011" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164215Z:a598a552-2b60-4835-86e0-824d5bf3c011" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:15 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "f8f358b0-3199-451c-9445-e4be0a980f1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "5390ee81-0f72-4103-9b1a-e27b2ddd4a9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "127c6e4c-37c6-454f-bae8-9a9f0e1efe1f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164143Z:127c6e4c-37c6-454f-bae8-9a9f0e1efe1f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:43 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": [ + "aa1efeba-03b6-4cf6-93ba-e8ed146fd712" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "f2da7b00-4f6e-422b-8e7b-0ec43c890e28" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "e3a4816a-c0b2-4fd5-a31a-46690b80673b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164149Z:e3a4816a-c0b2-4fd5-a31a-46690b80673b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d700014-fb60-4fb5-b65e-745c8bfb08b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "72c0694a-e345-49f5-8e34-b1524e37da56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "23d5f31a-2a71-402f-9685-37d78632dd04" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164155Z:23d5f31a-2a71-402f-9685-37d78632dd04" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:54 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": [ + "9da643c2-0eaf-4d8a-966c-86126d6ebf80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1c17a4f0-e53f-49d3-bdba-9a34f249f359" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "4fcd1833-f869-42c3-83cf-b4e867cc435d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164207Z:4fcd1833-f869-42c3-83cf-b4e867cc435d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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": [ + "65028590-44a7-4887-b620-4c64c0cc4e58" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "aec227bf-3cf4-451b-baf8-8203f8f994b6" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "b8ce5d48-c2fa-4fec-b264-c8c6ef6af941" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164214Z:b8ce5d48-c2fa-4fec-b264-c8c6ef6af941" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/slots/testslot/config/web?api-version=2015-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZWY5MGU5MzAtOWQ3Zi00YTYwLThhOTktNzQ4ZTBlZWE2OWRlL3Jlc291cmNlR3JvdXBzL3dlYmFwcHNzbGJpbmRpbmdyYi9wcm92aWRlcnMvTWljcm9zb2Z0LldlYi9zaXRlcy93ZWJhcHBzc2xiaW5kaW5ndGVzdC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dae142c4-9a6b-4ccb-9d83-a92fb44a075e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "4aa60787-2f9b-4531-9bb2-4c8684ebda9d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "b7a1a892-617f-4678-9e7c-4fe48774288b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164215Z:b7a1a892-617f-4678-9e7c-4fe48774288b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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": [ + "667ca37d-5b1d-4dd8-a605-fcf040e83041" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "42c2c47a-5840-46ce-9ef4-ff46241b7710" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e3c4c481-0011-4c15-a5e3-9db4b0a190cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164144Z:e3c4c481-0011-4c15-a5e3-9db4b0a190cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:43 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": [ + "67285a20-2bde-41c4-b29c-4239f83ab586" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "cc6480d2-5b09-4094-8c74-ac1e63f08aad" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "17963f49-83bd-44b0-bee1-54a92513b8d6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164149Z:17963f49-83bd-44b0-bee1-54a92513b8d6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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": [ + "1e427716-11c6-48db-bc51-9cff9cb54769" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "53c852fa-8409-4715-8ab7-25e5309a7a01" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "009a0d3c-d66c-4ec6-9cf8-0c17e1362bf1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164155Z:009a0d3c-d66c-4ec6-9cf8-0c17e1362bf1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:54 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": [ + "1500d302-96d3-4712-a5d8-191082cc6b05" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "9380856b-e4a9-46b7-978e-5470f1ea5919" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d28fff70-372c-4134-86e5-39b1d06d9c5e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164208Z:d28fff70-372c-4134-86e5-39b1d06d9c5e" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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": [ + "88342432-2327-458b-8c64-5fe4ebb937ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "c253d489-949d-4d6c-8117-3d2a62b4e1f0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "cb6535b2-e271-4eb6-a47d-195cfa197ffb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164214Z:cb6535b2-e271-4eb6-a47d-195cfa197ffb" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "a01561f7-4217-47b4-b98d-60cf2bc6f7a5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "819e5514-f501-400c-8105-987b0567545f" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "3072c066-7235-4f5e-9edc-51bf28b61332" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164216Z:3072c066-7235-4f5e-9edc-51bf28b61332" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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": [ + "bae4f9e9-bc9e-4542-b9fa-e964f6e24f1d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "161a960c-9705-45f2-8683-311d095c4bfb" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "d4fc34e5-85b6-4d50-9d04-9f0137c796cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164144Z:d4fc34e5-85b6-4d50-9d04-9f0137c796cf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:44 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": [ + "4b976c0b-bcfb-45b2-88e1-e61faede2fd8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "1da77bc6-c685-40f8-870b-9fddd681674e" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "8a4a978e-cc70-4961-8650-9b162a2a5d78" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164150Z:8a4a978e-cc70-4961-8650-9b162a2a5d78" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41: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": [ + "eb6fa6e3-03ac-44ee-80f2-45a9a405c903" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "708d4752-1dfc-460c-9538-360b00c676a1" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "5091f652-db08-4033-806b-a32b2c96503c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164155Z:5091f652-db08-4033-806b-a32b2c96503c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:54 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": [ + "82d2d747-9f75-448a-b81c-833cf84b040b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "28ac4111-14de-4009-80a6-64ae4360843a" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "1054360d-d553-46f1-958c-a0ffc8c373a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164208Z:1054360d-d553-46f1-958c-a0ffc8c373a4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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": [ + "3f1beab7-7fc7-4f2f-af25-9bb438e316c2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "fea1eba0-0938-408c-9453-3b82cd0d3713" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "4cf15ec4-c31d-4899-a339-2605d1e644c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164214Z:4cf15ec4-c31d-4899-a339-2605d1e644c1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "b030d638-c3f2-41c9-9573-e752fda382c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6a5f874d-6bf6-48f0-a5a4-06c8d2a187aa" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "48c7aa31-991a-4d8e-b6de-743cac1d81a3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164216Z:48c7aa31-991a-4d8e-b6de-743cac1d81a3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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?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": [ + "7d34c946-8d5c-4a46-9fe6-e3dee4ea8075" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3415" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23f3320b-18bc-4279-aa67-6f97997f72d9" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d3ffab07-8dd1-4eca-9e12-2bc79aa77ebf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164148Z:d3ffab07-8dd1-4eca-9e12-2bc79aa77ebf" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:48 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "fba425ee-e920-4ba3-939d-405753355ef3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "3377" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1c36b0b1-a0fc-47d9-8813-ebaec900449f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "f365748b-16e7-47c4-9bfe-960e35610cbd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164158Z:f365748b-16e7-47c4-9bfe-960e35610cbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:58 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "7c1e44ac-6e0a-4031-8e1e-289bdea83d35" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2991" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "209a7c6c-a702-45f0-af84-aeaf467d64da" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "9b2fc40e-ac69-426c-afa7-47577a4d8589" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164153Z:9b2fc40e-ac69-426c-afa7-47577a4d8589" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:52 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "d4c9d3c9-fea5-4d74-bb24-9d4b051c3fd1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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-07T16:30:19.477\",\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 \"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": [ + "2953" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c187e5d2-eb9a-4be3-9147-bb0620257c2e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "f9f969c6-d8ed-40ca-b64f-00d8d68910c4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164210Z:f9f969c6-d8ed-40ca-b64f-00d8d68910c4" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:10 GMT" + ], + "ETag": [ + "\"1D1310C8FF12850\"" + ], + "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": [ + "14928" + ], + "x-ms-request-id": [ + "f066fb6b-5a8e-4ad7-a4eb-3f2ba93cef54" + ], + "x-ms-correlation-request-id": [ + "f066fb6b-5a8e-4ad7-a4eb-3f2ba93cef54" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164159Z:f066fb6b-5a8e-4ad7-a4eb-3f2ba93cef54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:41:58 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": [ + "14926" + ], + "x-ms-request-id": [ + "88885895-9511-4d6c-adcf-3cb92501c83a" + ], + "x-ms-correlation-request-id": [ + "88885895-9511-4d6c-adcf-3cb92501c83a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164210Z:88885895-9511-4d6c-adcf-3cb92501c83a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:10 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": [ + "413f6802-48af-497e-bffc-097bd059531b" + ], + "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": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "a5a455de-5a44-4ad8-8349-ef6f63e72175" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164200Z:a5a455de-5a44-4ad8-8349-ef6f63e72175" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:00 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "2b60cdde-0a94-4893-96c5-6f8054f2f66f" + ], + "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": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "e0118fec-c83e-4a36-aef3-59b70ed07054" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164210Z:e0118fec-c83e-4a36-aef3-59b70ed07054" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "1fcd387d-5aea-46ab-bf05-ed3f9b9c5393" + ], + "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": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "5217cd44-5506-4daf-a730-ad635c9b15d1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164200Z:5217cd44-5506-4daf-a730-ad635c9b15d1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:00 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "8ad4d0bc-4e51-4359-998b-521404276916" + ], + "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": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "d6412e6c-e083-4004-b013-067125e0ca77" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164211Z:d6412e6c-e083-4004-b013-067125e0ca77" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "d14cf2e8-7f96-47b0-84b7-fef07ffc0640" + ], + "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": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "acf031f6-a47e-4e4d-bb3c-75d2d2fe4289" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164200Z:acf031f6-a47e-4e4d-bb3c-75d2d2fe4289" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:00 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "701d227a-eea6-4725-88b5-64dc385b1cc1" + ], + "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": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "886fbf4e-3117-40e4-a14b-93ef3735d15b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164211Z:886fbf4e-3117-40e4-a14b-93ef3735d15b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:10 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "21246ad3-9567-4575-a229-fc231d4f6f1b" + ], + "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": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "9fd31b99-be2b-41a6-9c1f-81a0555cf49a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164201Z:9fd31b99-be2b-41a6-9c1f-81a0555cf49a" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:00 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "658b9fc0-1fbb-4bff-a428-4d980b4d7a7e" + ], + "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": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "9d744684-5675-49fd-bbe3-741b9b9d6008" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164211Z:9d744684-5675-49fd-bbe3-741b9b9d6008" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:11 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "1a2bbe1f-326a-4edc-be11-e6766724c2e6" + ], + "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": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "ba40674e-9d3b-4c14-807d-fbef0013bb8d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164201Z:ba40674e-9d3b-4c14-807d-fbef0013bb8d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:00 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "e8d72d86-935a-4a1b-beef-753d58d0c869" + ], + "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": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "f39742f7-88c9-47ff-9af3-ca80aad72aee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164211Z:f39742f7-88c9-47ff-9af3-ca80aad72aee" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:11 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "3b46e6a6-8169-48bb-8954-75ce76405cee" + ], + "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": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "36907272-67f7-4968-830c-8ed56b89664f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164201Z:36907272-67f7-4968-830c-8ed56b89664f" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:00 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "01895b76-3e9b-49b3-ba6f-2ba3c6daf4b1" + ], + "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": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "2a1cd006-5f63-4b80-8670-66f34e46ce65" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164211Z:2a1cd006-5f63-4b80-8670-66f34e46ce65" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:11 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/" + ], + "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": [ + "6e6494c2-3e6d-4bf8-93ff-3219e6a2a573" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "30eb672a-bd70-4fbb-a021-77f45111efe5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "e67c6ec3-cadf-4ad8-a3a1-79c5a1287cf6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164202Z:e67c6ec3-cadf-4ad8-a3a1-79c5a1287cf6" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "77fabc86-4d2a-4c55-b49c-6b4298c3aae7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "5c02632c-ac03-46e7-8449-1b0ab81c0734" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "c7f0a90d-d6cc-4d3c-96dd-84a3faf6c65c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164211Z:c7f0a90d-d6cc-4d3c-96dd-84a3faf6c65c" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:11 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": [ + "e1da4fbc-59a0-4e19-a7c8-25b66df5056b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "639059f6-a7fa-4448-a4e5-7f9fd156750f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "35fd89ea-84e5-4bda-9cb9-f72c193bc4aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164202Z:35fd89ea-84e5-4bda-9cb9-f72c193bc4aa" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "5c72600b-8680-4674-b828-de443bc43fba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "f15f13b8-5bcf-4cb4-abd1-2279c63955c5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "9b525833-08cc-4841-b298-f3e19168deae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164212Z:9b525833-08cc-4841-b298-f3e19168deae" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "e298067d-179a-485d-9b1d-cc916d896f8c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "10840499-e3ff-46a1-859b-f201c7875da4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "fa8a3b9a-810c-4925-a52b-0e41ebaa1618" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164205Z:fa8a3b9a-810c-4925-a52b-0e41ebaa1618" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "8b14a7ee-0e8a-472e-af39-722b49a1ecf8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "6419b762-c028-4772-ba42-4158f80ab1dc" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "108f66fb-d336-4a81-838f-5d7ad5128b89" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164212Z:108f66fb-d336-4a81-838f-5d7ad5128b89" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42: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/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": [ + "bf70e543-20de-40f8-a827-264c133f81cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "51c0dd56-a75a-4042-be2b-cbc0c7d646e9" + ], + "x-ms-correlation-request-id": [ + "51c0dd56-a75a-4042-be2b-cbc0c7d646e9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164206Z:51c0dd56-a75a-4042-be2b-cbc0c7d646e9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:05 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": [ + "e90882f9-03ed-4dde-b420-08d5abb722a7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + ] + }, + "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": [ + "92084379-d281-41d1-80ac-f0d933b42112" + ], + "x-ms-correlation-request-id": [ + "92084379-d281-41d1-80ac-f0d933b42112" + ], + "x-ms-routing-request-id": [ + "WESTUS:20151207T164213Z:92084379-d281-41d1-80ac-f0d933b42112" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 07 Dec 2015 16:42:13 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/Cmdlets/Certificates/GetAzureRMWebAppCertificate.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppCertificate.cs new file mode 100644 index 000000000000..60efa4467551 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppCertificate.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 GetAzureRMWebAppCertificate : 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/GetAzureRMWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppSSLBinding.cs new file mode 100644 index 000000000000..955ed29a6d2e --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppSSLBinding.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 GetAzureRMWebAppSSLBinding : 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/NewAzureRMWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureRMWebAppSSLBinding.cs new file mode 100644 index 000000000000..e6bbb9e594b4 --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureRMWebAppSSLBinding.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 NewAzureRMWebAppSSLBinding : 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/RemoveAzureRMWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureRMWebAppSSLBinding.cs new file mode 100644 index 000000000000..9e62503cc1ca --- /dev/null +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureRMWebAppSSLBinding.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 RemoveAzureRMWebAppSSLBinding : 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/WebApps/GetAzureWebApp.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebApp.cs index f9d0cd212237..02b9c14ea38e 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebApp.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/GetAzureWebApp.cs @@ -107,7 +107,7 @@ private void GetByWebAppName() WriteProgress(progressRecord); } - WriteObject(list); + WriteObject(list[0]); } private void GetByResourceGroup() diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index 577b8820c5ac..092c334c2b31 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -74,9 +74,9 @@ ..\..\..\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 - True + + False + ..\..\..\..\..\azure-sdk-for-net\src\ResourceManagement\WebSite\artifacts\bin\Microsoft.Azure.Management.Websites\Debug\net45\Microsoft.Azure.Management.Websites.dll False @@ -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) From d895dcc6548528a8ddcea192aecb70e8a4a2abfa Mon Sep 17 00:00:00 2001 From: akurmi - Ashish Kurmi Date: Thu, 17 Dec 2015 17:18:20 -0800 Subject: [PATCH 2/7] Updating nuget library 'Microsoft.Azure.Management.Websites' to v1.0.1-preview --- .../Commands.Websites.Test.csproj | 21 +++++++++---------- .../Commands.Websites.Test/packages.config | 8 +++---- .../Commands.Websites.csproj | 21 +++++++++---------- .../Commands.Websites/packages.config | 8 +++---- 4 files changed, 28 insertions(+), 30 deletions(-) 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 7249060a9ac0..7f3ab5b70b8c 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -63,9 +63,9 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll True - - False - ..\..\..\..\..\azure-sdk-for-net\src\ResourceManagement\WebSite\artifacts\bin\Microsoft.Azure.Management.Websites\Debug\net45\Microsoft.Azure.Management.Websites.dll + + ..\..\..\packages\Microsoft.Azure.Management.Websites.1.0.1-preview\lib\net45\Microsoft.Azure.Management.Websites.dll + True False @@ -87,14 +87,12 @@ False ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll - - False - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True - - False - ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.2.1.0\lib\dotnet\Microsoft.Rest.ClientRuntime.Azure.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.2.5.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll True @@ -109,8 +107,8 @@ ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll - - ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll True @@ -129,6 +127,7 @@ + ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll True diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config index 97fd6320afe7..26fad60364b0 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config @@ -7,7 +7,7 @@ - + @@ -15,12 +15,12 @@ - - + + - + diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index 092c334c2b31..b24cf012b08e 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -74,9 +74,9 @@ ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.0.0\lib\net40\Microsoft.Azure.Management.Authorization.dll True - - False - ..\..\..\..\..\azure-sdk-for-net\src\ResourceManagement\WebSite\artifacts\bin\Microsoft.Azure.Management.Websites\Debug\net45\Microsoft.Azure.Management.Websites.dll + + ..\..\..\packages\Microsoft.Azure.Management.Websites.1.0.1-preview\lib\net45\Microsoft.Azure.Management.Websites.dll + True False @@ -91,13 +91,12 @@ ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll True - - False - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True - - ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.2.1.0\lib\dotnet\Microsoft.Rest.ClientRuntime.Azure.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.2.5.1\lib\net45\Microsoft.Rest.ClientRuntime.Azure.dll True @@ -116,9 +115,9 @@ False ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll - - False - ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + True diff --git a/src/ResourceManager/Websites/Commands.Websites/packages.config b/src/ResourceManager/Websites/Commands.Websites/packages.config index 2bf0eeeb831b..76c98b122eb4 100644 --- a/src/ResourceManager/Websites/Commands.Websites/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites/packages.config @@ -8,14 +8,14 @@ - + - - + + - + \ No newline at end of file From 4c8771272c00521ddbdb0b3a7adcac884ca294e5 Mon Sep 17 00:00:00 2001 From: akurmi - Ashish Kurmi Date: Fri, 18 Dec 2015 13:00:00 -0800 Subject: [PATCH 3/7] Upgrading Microsoft.Rest.ClientRuntime to v1.8.0 --- src/Common/Commands.Common/Commands.Common.csproj | 8 ++++---- src/Common/Commands.Common/packages.config | 4 ++-- .../Commands.ResourceManager.Common.csproj | 8 ++++---- .../packages.config | 4 ++-- ...nds.ScenarioTests.ResourceManager.Common.csproj | 10 +++++----- .../packages.config | 4 ++-- .../Commands.Profile/Commands.Profile.csproj | 11 ++++++----- .../Profile/Commands.Profile/packages.config | 4 ++-- .../Cmdlets/Commands.Resources.Rest.csproj | 14 ++++++++------ .../Cmdlets/packages.config | 4 ++-- .../Commands.Resources/Commands.Resources.csproj | 10 +++++----- .../Resources/Commands.Resources/packages.config | 4 ++-- .../Tags/Commands.Tags/Commands.Tags.csproj | 10 +++++----- .../Tags/Commands.Tags/packages.config | 4 ++-- 14 files changed, 51 insertions(+), 48 deletions(-) diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index 3e9de911d833..30c0722fd823 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -82,8 +82,8 @@ False ..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll - - ..\..\packages\Microsoft.Rest.ClientRuntime.1.3.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll + + ..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -106,8 +106,8 @@ ..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll True - - ..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + + ..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll True diff --git a/src/Common/Commands.Common/packages.config b/src/Common/Commands.Common/packages.config index c7ffb8aff4e5..5b2acf707770 100644 --- a/src/Common/Commands.Common/packages.config +++ b/src/Common/Commands.Common/packages.config @@ -12,8 +12,8 @@ - + - + \ No newline at end of file diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index ca5dd564ca6b..854880206945 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -76,8 +76,8 @@ False ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll - - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.3.0\lib\portable-net45+win8+wpa81\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -100,8 +100,8 @@ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll True - - ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll True diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config b/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config index 003259eda4f2..b2618c017e7c 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config @@ -11,8 +11,8 @@ - + - + \ No newline at end of file diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj index 9b2b73d2b711..dbb14a35e0a7 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj @@ -74,8 +74,8 @@ False ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll - - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -98,9 +98,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - False - ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + True diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config index ef144a166538..c2793d6f5a14 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config @@ -12,10 +12,10 @@ - + - + diff --git a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj index 90e4e87c134d..ce665eb9cfa2 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj +++ b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj @@ -66,6 +66,7 @@ + ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -74,8 +75,8 @@ ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll True - - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -102,9 +103,9 @@ False ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - False - ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + True diff --git a/src/ResourceManager/Profile/Commands.Profile/packages.config b/src/ResourceManager/Profile/Commands.Profile/packages.config index c3def5e2e99f..c2fdf04a201a 100644 --- a/src/ResourceManager/Profile/Commands.Profile/packages.config +++ b/src/ResourceManager/Profile/Commands.Profile/packages.config @@ -10,8 +10,8 @@ - + - + \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj index 511a915eeb56..46591a487f83 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj @@ -22,7 +22,7 @@ ..\..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Resources\ DEBUG;TRACE prompt - 4 + 0 true false @@ -58,6 +58,7 @@ False ..\..\..\..\packages\Microsoft.Azure.Common.Authentication.1.4.1-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll + ..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -66,17 +67,17 @@ ..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll True - - ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll True - - False - ..\..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + ..\..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + True @@ -86,6 +87,7 @@ + diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config index 567c9426ed2d..dc5dfefdf691 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config @@ -9,8 +9,8 @@ - + - + \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index 810abcc5467e..0d3e47e50afb 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -84,8 +84,8 @@ ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll True - - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -107,9 +107,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - False - ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + True diff --git a/src/ResourceManager/Resources/Commands.Resources/packages.config b/src/ResourceManager/Resources/Commands.Resources/packages.config index ee7a867a3458..a9960b056b50 100644 --- a/src/ResourceManager/Resources/Commands.Resources/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources/packages.config @@ -13,8 +13,8 @@ - + - + \ No newline at end of file diff --git a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj index e5bbae277a4e..4ec1be8e1e40 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj +++ b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj @@ -73,8 +73,8 @@ ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.WindowsForms.dll True - - ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.4.1\lib\dotnet\Microsoft.Rest.ClientRuntime.dll + + ..\..\..\packages\Microsoft.Rest.ClientRuntime.1.8.0\lib\net45\Microsoft.Rest.ClientRuntime.dll True @@ -96,9 +96,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - False - ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + True diff --git a/src/ResourceManager/Tags/Commands.Tags/packages.config b/src/ResourceManager/Tags/Commands.Tags/packages.config index c3def5e2e99f..c2fdf04a201a 100644 --- a/src/ResourceManager/Tags/Commands.Tags/packages.config +++ b/src/ResourceManager/Tags/Commands.Tags/packages.config @@ -10,8 +10,8 @@ - + - + \ No newline at end of file From e17021aa45f9c9188a8ca0698a85193b17075819 Mon Sep 17 00:00:00 2001 From: akurmi - Ashish Kurmi Date: Fri, 18 Dec 2015 13:59:21 -0800 Subject: [PATCH 4/7] Adding app.config with assemblyBinding node for Newtonsoft.Json --- src/Common/Commands.Common/Commands.Common.csproj | 1 + .../Commands.ResourceManager.Common.csproj | 1 + .../Profile/Commands.Profile/Commands.Profile.csproj | 1 + .../Cmdlets/Commands.Resources.Rest.csproj | 1 + .../Resources/Commands.Resources/Commands.Resources.csproj | 1 + src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj | 1 + .../Websites/Commands.Websites/Commands.Websites.csproj | 1 + 7 files changed, 7 insertions(+) diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index 30c0722fd823..b5f597312324 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -183,6 +183,7 @@ + Designer diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index 854880206945..444080743b91 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -276,6 +276,7 @@ Resources.resx + Designer diff --git a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj index ce665eb9cfa2..1629dbb8ca7c 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj +++ b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj @@ -175,6 +175,7 @@ CheckVersions.ps1 PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj index 46591a487f83..313bb794eac6 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj @@ -188,6 +188,7 @@ AzureRM.Resources.psd1 PreserveNewest + Designer diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index 0d3e47e50afb..70d8c962d046 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -269,6 +269,7 @@ AzureRM.Resources.psd1 PreserveNewest + PreserveNewest diff --git a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj index 4ec1be8e1e40..cb1c5a8967d0 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj +++ b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj @@ -133,6 +133,7 @@ AzureRM.Tags.psd1 PreserveNewest + diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index b24cf012b08e..997ddfc67955 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -193,6 +193,7 @@ AzureRM.Websites.psd1 PreserveNewest + Designer From d2d0250a59e0a87dbb30a50032afb97d2919191f Mon Sep 17 00:00:00 2001 From: akurmi - Ashish Kurmi Date: Tue, 29 Dec 2015 21:31:47 -0800 Subject: [PATCH 5/7] Restoring .csproj and .packages files --- src/Common/Commands.Common/Commands.Common.csproj | 5 ++--- src/Common/Commands.Common/packages.config | 2 +- .../Commands.ResourceManager.Common.csproj | 5 ++--- .../Commands.ResourceManager.Common/packages.config | 2 +- ...mmands.ScenarioTests.ResourceManager.Common.csproj | 6 +++--- .../packages.config | 2 +- .../Profile/Commands.Profile/Commands.Profile.csproj | 8 +++----- .../Profile/Commands.Profile/packages.config | 2 +- .../Cmdlets/Commands.Resources.Rest.csproj | 11 ++++------- .../Commands.ResourceManager/Cmdlets/packages.config | 2 +- .../Commands.Resources/Commands.Resources.csproj | 7 +++---- .../Resources/Commands.Resources/packages.config | 2 +- .../Tags/Commands.Tags/Commands.Tags.csproj | 7 +++---- .../Tags/Commands.Tags/packages.config | 2 +- .../Commands.Websites.Test.csproj | 9 ++++----- .../Websites/Commands.Websites.Test/packages.config | 4 ++-- .../Commands.Websites/Commands.Websites.csproj | 11 +++++------ .../Websites/Commands.Websites/packages.config | 4 ++-- 18 files changed, 40 insertions(+), 51 deletions(-) diff --git a/src/Common/Commands.Common/Commands.Common.csproj b/src/Common/Commands.Common/Commands.Common.csproj index 3d2471b2687d..f93f3a6d59ac 100644 --- a/src/Common/Commands.Common/Commands.Common.csproj +++ b/src/Common/Commands.Common/Commands.Common.csproj @@ -106,8 +106,8 @@ ..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll True - - ..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + + ..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll True @@ -183,7 +183,6 @@ - Designer diff --git a/src/Common/Commands.Common/packages.config b/src/Common/Commands.Common/packages.config index 98d39edb9a6f..2bce0bd10fa6 100644 --- a/src/Common/Commands.Common/packages.config +++ b/src/Common/Commands.Common/packages.config @@ -15,5 +15,5 @@ - + \ No newline at end of file diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj index a3b3eb7c9372..ccda7cf1220b 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/Commands.ResourceManager.Common.csproj @@ -100,8 +100,8 @@ ..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll True - - ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll True @@ -276,7 +276,6 @@ Resources.resx - Designer diff --git a/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config b/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config index 65c0a412d70b..2682f8ebaafa 100644 --- a/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config +++ b/src/ResourceManager/Common/Commands.ResourceManager.Common/packages.config @@ -14,5 +14,5 @@ - + \ No newline at end of file diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj index 7015bc263435..963d2b41b757 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/Commands.ScenarioTests.ResourceManager.Common.csproj @@ -98,9 +98,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll - True + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll diff --git a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config index 519baa5da69e..60d3dbb15de3 100644 --- a/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config +++ b/src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/packages.config @@ -15,7 +15,7 @@ - + diff --git a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj index 6b13be2e941b..e04c0f9a317f 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj +++ b/src/ResourceManager/Profile/Commands.Profile/Commands.Profile.csproj @@ -66,7 +66,6 @@ - ..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -103,9 +102,9 @@ False ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll - True + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -175,7 +174,6 @@ CheckVersions.ps1 PreserveNewest - PreserveNewest diff --git a/src/ResourceManager/Profile/Commands.Profile/packages.config b/src/ResourceManager/Profile/Commands.Profile/packages.config index f32c1675e7f5..119302a7c5c5 100644 --- a/src/ResourceManager/Profile/Commands.Profile/packages.config +++ b/src/ResourceManager/Profile/Commands.Profile/packages.config @@ -13,5 +13,5 @@ - + \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj index 08f722f27512..b9b8f62bb526 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Commands.Resources.Rest.csproj @@ -22,7 +22,7 @@ ..\..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Resources\ DEBUG;TRACE prompt - 0 + 4 true false @@ -58,7 +58,6 @@ False ..\..\..\..\packages\Microsoft.Azure.Common.Authentication.1.5.1-preview\lib\net45\Microsoft.Azure.Common.Authentication.dll - ..\..\..\..\packages\Microsoft.IdentityModel.Clients.ActiveDirectory.2.18.206251556\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll True @@ -75,9 +74,9 @@ ..\..\..\..\packages\Microsoft.Rest.ClientRuntime.Azure.Authentication.0.11.0\lib\net45\Microsoft.Rest.ClientRuntime.Azure.Authentication.dll True - - ..\..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll - True + + False + ..\..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -87,7 +86,6 @@ - @@ -188,7 +186,6 @@ AzureRM.Resources.psd1 PreserveNewest - Designer diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config index c8f66cfea078..8a54a447ef25 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/packages.config @@ -11,6 +11,6 @@ - + \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index be6dc950a694..08cbaec21e50 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -107,9 +107,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll - True + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -269,7 +269,6 @@ AzureRM.Resources.psd1 PreserveNewest - PreserveNewest diff --git a/src/ResourceManager/Resources/Commands.Resources/packages.config b/src/ResourceManager/Resources/Commands.Resources/packages.config index 4a95390366b0..16e2a430bad8 100644 --- a/src/ResourceManager/Resources/Commands.Resources/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources/packages.config @@ -16,5 +16,5 @@ - + \ No newline at end of file diff --git a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj index ab2715cd75a4..6a4a11363d95 100644 --- a/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj +++ b/src/ResourceManager/Tags/Commands.Tags/Commands.Tags.csproj @@ -96,9 +96,9 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll - True + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -133,7 +133,6 @@ AzureRM.Tags.psd1 PreserveNewest - diff --git a/src/ResourceManager/Tags/Commands.Tags/packages.config b/src/ResourceManager/Tags/Commands.Tags/packages.config index f32c1675e7f5..119302a7c5c5 100644 --- a/src/ResourceManager/Tags/Commands.Tags/packages.config +++ b/src/ResourceManager/Tags/Commands.Tags/packages.config @@ -13,5 +13,5 @@ - + \ No newline at end of file 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 27d7e154b8b7..691cb07fcb01 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.1-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 @@ -109,8 +109,8 @@ ..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll - - ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll True @@ -129,7 +129,6 @@ - ..\..\..\packages\xunit.1.9.2\lib\net20\xunit.dll True diff --git a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config index 0f4617edcc5d..b2ffec7baaf2 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites.Test/packages.config @@ -7,7 +7,7 @@ - + @@ -20,7 +20,7 @@ - + diff --git a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj index abea7215d5de..c0da3797a3b8 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.1-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 @@ -116,9 +116,9 @@ False ..\..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll - - ..\..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll - True + + False + ..\..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll @@ -194,7 +194,6 @@ AzureRM.Websites.psd1 PreserveNewest - Designer diff --git a/src/ResourceManager/Websites/Commands.Websites/packages.config b/src/ResourceManager/Websites/Commands.Websites/packages.config index 06ed98edb379..4ed948a5c97a 100644 --- a/src/ResourceManager/Websites/Commands.Websites/packages.config +++ b/src/ResourceManager/Websites/Commands.Websites/packages.config @@ -8,7 +8,7 @@ - + @@ -17,5 +17,5 @@ - + \ No newline at end of file From 515392bc96b7d227ae49bfcfeb58ee9bd1f8fafe Mon Sep 17 00:00:00 2001 From: akurmi - Ashish Kurmi Date: Tue, 29 Dec 2015 22:48:19 -0800 Subject: [PATCH 6/7] Renaming Web App cmdlets to use 'Rm' instead of 'RM' and fixing Web App Certificate cmdlet filenames. --- .../TestCreateNewWebAppSSLBinding.json | 726 +++++----- .../TestGetNewWebAppSSLBinding.json | 1002 +++++++------ .../TestGetWebAppCertificate.json | 764 +++++----- .../TestRemoveNewWebAppSSLBinding.json | 996 +++++++------ .../TestWebAppSSLBindingPipeSupport.json | 1270 +++++++++-------- .../AppServicePlans/GetAzureAppServicePlan.cs | 2 +- .../GetAzureAppServicePlanMetrics.cs | 2 +- .../AppServicePlans/NewAzureAppServicePlan.cs | 2 +- .../AppServicePlans/SetAzureAppServicePlan.cs | 2 +- ...ficate.cs => GetAzureWebAppCertificate.cs} | 4 +- ...Binding.cs => GetAzureWebAppSSLBinding.cs} | 4 +- ...Binding.cs => NewAzureWebAppSSLBinding.cs} | 4 +- ...ding.cs => RemoveAzureWebAppSSLBinding.cs} | 4 +- .../DeploymentSlots/GetAzureWebAppSlot.cs | 2 +- .../GetAzureWebAppSlotMetrics.cs | 2 +- .../GetAzureWebAppSlotPublishingProfile.cs | 2 +- .../DeploymentSlots/NewAzureWebAppSlot.cs | 2 +- .../DeploymentSlots/RemoveAzureWebAppSlot.cs | 2 +- .../ResetAzureWebAppSlotPublishingProfile.cs | 2 +- .../DeploymentSlots/RestartAzureWebAppSlot.cs | 2 +- .../DeploymentSlots/SetAzureWebAppSlot.cs | 2 +- .../DeploymentSlots/StartAzureWebAppSlot.cs | 2 +- .../DeploymentSlots/StopAzureWebAppSlot.cs | 2 +- .../Cmdlets/WebApps/GetAzureWebApp.cs | 4 +- .../Cmdlets/WebApps/GetAzureWebAppMetrics.cs | 2 +- .../GetAzureWebAppPublishingProfile.cs | 2 +- .../Cmdlets/WebApps/RemoveAzureWebApp.cs | 2 +- .../ResetAzureWebAppPublishingProfile.cs | 2 +- .../Cmdlets/WebApps/SetAzureWebApp.cs | 2 +- .../Commands.Websites.csproj | 8 +- 30 files changed, 2616 insertions(+), 2208 deletions(-) rename src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/{GetAzureRMWebAppCertificate.cs => GetAzureWebAppCertificate.cs} (91%) rename src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/{GetAzureRMWebAppSSLBinding.cs => GetAzureWebAppSSLBinding.cs} (90%) rename src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/{NewAzureRMWebAppSSLBinding.cs => NewAzureWebAppSSLBinding.cs} (98%) rename src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/{RemoveAzureRMWebAppSSLBinding.cs => RemoveAzureWebAppSSLBinding.cs} (96%) 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 index f57f138d3f92..ac8a197b3d64 100644 --- 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 @@ -7,19 +7,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "301e4d16-42fb-4239-8450-28600a16a2b0" + "0b950e2b-a07f-4328-bece-84e847054646" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3724" ], "Content-Type": [ "application/json" @@ -34,25 +37,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d4bbb5b-49ed-4d60-9b1c-331967ef0b06" + "774d332b-269a-464f-8695-bcab566d5de7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14936" ], "x-ms-correlation-request-id": [ - "c2b0ca73-fe42-4b1d-81df-2336e18a3890" + "e892d0c0-2c0c-464d-8ce6-e7d66a03a410" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163351Z:c2b0ca73-fe42-4b1d-81df-2336e18a3890" + "CENTRALUS:20151230T060757Z:e892d0c0-2c0c-464d-8ce6-e7d66a03a410" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:51 GMT" + "Wed, 30 Dec 2015 06:07:56 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -73,19 +76,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81442302-570e-45ef-a18a-3b692cc17694" + "b308acd3-1550-45de-b018-07be0038dc28" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -100,25 +106,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a895ca49-b19c-47f1-bfde-83337d4b0b18" + "3a827651-8b96-4374-ad9a-64e1d115d2f8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14932" ], "x-ms-correlation-request-id": [ - "fa2542d0-379e-4d5b-867a-54e40189bbc8" + "c6f3a762-e59d-483b-983b-4c32de544c8f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163400Z:fa2542d0-379e-4d5b-867a-54e40189bbc8" + "CENTRALUS:20151230T060808Z:c6f3a762-e59d-483b-983b-4c32de544c8f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:59 GMT" + "Wed, 30 Dec 2015 06:08:08 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -139,19 +145,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d038eab1-6422-48fa-b38b-9760be08598b" + "2bd37a2d-5c48-4b58-97fc-bec0dae492cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", + "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": [ - "2212" + "2373" ], "Content-Type": [ "application/json" @@ -166,22 +175,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f3280f8-e623-488b-970b-6b890f85d57e" + "15c9cb52-2b61-4505-aedd-4eda8d5ef2c8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14935" ], "x-ms-correlation-request-id": [ - "dba36060-d406-46c5-9c5b-5230a563141a" + "6bcd1be1-9e05-4c10-a09b-4eb2c911e160" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163352Z:dba36060-d406-46c5-9c5b-5230a563141a" + "CENTRALUS:20151230T060757Z:6bcd1be1-9e05-4c10-a09b-4eb2c911e160" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:51 GMT" + "Wed, 30 Dec 2015 06:07:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -202,13 +211,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94823b45-e556-42a4-90f9-a517f2c6d899" + "64f2730c-ac83-4e58-9d46-1a836e23d9b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -229,22 +241,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6f42611-cf76-4d25-8c35-33fe2138f264" + "d5844eb4-9b83-4e36-afad-d314ddc04e5b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14931" ], "x-ms-correlation-request-id": [ - "669cd8a6-5679-47ee-81d6-8813bf681804" + "3a117cfb-5bdd-4682-8580-b395672882c6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163400Z:669cd8a6-5679-47ee-81d6-8813bf681804" + "CENTRALUS:20151230T060808Z:3a117cfb-5bdd-4682-8580-b395672882c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:59 GMT" + "Wed, 30 Dec 2015 06:08:08 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -265,19 +277,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49e681f3-a2b4-4ef9-a639-dbe66004b2f1" + "aa299475-7539-4278-ac01-cedbffdf8f72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", + "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": [ - "308" + "469" ], "Content-Type": [ "application/json" @@ -292,22 +307,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0c3e6bc-41ff-45ea-9b67-d5ccd2cc6315" + "fed27eec-b8b6-44eb-ae06-b0ee398d628a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "8dc22ef8-7330-40b1-9317-6e6ac04097f2" + "6e0bd85f-b053-4fc6-ae42-9462f818b822" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163352Z:8dc22ef8-7330-40b1-9317-6e6ac04097f2" + "CENTRALUS:20151230T060757Z:6e0bd85f-b053-4fc6-ae42-9462f818b822" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:52 GMT" + "Wed, 30 Dec 2015 06:07:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -328,13 +343,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "119f0663-e587-4e02-8778-f2cf47fe2e31" + "18a1c719-230e-49af-abb1-6368fb24cbf2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -355,22 +373,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0bc66335-9452-4382-ba5c-9ae749d0a8ae" + "760eae32-9add-41d5-92fc-ec04f8c6f0fa" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11990" ], "x-ms-correlation-request-id": [ - "a7d36e4b-0bcb-4a7a-aa0f-6f64c9c355bf" + "453770a0-66d9-4005-927b-b13bf0de8465" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163400Z:a7d36e4b-0bcb-4a7a-aa0f-6f64c9c355bf" + "CENTRALUS:20151230T060808Z:453770a0-66d9-4005-927b-b13bf0de8465" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:59 GMT" + "Wed, 30 Dec 2015 06:08:08 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -391,19 +409,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acf6e154-301c-4f76-9d76-1d709dd62b8a" + "1d730576-4810-40ed-8c65-39f0332b7e34" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", + "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": [ - "282" + "443" ], "Content-Type": [ "application/json" @@ -418,22 +439,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7df41db3-a84a-4982-ae2c-b33393d3f02b" + "246ea7de-e391-4aa7-be44-9d74d7235cf0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11991" ], "x-ms-correlation-request-id": [ - "b328d01b-3763-44f4-8080-530658674a9f" + "fc0c483d-e105-47aa-b760-70e779caa7cf" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163352Z:b328d01b-3763-44f4-8080-530658674a9f" + "CENTRALUS:20151230T060757Z:fc0c483d-e105-47aa-b760-70e779caa7cf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:52 GMT" + "Wed, 30 Dec 2015 06:07:56 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -454,13 +475,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba809708-09a1-4edb-acb2-b9c1e9825264" + "41bb81a5-f0c5-4f30-8571-dcbd7501c04b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -481,22 +505,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ae27428-6db7-4e1f-9058-f56d60b4869a" + "dda37dce-d68c-405e-b34d-6a05ff393356" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11989" ], "x-ms-correlation-request-id": [ - "1ecbc681-e4df-49f4-a5cf-00903024eb2c" + "660ac801-0cab-4e77-88d0-18eb325a759c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163400Z:1ecbc681-e4df-49f4-a5cf-00903024eb2c" + "CENTRALUS:20151230T060808Z:660ac801-0cab-4e77-88d0-18eb325a759c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:00 GMT" + "Wed, 30 Dec 2015 06:08:08 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -523,19 +547,22 @@ "285" ], "x-ms-client-request-id": [ - "c0604501-490e-40b6-9a11-868a4604ae68" + "978ef6a8-720a-4333-95f0-354ff1f285fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -550,25 +577,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb9eba96-8ed8-429f-87fb-1f2226ae0714" + "c015c907-d829-4f80-8abd-947ccbd6cf5f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "9e0ee8eb-1347-453a-bfe7-f2c54145ce97" + "7e995f6f-9fb3-4322-ad8e-fb151afae097" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163355Z:9e0ee8eb-1347-453a-bfe7-f2c54145ce97" + "CENTRALUS:20151230T060802Z:7e995f6f-9fb3-4322-ad8e-fb151afae097" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:55 GMT" + "Wed, 30 Dec 2015 06:08:01 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -595,19 +622,22 @@ "216" ], "x-ms-client-request-id": [ - "4555a326-f45c-47a3-9825-c5709d999f8c" + "8e90dfe6-288d-43a9-80a3-4c899f575b27" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -622,25 +652,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a045f65d-82e0-41e0-92a7-058e23dbc3be" + "7dec6357-ccfb-4f9f-a76d-712f22daa0c4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "83f49506-c709-4281-be4d-20de07e6fee2" + "244b98ed-f703-4e7f-9a74-430bbb3e5db4" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163402Z:83f49506-c709-4281-be4d-20de07e6fee2" + "CENTRALUS:20151230T060811Z:244b98ed-f703-4e7f-9a74-430bbb3e5db4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:01 GMT" + "Wed, 30 Dec 2015 06:08:11 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -661,19 +691,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0c58099-16d2-4a18-9524-9e42f3c7ce15" + "fbd40540-3c95-403b-9a23-4235d7dc1799" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -688,25 +721,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba103d82-1d7f-482f-a986-c95a4627b912" + "5aaaa1a0-cf1b-4273-a9b9-a755ed4f403f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14934" ], "x-ms-correlation-request-id": [ - "efb6d3c8-ab34-4d75-821f-ab82c2ab60b3" + "6e059294-6a73-4e99-ac34-8421f59c97ef" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163356Z:efb6d3c8-ab34-4d75-821f-ab82c2ab60b3" + "CENTRALUS:20151230T060803Z:6e059294-6a73-4e99-ac34-8421f59c97ef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:55 GMT" + "Wed, 30 Dec 2015 06:08:03 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -727,19 +760,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd2f6899-3cee-43c4-905f-952034ba0863" + "8e5645a2-d9d7-42b6-b2f3-f093d8b92816" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -754,25 +790,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "97724ed0-32ae-4b8b-9714-66106ca62679" + "3a71cde8-d11d-4f0b-ba86-fb9147537a3e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14927" ], "x-ms-correlation-request-id": [ - "1ba3f1bf-1896-4af8-9cdd-ebd5a4a375de" + "6c86815f-9b01-4144-b6c3-02a2b737d735" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163408Z:1ba3f1bf-1896-4af8-9cdd-ebd5a4a375de" + "CENTRALUS:20151230T060816Z:6c86815f-9b01-4144-b6c3-02a2b737d735" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:08 GMT" + "Wed, 30 Dec 2015 06:08:16 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -793,13 +829,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cb26df6-0894-47c0-bfee-4c8a03bf5cd2" + "e2cb6d35-e0ec-48c6-8c33-d39bbd82ce26" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -820,22 +859,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd000429-b771-44da-b943-1300a6b91bc7" + "ee424cf4-05f2-454c-83a1-35df10ea9ece" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14933" ], "x-ms-correlation-request-id": [ - "8f19b495-8075-4cae-8f98-48f3280af385" + "8103e6f2-9906-4c21-b1fe-aa6530637d16" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163356Z:8f19b495-8075-4cae-8f98-48f3280af385" + "CENTRALUS:20151230T060804Z:8103e6f2-9906-4c21-b1fe-aa6530637d16" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:55 GMT" + "Wed, 30 Dec 2015 06:08:03 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -856,13 +895,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9b13560-72a8-40ca-93b5-6ab2c0484e36" + "ebf95ed0-5dbc-4064-9b05-fbf50f8dcba5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -883,22 +925,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b49f25e-5daf-4340-8705-7ebf2c4bdb6a" + "37ce936a-0aed-4be9-8ace-2d81ce06aad2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14926" ], "x-ms-correlation-request-id": [ - "73396eda-f4aa-4355-b9ec-b19680c92d88" + "dccac51f-8f70-40bf-8d04-c51c24837f55" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163410Z:73396eda-f4aa-4355-b9ec-b19680c92d88" + "CENTRALUS:20151230T060816Z:dccac51f-8f70-40bf-8d04-c51c24837f55" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:10 GMT" + "Wed, 30 Dec 2015 06:08:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -919,13 +961,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63921848-e5a5-4b8c-9870-d2004a79c886" + "90fc98b4-a524-4369-8322-59207da1edb6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -946,22 +991,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2f02d813-b2aa-4703-893b-aa7f9da166c8" + "a98ac731-2ea6-49cb-9b87-8f0ebe92f150" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], "x-ms-correlation-request-id": [ - "546eade0-e698-45be-9efc-01c3062db429" + "0153d165-4d1b-484c-b418-08f3a7e9da0c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163356Z:546eade0-e698-45be-9efc-01c3062db429" + "CENTRALUS:20151230T060804Z:0153d165-4d1b-484c-b418-08f3a7e9da0c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:56 GMT" + "Wed, 30 Dec 2015 06:08:04 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -982,13 +1027,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c827ac8b-d133-406e-8287-ea42fb325e14" + "1c4e2a20-bc90-4eaf-b9a0-9af1f0a5b9f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1009,22 +1057,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f54ec3c-de80-43ca-9bc2-964a99b30df6" + "8975720e-44b0-40d0-908e-dc8c11c656ba" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], "x-ms-correlation-request-id": [ - "5edfa887-0087-47f4-85b0-836b51510adb" + "1abf8ad2-b701-4ad7-bc4e-c58cb89a8a28" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163412Z:5edfa887-0087-47f4-85b0-836b51510adb" + "CENTRALUS:20151230T060816Z:1abf8ad2-b701-4ad7-bc4e-c58cb89a8a28" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:11 GMT" + "Wed, 30 Dec 2015 06:08:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1045,13 +1093,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a16b362d-fb81-46fc-b99d-1f1162146178" + "22e9cf1e-b55c-4bb1-80c2-2ad8b218ea6d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1072,22 +1123,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8b562412-7569-4893-b06d-95ccb318bce0" + "e6293c25-4153-4b07-957f-d1b45a9de720" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], "x-ms-correlation-request-id": [ - "122e4398-79fc-433f-ab18-e527cc70ff2c" + "420fc848-fe11-4bc4-91ba-18d749bcbb48" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163356Z:122e4398-79fc-433f-ab18-e527cc70ff2c" + "CENTRALUS:20151230T060804Z:420fc848-fe11-4bc4-91ba-18d749bcbb48" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:56 GMT" + "Wed, 30 Dec 2015 06:08:04 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1108,13 +1159,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d9fa6b0-d308-42a4-af94-78475ad4e16c" + "db060408-0427-48b6-b8d4-e3faf725464f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1135,22 +1189,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ddcd540-5d88-4b71-ba30-ee9808309cc0" + "00cf3f3f-c94e-46a8-a66e-5c7bc66eb8b4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], "x-ms-correlation-request-id": [ - "6dd0a741-dcf3-4c26-8b6e-02a2c02b40f7" + "2d0d3bc5-a938-4537-aa7e-7545f07a1c4b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163413Z:6dd0a741-dcf3-4c26-8b6e-02a2c02b40f7" + "CENTRALUS:20151230T060817Z:2d0d3bc5-a938-4537-aa7e-7545f07a1c4b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:12 GMT" + "Wed, 30 Dec 2015 06:08:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1177,19 +1231,22 @@ "290" ], "x-ms-client-request-id": [ - "270e7fcc-4466-4b0e-91f5-f06925596934" + "e8cdc0ee-47d3-4229-a242-0a44111b85bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -1204,25 +1261,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2be4264a-bfa3-4bce-b891-8214e20a3331" + "d6896737-1bf4-46b4-8cf5-f4db04122ac9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "171676ec-bef5-4bf4-967e-4a5f176d588e" + "088a25e0-16c1-4cdf-b471-c2ce777fab98" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163359Z:171676ec-bef5-4bf4-967e-4a5f176d588e" + "CENTRALUS:20151230T060808Z:088a25e0-16c1-4cdf-b471-c2ce777fab98" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:33:59 GMT" + "Wed, 30 Dec 2015 06:08:07 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1249,19 +1306,22 @@ "221" ], "x-ms-client-request-id": [ - "1d21412d-c53f-4bc7-bbcd-e7739af08b7e" + "8297d353-614e-41b8-9ca9-89abfdd88897" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1276,25 +1336,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8ac595d-c072-4799-872d-41a7d3f0b39e" + "1087ed3b-ad80-4395-942b-58384d8f5514" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "a2335c8f-60e8-4714-a5f5-0fda385eb72f" + "7acb9e59-7708-4198-9a4a-3add0ac822bd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163415Z:a2335c8f-60e8-4714-a5f5-0fda385eb72f" + "CENTRALUS:20151230T060819Z:7acb9e59-7708-4198-9a4a-3add0ac822bd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" + "Wed, 30 Dec 2015 06:08:19 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1333,16 +1393,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14807" ], "x-ms-request-id": [ - "c240133c-475c-4765-a887-fc27397292cd" + "b05d3ef5-d1cf-4648-8c0f-7094c853efd1" ], "x-ms-correlation-request-id": [ - "c240133c-475c-4765-a887-fc27397292cd" + "b05d3ef5-d1cf-4648-8c0f-7094c853efd1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163403Z:c240133c-475c-4765-a887-fc27397292cd" + "CENTRALUS:20151230T060811Z:b05d3ef5-d1cf-4648-8c0f-7094c853efd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1351,7 +1411,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:03 GMT" + "Wed, 30 Dec 2015 06:08:10 GMT" ] }, "StatusCode": 200 @@ -1381,16 +1441,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14806" ], "x-ms-request-id": [ - "0a56171a-cf61-4f9b-bef2-bc5e8b563723" + "20a541ca-d3a8-481a-9085-2dbd75487f5b" ], "x-ms-correlation-request-id": [ - "0a56171a-cf61-4f9b-bef2-bc5e8b563723" + "20a541ca-d3a8-481a-9085-2dbd75487f5b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163415Z:0a56171a-cf61-4f9b-bef2-bc5e8b563723" + "CENTRALUS:20151230T060819Z:20a541ca-d3a8-481a-9085-2dbd75487f5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1399,7 +1459,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" + "Wed, 30 Dec 2015 06:08:19 GMT" ] }, "StatusCode": 200 @@ -1429,10 +1489,10 @@ "no-cache" ], "x-ms-request-id": [ - "58caf60e-cff6-4c7d-81c0-6cea49eb62cc" + "00908562-10d9-41aa-abb8-5cdc7057097f" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -1441,22 +1501,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14973" ], "x-ms-correlation-request-id": [ - "275e7b8f-9e5a-4176-be49-e2457e04dd05" + "7e771610-38fd-4167-b45b-3b4d5fa85c95" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163403Z:275e7b8f-9e5a-4176-be49-e2457e04dd05" + "CENTRALUS:20151230T060812Z:7e771610-38fd-4167-b45b-3b4d5fa85c95" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:03 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1492,10 +1549,10 @@ "no-cache" ], "x-ms-request-id": [ - "713ed079-f487-49fe-8826-97a16c60a4ce" + "a22e5792-ef50-4d1d-a656-404978068724" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -1504,22 +1561,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14967" ], "x-ms-correlation-request-id": [ - "a5dc0b2a-4ae1-4186-bbca-6077aa622e1a" + "127059dc-143e-4092-b6e4-e538302d1ec3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163415Z:a5dc0b2a-4ae1-4186-bbca-6077aa622e1a" + "CENTRALUS:20151230T060820Z:127059dc-143e-4092-b6e4-e538302d1ec3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1555,10 +1609,10 @@ "no-cache" ], "x-ms-request-id": [ - "b74ce190-8fc3-476d-ba7b-e5b6c8920f31" + "bdd8f92b-ca7e-4d42-94e3-0394ba9cc20d" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -1567,22 +1621,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14972" ], "x-ms-correlation-request-id": [ - "c0fa0bed-830c-479b-baf1-52f094c97d12" + "675f0b6b-0fa0-4783-b801-e6245aa60e7b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163403Z:c0fa0bed-830c-479b-baf1-52f094c97d12" + "CENTRALUS:20151230T060812Z:675f0b6b-0fa0-4783-b801-e6245aa60e7b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:03 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1618,10 +1669,10 @@ "no-cache" ], "x-ms-request-id": [ - "4dc33fa0-44e5-4707-aced-479bcb008e11" + "787e352c-97cd-4e1d-8576-4b664a36c13c" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -1630,22 +1681,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14966" ], "x-ms-correlation-request-id": [ - "342c33d7-0d13-4c8a-aea2-ca2d59a5fbdf" + "77c557c2-09ec-4d35-a1c8-5ec4de3961ed" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163415Z:342c33d7-0d13-4c8a-aea2-ca2d59a5fbdf" + "CENTRALUS:20151230T060820Z:77c557c2-09ec-4d35-a1c8-5ec4de3961ed" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1681,10 +1729,10 @@ "no-cache" ], "x-ms-request-id": [ - "2dd53069-7335-4f88-bfc2-5846f9e77559" + "beeaf8e1-b734-47db-a651-61a2aa13b8b0" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -1693,22 +1741,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14971" ], "x-ms-correlation-request-id": [ - "55cfa50d-78da-450b-a7ad-26e594050772" + "3789f291-eac4-4448-a147-96acd5b77e68" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163403Z:55cfa50d-78da-450b-a7ad-26e594050772" + "CENTRALUS:20151230T060812Z:3789f291-eac4-4448-a147-96acd5b77e68" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:03 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1744,10 +1789,10 @@ "no-cache" ], "x-ms-request-id": [ - "c2888697-66b6-4a1a-943e-7092e3b9e8d5" + "80bd8541-cd9a-454c-ba13-7aaabeefc1f8" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -1756,22 +1801,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14965" ], "x-ms-correlation-request-id": [ - "fe660e05-662e-4bd2-ac5f-63e3742aa5a4" + "3469e1d6-9595-466b-8436-5e5099f5b7e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163416Z:fe660e05-662e-4bd2-ac5f-63e3742aa5a4" + "CENTRALUS:20151230T060820Z:3469e1d6-9595-466b-8436-5e5099f5b7e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1807,10 +1849,10 @@ "no-cache" ], "x-ms-request-id": [ - "a06fe0e5-7689-4ba5-8842-e6229d987974" + "787a2dca-1422-4aed-8b9b-6c998b8625b3" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -1819,22 +1861,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14970" ], "x-ms-correlation-request-id": [ - "3e984fab-6ab2-460e-994b-a34ae80334a0" + "a466d92f-75e0-42da-abd8-fcd0dbe753cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163403Z:3e984fab-6ab2-460e-994b-a34ae80334a0" + "CENTRALUS:20151230T060812Z:a466d92f-75e0-42da-abd8-fcd0dbe753cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:03 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1870,10 +1909,10 @@ "no-cache" ], "x-ms-request-id": [ - "f634955c-c8ac-47c9-a284-315b06c318d1" + "a9f1039b-a710-4b72-871a-418ffa0a3605" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -1882,22 +1921,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14964" ], "x-ms-correlation-request-id": [ - "ddc13653-1f9d-4913-826c-bf2c1e3193f0" + "5d2ef2e4-0568-4a5a-928c-d80df1ed897c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163416Z:ddc13653-1f9d-4913-826c-bf2c1e3193f0" + "CENTRALUS:20151230T060820Z:5d2ef2e4-0568-4a5a-928c-d80df1ed897c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:19 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1933,10 +1969,10 @@ "no-cache" ], "x-ms-request-id": [ - "25d82bad-c292-424c-ab8b-64f0e370b802" + "a65a9553-6d35-4769-9129-7af83f8de59e" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -1945,22 +1981,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14969" ], "x-ms-correlation-request-id": [ - "4a8ecb91-e3d0-4efd-be11-c413b6687525" + "7dc3a271-7f4d-4ac9-be1a-be34ee2ea815" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163404Z:4a8ecb91-e3d0-4efd-be11-c413b6687525" + "CENTRALUS:20151230T060812Z:7dc3a271-7f4d-4ac9-be1a-be34ee2ea815" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:03 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1996,7 +2029,7 @@ "no-cache" ], "x-ms-request-id": [ - "185c4591-dc5f-4340-8d95-93b7b12d057d" + "c6e422c0-e51f-4742-a8e3-a2e3f5904ba2" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_2" @@ -2008,22 +2041,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14963" ], "x-ms-correlation-request-id": [ - "35a09372-4759-4a0a-9ecd-1e14b29d1124" + "426c6123-891c-4418-80bb-8f9291f687b2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163416Z:35a09372-4759-4a0a-9ecd-1e14b29d1124" + "CENTRALUS:20151230T060820Z:426c6123-891c-4418-80bb-8f9291f687b2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2059,10 +2089,10 @@ "no-cache" ], "x-ms-request-id": [ - "2b1b1fed-2214-4803-8bec-77fdb5a69645" + "de574556-8d51-460d-bf1b-d3ccf289990e" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -2071,22 +2101,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14968" ], "x-ms-correlation-request-id": [ - "8bc06bda-3646-4207-afbc-061e1e51a488" + "6d216a62-db4b-449e-abce-227bade0e2a3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163404Z:8bc06bda-3646-4207-afbc-061e1e51a488" + "CENTRALUS:20151230T060812Z:6d216a62-db4b-449e-abce-227bade0e2a3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:04 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:12 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2122,10 +2149,10 @@ "no-cache" ], "x-ms-request-id": [ - "6168b24c-8b5c-49b9-bd9c-b0f91adeccfb" + "c63e0a2e-90e6-46a7-8efb-6d7c25b2cc12" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -2134,22 +2161,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14962" ], "x-ms-correlation-request-id": [ - "7587603b-b60e-4e7d-b4f3-9c589c2f2f14" + "08f3d4f6-d776-442e-835e-9eb34c71f2ce" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163416Z:7587603b-b60e-4e7d-b4f3-9c589c2f2f14" + "CENTRALUS:20151230T060820Z:08f3d4f6-d776-442e-835e-9eb34c71f2ce" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:15 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:08:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2167,13 +2191,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdc86241-c21d-4ee3-b9d5-856ea568abed" + "94826c74-b381-4c91-9ac4-87e233badb07" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2194,22 +2221,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b54046d2-7a8d-417e-8207-cf31dfbcc072" + "b961b26e-274f-45f6-94a5-d866887dd5df" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14930" ], "x-ms-correlation-request-id": [ - "739009b5-60ae-4577-9340-35cd0544147d" + "e0cf772a-dcdc-4543-8939-7589696992db" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163405Z:739009b5-60ae-4577-9340-35cd0544147d" + "CENTRALUS:20151230T060813Z:e0cf772a-dcdc-4543-8939-7589696992db" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:04 GMT" + "Wed, 30 Dec 2015 06:08:13 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2230,13 +2257,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ff48343-7a95-41d1-a133-0dd8117ff89f" + "169aac86-9188-41a2-ac6b-53218809b9c7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2257,22 +2287,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42eba918-87ac-458a-a259-f16cd2e5daf4" + "c64a3158-c97e-4b8b-941d-5c0f33b5bcbc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14925" ], "x-ms-correlation-request-id": [ - "5b5edc3c-4980-464c-9187-807d65ec1e59" + "80c42b24-553c-4bfb-92f0-106f8d8e7f24" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163416Z:5b5edc3c-4980-464c-9187-807d65ec1e59" + "CENTRALUS:20151230T060820Z:80c42b24-553c-4bfb-92f0-106f8d8e7f24" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:16 GMT" + "Wed, 30 Dec 2015 06:08:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2293,13 +2323,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84b449cd-4dbf-4f14-8718-40fcffd10a0c" + "2dd3552b-5fa4-4554-8c64-08540d9eab1f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2320,22 +2353,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9caac12b-e46f-4f5f-b470-952013d73fa4" + "41b3b88e-22d0-4b29-a081-917e638ed653" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14929" ], "x-ms-correlation-request-id": [ - "78ce0e24-9425-4a62-907e-bbb300e64cbf" + "71380537-b88c-4a16-91bd-7c627173385f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163406Z:78ce0e24-9425-4a62-907e-bbb300e64cbf" + "CENTRALUS:20151230T060813Z:71380537-b88c-4a16-91bd-7c627173385f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:05 GMT" + "Wed, 30 Dec 2015 06:08:13 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2356,13 +2389,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab2abe6e-2a94-47e9-b6dc-ef18c9905add" + "0a99ecea-db52-4803-8f95-0129a57fa973" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2383,22 +2419,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e1bb11a3-e9d8-4149-a550-16fafccea29c" + "a093cc12-b879-40a7-ab75-01d4705acb07" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14924" ], "x-ms-correlation-request-id": [ - "5344d683-e45e-4910-b32f-7b70b8c76a2b" + "295276d8-cc89-44ca-93a4-de31d73f126b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163416Z:5344d683-e45e-4910-b32f-7b70b8c76a2b" + "CENTRALUS:20151230T060820Z:295276d8-cc89-44ca-93a4-de31d73f126b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:16 GMT" + "Wed, 30 Dec 2015 06:08:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2419,13 +2455,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e00f0342-ee7a-44ce-ada1-83b5078e149f" + "ea2a87f8-f448-41d3-a0b3-e86afe98156d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2446,22 +2485,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6283b495-0179-4e12-af67-f715159c7f11" + "afa9cfb7-a544-4520-9d2c-023cf2834317" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14928" ], "x-ms-correlation-request-id": [ - "3e57a64a-f25f-4fc6-9bb3-e9ff1f6ae065" + "0b4f243a-a5c1-44be-9164-57a613d55f65" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163406Z:3e57a64a-f25f-4fc6-9bb3-e9ff1f6ae065" + "CENTRALUS:20151230T060815Z:0b4f243a-a5c1-44be-9164-57a613d55f65" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:05 GMT" + "Wed, 30 Dec 2015 06:08:15 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2482,13 +2521,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a643fd7a-7189-46bc-93ff-292049e97cad" + "9aae6dda-de03-4204-ac60-3aefc8e7eb06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2509,22 +2551,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d70c043f-cb95-4d7c-8b04-144809cdbcfd" + "135e3330-32f0-40a9-9d27-8ab0864e8c78" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14923" ], "x-ms-correlation-request-id": [ - "2f13f888-4263-482e-a447-3bb0f6b271c9" + "06020ff5-1ec7-4d38-ad2d-1ec66d5bb676" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163417Z:2f13f888-4263-482e-a447-3bb0f6b271c9" + "CENTRALUS:20151230T060821Z:06020ff5-1ec7-4d38-ad2d-1ec66d5bb676" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:16 GMT" + "Wed, 30 Dec 2015 06:08:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2545,13 +2587,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94fd55e1-545d-4401-a70d-65da2d7f0a89" + "d2ac7097-11dd-4b7c-bebf-aae9c7e2261d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2572,22 +2617,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "3e4ea008-6977-42c0-b968-61c57a7a1dbe" + "9bc772d4-9d1e-47af-9f85-16d288b84f70" ], "x-ms-correlation-request-id": [ - "3e4ea008-6977-42c0-b968-61c57a7a1dbe" + "9bc772d4-9d1e-47af-9f85-16d288b84f70" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163407Z:3e4ea008-6977-42c0-b968-61c57a7a1dbe" + "CENTRALUS:20151230T060816Z:9bc772d4-9d1e-47af-9f85-16d288b84f70" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:06 GMT" + "Wed, 30 Dec 2015 06:08:15 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2608,13 +2653,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ddaba8a-ce42-47ec-bbc9-973d640968cb" + "1f1b8b1e-654a-4dec-889e-b55b2ff8ad24" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2635,22 +2683,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-request-id": [ - "70418ccd-7593-4eba-8320-81ab09209c29" + "091bd469-b6f9-41ca-899d-12e1a13cae20" ], "x-ms-correlation-request-id": [ - "70418ccd-7593-4eba-8320-81ab09209c29" + "091bd469-b6f9-41ca-899d-12e1a13cae20" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163417Z:70418ccd-7593-4eba-8320-81ab09209c29" + "CENTRALUS:20151230T060821Z:091bd469-b6f9-41ca-899d-12e1a13cae20" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:34:17 GMT" + "Wed, 30 Dec 2015 06:08:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" 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 index 895d28e2540d..81b5b00dead5 100644 --- 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 @@ -7,19 +7,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19d3e5f8-cad3-48a9-a942-55ae7882a3a0" + "d93da1e7-155d-4fe2-a5f7-0a84027d5551" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -34,25 +37,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a66e815-20af-4cbb-ae8d-85ca05dd04c7" + "7a73f47a-a146-440a-b748-07ed6126f06e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14921" ], "x-ms-correlation-request-id": [ - "00923908-3ee4-4fa3-af89-f4abffeacf9d" + "5030c077-5cc4-4f3e-b9a5-d551bee2a7b7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163554Z:00923908-3ee4-4fa3-af89-f4abffeacf9d" + "CENTRALUS:20151230T061312Z:5030c077-5cc4-4f3e-b9a5-d551bee2a7b7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:35:54 GMT" + "Wed, 30 Dec 2015 06:13:12 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -73,19 +76,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "693c58c6-4ee3-41f9-a2d4-1f9f9588e8d2" + "4c9ff67e-f0ed-4410-b2f7-3e300249a4cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -100,25 +106,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7ab74dbb-94d5-4302-a504-b04ee7dfe85b" + "ee3f6179-3532-43fb-8856-bfaec5669a3b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14917" ], "x-ms-correlation-request-id": [ - "559338e2-3513-4d7e-9e66-35df98d39166" + "4c3c06f9-38f1-4331-bdd8-446c59530c32" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163605Z:559338e2-3513-4d7e-9e66-35df98d39166" + "CENTRALUS:20151230T061320Z:4c3c06f9-38f1-4331-bdd8-446c59530c32" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:05 GMT" + "Wed, 30 Dec 2015 06:13:19 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -139,19 +145,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1debe947-033a-4669-8b77-7e64cdffc675" + "297d0842-406c-4fc9-b963-e90c44f2a052" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -166,25 +175,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ad67381-d605-48b6-a39b-604820ccb6a1" + "2647d5a6-7563-446c-bf3a-8a082b2e6d3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14915" ], "x-ms-correlation-request-id": [ - "b06b0372-ab9d-4689-9f68-38128826475f" + "d2ac7e39-3f15-463f-a14e-869763a18914" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163607Z:b06b0372-ab9d-4689-9f68-38128826475f" + "CENTRALUS:20151230T061321Z:d2ac7e39-3f15-463f-a14e-869763a18914" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:07 GMT" + "Wed, 30 Dec 2015 06:13:20 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -205,19 +214,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea1d4ac2-615a-4a2d-8717-6814b35a6007" + "09b5f326-b7b6-4b80-a85a-a9f05d2b0038" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -232,25 +244,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b83df7df-19d3-4833-8077-3d2f70a7c652" + "f8175853-593f-45dd-a022-9665993d8b90" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14909" ], "x-ms-correlation-request-id": [ - "998c33ac-7196-4ccd-ac5e-734c4c74ed3f" + "7acf6617-d96c-419d-b02c-69f713d264dd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163613Z:998c33ac-7196-4ccd-ac5e-734c4c74ed3f" + "CENTRALUS:20151230T061324Z:7acf6617-d96c-419d-b02c-69f713d264dd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:13 GMT" + "Wed, 30 Dec 2015 06:13:24 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -271,13 +283,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e0bc31a-81a7-4914-a035-81605a621955" + "b37a7862-fca7-4eee-a3bc-6aa8c6f72035" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -298,22 +313,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c2fab79-bb71-4a94-8957-05a5e93a0318" + "39ded11f-451a-4f40-a5e6-f298aa4ddd24" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14920" ], "x-ms-correlation-request-id": [ - "99ced4d9-698e-426d-99bc-4aaf3d9a44c6" + "a20287c1-8da8-439a-b982-cd5d71af4ba2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163555Z:99ced4d9-698e-426d-99bc-4aaf3d9a44c6" + "CENTRALUS:20151230T061312Z:a20287c1-8da8-439a-b982-cd5d71af4ba2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:35:54 GMT" + "Wed, 30 Dec 2015 06:13:12 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -334,13 +349,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9c35a8a-fc56-4b0c-91ac-7d5b165d784c" + "1745b7f8-edfc-4a41-8dc2-44f29be0699b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -361,22 +379,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56d2be88-0e2e-4ed5-a167-a74535768bc6" + "9bb6f581-a9a3-4fa1-8f34-c1d854d6508f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14916" ], "x-ms-correlation-request-id": [ - "91c5e052-c1f8-4057-9619-d44086ec0992" + "6f1a547e-498a-4b97-bbb5-729a869a5b14" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163606Z:91c5e052-c1f8-4057-9619-d44086ec0992" + "CENTRALUS:20151230T061320Z:6f1a547e-498a-4b97-bbb5-729a869a5b14" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:06 GMT" + "Wed, 30 Dec 2015 06:13:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -397,13 +415,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5c69634-cbcb-4ddf-b543-59995ce89cbd" + "bff1d596-38e7-4b81-a8f1-46b74fb1e6a9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -424,22 +445,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a68c1b83-4a5c-459a-8620-067ada9f8648" + "a8d9f9a0-11c6-43e1-a022-828b42482ecf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14914" ], "x-ms-correlation-request-id": [ - "d712d9bc-1e87-4d7c-8e03-db6c03e49ed1" + "933a53c9-623d-4f56-b113-a006c9b59fda" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163608Z:d712d9bc-1e87-4d7c-8e03-db6c03e49ed1" + "CENTRALUS:20151230T061321Z:933a53c9-623d-4f56-b113-a006c9b59fda" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:08 GMT" + "Wed, 30 Dec 2015 06:13:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -460,13 +481,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4625991a-9452-4be2-9590-926e329c26ba" + "17087f10-8194-4691-8393-e8d15eba667c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -487,22 +511,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de9d480c-1d3c-4972-a0a1-b26bdb3b7bf2" + "1150f250-eb7b-4196-a3ec-edb1840a8032" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14908" ], "x-ms-correlation-request-id": [ - "9f6eef7c-5d14-46e2-b452-02000e890b3c" + "11573507-b493-40c1-9f43-f0f12d3cb5a7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163614Z:9f6eef7c-5d14-46e2-b452-02000e890b3c" + "CENTRALUS:20151230T061324Z:11573507-b493-40c1-9f43-f0f12d3cb5a7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:13 GMT" + "Wed, 30 Dec 2015 06:13:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -523,13 +547,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf001736-87a2-4d32-a0eb-27ed2bed7ba0" + "ac60131c-d185-40f7-9ad8-566e7157a1ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -550,22 +577,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23a93af4-204e-468d-9530-c370dd16609d" + "a7a79398-deab-43d4-bea3-dc7c47cba083" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "83e7b85e-05f1-43fc-bcc9-96019c9bfe7d" + "0a7b0c0b-74a8-4186-96e7-7be5de930512" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163555Z:83e7b85e-05f1-43fc-bcc9-96019c9bfe7d" + "CENTRALUS:20151230T061312Z:0a7b0c0b-74a8-4186-96e7-7be5de930512" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:35:54 GMT" + "Wed, 30 Dec 2015 06:13:12 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -586,13 +613,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9ec1850-3583-4191-b5f9-20df6e09bb1a" + "d7c7e642-9145-4f92-9003-687cb97c7f28" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -613,22 +643,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab833a7d-067b-48a5-9cdf-fd04291c9187" + "4b3b6acd-d511-4cea-a04d-c884be87bd11" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11987" ], "x-ms-correlation-request-id": [ - "98d16880-b958-40bb-919e-fcc6cfd91996" + "64ce72ae-1db7-45f6-bd35-240609c1c5bd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163606Z:98d16880-b958-40bb-919e-fcc6cfd91996" + "CENTRALUS:20151230T061320Z:64ce72ae-1db7-45f6-bd35-240609c1c5bd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:06 GMT" + "Wed, 30 Dec 2015 06:13:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -649,13 +679,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddaef405-4ed7-4baf-ae0d-b1312915b02a" + "57a2c6ba-2f96-4730-9b78-81ff43203e7c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -676,22 +709,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf515010-92a9-459f-9499-7b2636c0c73a" + "cfe0f9ed-bdfd-4c74-baa9-8ad71e4b815e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11985" ], "x-ms-correlation-request-id": [ - "b83d610e-ad7b-4039-a0b4-fe7a0204c944" + "81ed2dce-887e-48c1-93d1-59341e42d3ad" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163608Z:b83d610e-ad7b-4039-a0b4-fe7a0204c944" + "CENTRALUS:20151230T061321Z:81ed2dce-887e-48c1-93d1-59341e42d3ad" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:08 GMT" + "Wed, 30 Dec 2015 06:13:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -712,13 +745,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35fcebf9-bfc2-4b3c-915d-cf65181db4e9" + "beb43feb-dab9-4a06-854a-80127f4729db" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -739,22 +775,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d1372ae-ec0d-4f93-bdac-08304e13acc2" + "fc4a69b9-9fcb-4e50-84e4-7fe1971e0ee1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11983" ], "x-ms-correlation-request-id": [ - "bfe628b0-ac31-4790-a823-ae92249bfc52" + "00806222-8b8c-4b57-b483-d856d6633d49" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163614Z:bfe628b0-ac31-4790-a823-ae92249bfc52" + "CENTRALUS:20151230T061324Z:00806222-8b8c-4b57-b483-d856d6633d49" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:14 GMT" + "Wed, 30 Dec 2015 06:13:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -775,13 +811,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87c84457-559b-4abf-8a0c-1171ddfee8f6" + "fd900eea-5445-4e16-be47-1c68ccb82402" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -802,22 +841,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1da8d09e-147e-4610-a741-aac4fdfd3ba6" + "9d293e5e-b576-41a6-8bf3-f679d65b0e3b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11988" ], "x-ms-correlation-request-id": [ - "1f630f1c-50bf-4468-a22e-9506d06264a6" + "5ac207a4-c2a3-49d6-b9c1-d2ff8c6b28f0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163555Z:1f630f1c-50bf-4468-a22e-9506d06264a6" + "CENTRALUS:20151230T061313Z:5ac207a4-c2a3-49d6-b9c1-d2ff8c6b28f0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:35:55 GMT" + "Wed, 30 Dec 2015 06:13:13 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -838,13 +877,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bcfd815-8ffd-4fe8-95ea-4ff1453a8efe" + "1213b7f6-8318-401a-ac2f-d24a4ad45f2d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -865,22 +907,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e052c0a2-56b1-4767-aa62-8141a77f630c" + "b6b1cd4f-4afa-4bbb-8da3-24091fd5a020" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11986" ], "x-ms-correlation-request-id": [ - "fc63c3db-0f0b-4ef7-a8fa-335eb326fa78" + "e0022063-9401-49fd-9083-ad87f7c976ed" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163606Z:fc63c3db-0f0b-4ef7-a8fa-335eb326fa78" + "CENTRALUS:20151230T061320Z:e0022063-9401-49fd-9083-ad87f7c976ed" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:06 GMT" + "Wed, 30 Dec 2015 06:13:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -901,13 +943,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0798b77e-f759-4826-96bb-4768eeedbd48" + "02011a6b-da43-4f94-a613-7c8b640d14ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -928,22 +973,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f210ee33-9a24-4808-bcf1-c77e1155116a" + "3e1a111f-c4fb-4ec0-b36f-c6fda4bc73c5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11984" ], "x-ms-correlation-request-id": [ - "b8dc9722-1c93-4ee7-880a-cdd9c3c0f8d4" + "66930b2e-c3a5-4bf0-8589-273d609babff" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163609Z:b8dc9722-1c93-4ee7-880a-cdd9c3c0f8d4" + "CENTRALUS:20151230T061321Z:66930b2e-c3a5-4bf0-8589-273d609babff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:08 GMT" + "Wed, 30 Dec 2015 06:13:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -964,13 +1009,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb3f8fd5-fb0d-416d-bc40-f16d0e38b734" + "0c2788fb-b613-4bf2-a9b7-75aae91383b2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -991,22 +1039,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b1ca9a2-0c57-40dc-88d5-d36d73787f78" + "01f59e05-9ce9-48f7-a553-1c031646c3fe" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11982" ], "x-ms-correlation-request-id": [ - "a42e7ed8-dcdc-4228-9072-53ecfd6255aa" + "970d2143-e43a-4efd-b264-1583bfc18f03" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163614Z:a42e7ed8-dcdc-4228-9072-53ecfd6255aa" + "CENTRALUS:20151230T061325Z:970d2143-e43a-4efd-b264-1583bfc18f03" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:14 GMT" + "Wed, 30 Dec 2015 06:13:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1033,19 +1081,22 @@ "285" ], "x-ms-client-request-id": [ - "18355f5b-c92d-441c-a6fe-58e128d2766b" + "3f7f379d-49f8-4ee6-865d-9cfb32204680" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -1060,25 +1111,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79c3656f-a349-49e6-99a0-ba2051bb430a" + "2f27f605-bc71-418c-b8f8-c9c83ffc8f78" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "e1c5fd90-f4f5-4b48-8710-2beff0f15504" + "1be350ba-f87a-4f4b-ae90-be14186576f1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163600Z:e1c5fd90-f4f5-4b48-8710-2beff0f15504" + "CENTRALUS:20151230T061315Z:1be350ba-f87a-4f4b-ae90-be14186576f1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:35:59 GMT" + "Wed, 30 Dec 2015 06:13:15 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1105,19 +1156,22 @@ "216" ], "x-ms-client-request-id": [ - "f5cab312-f16c-4da4-b930-e72e3756074d" + "5501fdee-25cd-47be-9408-cd21bbf7c955" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -1132,25 +1186,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a6b0189-9117-424c-b5d5-b4438bbf52ff" + "7459cfae-930e-4d61-9428-6b57aa8e1983" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "b109d2a6-e594-4241-9171-d8ff7eb2ccab" + "7ea90979-2896-4a24-9327-cdc28e6521e2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163617Z:b109d2a6-e594-4241-9171-d8ff7eb2ccab" + "CENTRALUS:20151230T061327Z:7ea90979-2896-4a24-9327-cdc28e6521e2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:17 GMT" + "Wed, 30 Dec 2015 06:13:26 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1171,19 +1225,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d1e1602-6246-4e5d-a0e1-e177b54f3011" + "38d739ee-d791-4973-adb2-85664b40d8d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1198,25 +1255,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4937489a-76b6-4336-a8bc-c031444a1887" + "ce490290-607b-47a7-80c3-7bf5169bcbc0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14919" ], "x-ms-correlation-request-id": [ - "c0aaeefa-90cc-4397-bcb8-0ab72237d50f" + "f3e1b472-be3f-4da3-9584-0082eefeacb3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163601Z:c0aaeefa-90cc-4397-bcb8-0ab72237d50f" + "CENTRALUS:20151230T061316Z:f3e1b472-be3f-4da3-9584-0082eefeacb3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:00 GMT" + "Wed, 30 Dec 2015 06:13:16 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1237,19 +1294,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f9fc38e-5fe7-473e-8824-98300ca8826f" + "d51855a5-e02d-4cf0-bc9a-86af8b6c67d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -1264,25 +1324,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1daa3056-8559-40bd-8d63-7909e4cf722d" + "872e6a6e-bd7a-4a26-a54b-0c9260086c95" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14913" ], "x-ms-correlation-request-id": [ - "16e0c486-bc9f-4b95-931c-2406515b3aa6" + "4dc1573b-6b88-4fb9-8c71-b9e55656a1ff" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163610Z:16e0c486-bc9f-4b95-931c-2406515b3aa6" + "CENTRALUS:20151230T061322Z:4dc1573b-6b88-4fb9-8c71-b9e55656a1ff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:09 GMT" + "Wed, 30 Dec 2015 06:13:21 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1303,19 +1363,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64aa0588-1c55-429d-9b27-4c8c757f8bdf" + "0c9b5fd5-409f-4961-9fca-b9435354b6bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -1330,25 +1393,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3d0434c5-ec92-4cc4-be3f-db7b60ce74f3" + "914bf336-0952-42fb-81b3-76abc1ab9932" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14911" ], "x-ms-correlation-request-id": [ - "185e6b34-800a-44c1-8a8b-d4fa5772f26d" + "878d43d3-45ca-4600-8ded-8f8fcadca9cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163611Z:185e6b34-800a-44c1-8a8b-d4fa5772f26d" + "CENTRALUS:20151230T061323Z:878d43d3-45ca-4600-8ded-8f8fcadca9cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:11 GMT" + "Wed, 30 Dec 2015 06:13:22 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1369,19 +1432,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59fbcf69-ac13-4fd3-bee8-42f8a8967db1" + "ef7e3618-7a21-4aaf-875b-053e91cd77ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -1396,25 +1462,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bcab9361-5de0-431c-9f3b-7b9d462697ca" + "a226b79d-5a1f-4f04-8f61-01670ac4d2ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14904" ], "x-ms-correlation-request-id": [ - "83595f3d-f940-4188-9c47-6e74eaa6d27d" + "53f1b19b-cc0c-4a7a-aeaa-71a8d6732e74" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163626Z:83595f3d-f940-4188-9c47-6e74eaa6d27d" + "CENTRALUS:20151230T061332Z:53f1b19b-cc0c-4a7a-aeaa-71a8d6732e74" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:26 GMT" + "Wed, 30 Dec 2015 06:13:31 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1435,13 +1501,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c1d4811-6e01-4204-94b5-d9e738be2d99" + "7456fc86-1a58-4f3e-9c2f-c485f2768c54" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1462,22 +1531,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7e61655-846f-4dad-8869-28c9ff27f741" + "b13e5613-a082-4824-ac61-1edcda6cbecd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14918" ], "x-ms-correlation-request-id": [ - "5fd96442-cd53-4744-a96b-66a188a7f6d8" + "f3a47762-241e-45b6-929b-4454073ae57e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163601Z:5fd96442-cd53-4744-a96b-66a188a7f6d8" + "CENTRALUS:20151230T061316Z:f3a47762-241e-45b6-929b-4454073ae57e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:00 GMT" + "Wed, 30 Dec 2015 06:13:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1498,13 +1567,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6338be34-2bf0-4990-8cf6-fd37332356e5" + "ec2ca37a-d4cf-4715-9a2f-b646ac1a6bdc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1525,22 +1597,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fa67b84-0da2-4eb2-80aa-01f2090ba0e7" + "a463103a-c58c-434a-960d-0c31a88c3476" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14912" ], "x-ms-correlation-request-id": [ - "710cb75b-a508-4177-8869-ad56cf167d56" + "817b32e2-5680-4673-9149-cbea30f526b0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163610Z:710cb75b-a508-4177-8869-ad56cf167d56" + "CENTRALUS:20151230T061322Z:817b32e2-5680-4673-9149-cbea30f526b0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:10 GMT" + "Wed, 30 Dec 2015 06:13:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1561,13 +1633,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc7e8e57-afa3-45b9-b800-0111d7f6aeba" + "0ea9cc9e-34bb-448e-b1c6-961fdb078017" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1588,22 +1663,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1ecca798-9d33-48f9-a8a6-7f9ccf18c43d" + "878f01b7-4ee1-4666-95fd-f9a6a875df88" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14910" ], "x-ms-correlation-request-id": [ - "ab25edd3-27f6-4bb4-959a-05b159eaf0c4" + "434f0452-953a-42c3-89ac-0be2f35b1419" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163612Z:ab25edd3-27f6-4bb4-959a-05b159eaf0c4" + "CENTRALUS:20151230T061323Z:434f0452-953a-42c3-89ac-0be2f35b1419" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:11 GMT" + "Wed, 30 Dec 2015 06:13:23 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1624,13 +1699,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f80b2fe-cb20-4d13-9ff7-c4d2c7ac6f66" + "adc214a9-0a51-4a7e-bbb2-6e7cec77af30" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1651,22 +1729,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d11e6052-ec1d-4d7c-9003-bb0cc9560b8f" + "8a037390-d8f5-4dd4-b568-51273298102b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14903" ], "x-ms-correlation-request-id": [ - "c37b0354-341f-43b5-ab51-15e974d6b3c6" + "446681be-5c6d-471f-a501-7baf6f5c5890" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163627Z:c37b0354-341f-43b5-ab51-15e974d6b3c6" + "CENTRALUS:20151230T061332Z:446681be-5c6d-471f-a501-7baf6f5c5890" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:27 GMT" + "Wed, 30 Dec 2015 06:13:31 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1687,13 +1765,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e10ab0c1-590d-4759-b474-cd980f795ba6" + "7e91a6d4-6576-4d6e-b782-f93f2f097dc2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1714,22 +1795,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6ec6e4ff-b158-4981-90f6-f349f05d3189" + "d6c98477-4116-418a-a6f8-454efa22474c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], "x-ms-correlation-request-id": [ - "0873d934-996f-4136-be8c-4651846cbd03" + "ccdac0f8-00e4-4144-a589-10b33b8bd2ef" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163601Z:0873d934-996f-4136-be8c-4651846cbd03" + "CENTRALUS:20151230T061317Z:ccdac0f8-00e4-4144-a589-10b33b8bd2ef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:00 GMT" + "Wed, 30 Dec 2015 06:13:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1750,13 +1831,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97ab5c1e-c234-4889-9df5-f67b96c56e75" + "db328881-15c1-42b0-8a61-dd005f4716f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1777,22 +1861,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a30ffeb8-d8c6-4a56-8670-81ed3516199e" + "30375409-6ad1-4f75-857b-e6db98808019" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], "x-ms-correlation-request-id": [ - "89913c2b-3d69-49c0-8383-d3d30bc8f016" + "9023e85b-2920-4880-8be3-aa67c0f56517" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163610Z:89913c2b-3d69-49c0-8383-d3d30bc8f016" + "CENTRALUS:20151230T061322Z:9023e85b-2920-4880-8be3-aa67c0f56517" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:10 GMT" + "Wed, 30 Dec 2015 06:13:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1813,13 +1897,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6704f7b-edfb-4ac4-a96a-705703232f57" + "511660b4-bc4c-470d-86bd-d303ece90599" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1840,22 +1927,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6430c112-b65f-42ac-8960-01df7cdf5a2f" + "a038d511-e4ee-4d2d-a9dc-e8d35745d20f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11995" ], "x-ms-correlation-request-id": [ - "8404811b-488e-484f-8202-3f376e6bef49" + "ac3ca314-ef4a-46ca-abdb-dfe1ced03f98" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163612Z:8404811b-488e-484f-8202-3f376e6bef49" + "CENTRALUS:20151230T061323Z:ac3ca314-ef4a-46ca-abdb-dfe1ced03f98" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:12 GMT" + "Wed, 30 Dec 2015 06:13:23 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1876,13 +1963,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "478af98e-5e3d-42df-bcd5-92d745ed8004" + "ff3d04d0-ce7b-4b28-b2a3-102cc8106d25" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1903,22 +1993,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "998adea7-9e6e-4bd0-baf0-6f627740ea9f" + "33cdebb3-93ec-4e05-b9e0-43c35fce59ca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11993" ], "x-ms-correlation-request-id": [ - "e2de731d-77cf-442f-ae69-36619b6aae16" + "ab8d3531-67f0-491f-881d-06279156cefc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163627Z:e2de731d-77cf-442f-ae69-36619b6aae16" + "CENTRALUS:20151230T061333Z:ab8d3531-67f0-491f-881d-06279156cefc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:27 GMT" + "Wed, 30 Dec 2015 06:13:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1939,13 +2029,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35243126-b392-46cb-b64e-7d3c604609d3" + "724f7735-0ff8-4c71-bd4d-e2e6aff4ac75" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1966,22 +2059,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d41fef70-fd4b-4cc1-91a9-83cc1a99074a" + "7f6f50e9-ee4d-4fa9-8344-d5c0d43487fd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], "x-ms-correlation-request-id": [ - "40d60157-34a1-4a8a-96e0-566a05fbb0ae" + "920142b1-5355-4fdf-9997-7122dad42e84" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163601Z:40d60157-34a1-4a8a-96e0-566a05fbb0ae" + "CENTRALUS:20151230T061317Z:920142b1-5355-4fdf-9997-7122dad42e84" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:02 GMT" + "Wed, 30 Dec 2015 06:13:16 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2002,13 +2095,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "694667a0-06e2-4fed-92b4-3ad1a1be3aeb" + "ca1c0577-0df5-4e18-a232-0c35cb5cd598" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2029,22 +2125,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "294ce2d8-866d-450f-b722-68b84cb8e1fa" + "1847d06f-0628-45bf-a29c-0162f5bda995" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], "x-ms-correlation-request-id": [ - "7c0c595b-6e91-4d92-aeaf-abad29e68be8" + "05609f07-dcec-4331-b5fd-bcbbd83474a3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163611Z:7c0c595b-6e91-4d92-aeaf-abad29e68be8" + "CENTRALUS:20151230T061323Z:05609f07-dcec-4331-b5fd-bcbbd83474a3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:10 GMT" + "Wed, 30 Dec 2015 06:13:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2065,13 +2161,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58c6ea40-509c-4809-bbb6-141cf40577c4" + "54101cb1-3ec9-46ed-9904-8d5378684ee1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2092,22 +2191,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "630f6846-aed3-4830-a93f-b4198d480a68" + "0593bd11-60f2-4411-83f7-65d9a2165f0f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11994" ], "x-ms-correlation-request-id": [ - "753478aa-a8e7-4963-b7bd-7f864ee8d146" + "59c2a2f1-4f14-404e-88b5-f3a8bf9b74b9" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163612Z:753478aa-a8e7-4963-b7bd-7f864ee8d146" + "CENTRALUS:20151230T061324Z:59c2a2f1-4f14-404e-88b5-f3a8bf9b74b9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:12 GMT" + "Wed, 30 Dec 2015 06:13:23 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2128,13 +2227,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f1becf1-281b-4b28-ac65-9c52708a1e04" + "751fcc28-9f9f-4ab9-bc13-09a7c1d7c192" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2155,22 +2257,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca57dc69-b3f0-4beb-aa76-f13a9663561a" + "cac8c1e1-44fd-4daf-887e-4be461b22873" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11992" ], "x-ms-correlation-request-id": [ - "2c18808f-d9b6-44db-9baa-5a9ea83bd2db" + "3bb77889-ed73-4d20-b1be-46b9ce7041d9" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163627Z:2c18808f-d9b6-44db-9baa-5a9ea83bd2db" + "CENTRALUS:20151230T061333Z:3bb77889-ed73-4d20-b1be-46b9ce7041d9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:27 GMT" + "Wed, 30 Dec 2015 06:13:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2197,19 +2299,22 @@ "290" ], "x-ms-client-request-id": [ - "337aebfa-3e78-49fa-8ad5-a91f761e2a01" + "135a2fb1-3fe1-4d3d-ad43-cef6f06e687f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -2224,25 +2329,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76a1d181-c905-479c-ad77-7e945be2457f" + "1d31377f-2000-4847-badc-435dedb71408" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "09e0a78d-0995-42ce-bef0-554328f31658" + "c6005fc4-b594-451d-a059-0e45ffb293c9" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163604Z:09e0a78d-0995-42ce-bef0-554328f31658" + "CENTRALUS:20151230T061319Z:c6005fc4-b594-451d-a059-0e45ffb293c9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:04 GMT" + "Wed, 30 Dec 2015 06:13:19 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -2269,19 +2374,22 @@ "221" ], "x-ms-client-request-id": [ - "79368ac6-6f39-4728-8877-3492fc3a71ec" + "08cc3afc-cf6b-441d-93cb-a12906b56fa0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -2296,25 +2404,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2150a1cc-ab10-467f-a8cc-4d35f5a3f85d" + "9a1d83ec-5ba9-48a4-9424-54413b042094" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "5095e1ee-82ff-4458-aad5-d1d389772035" + "a30d4930-7f36-4ad2-b55f-9d40d6cddd77" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:5095e1ee-82ff-4458-aad5-d1d389772035" + "CENTRALUS:20151230T061335Z:a30d4930-7f36-4ad2-b55f-9d40d6cddd77" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" + "Wed, 30 Dec 2015 06:13:34 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -2353,16 +2461,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14937" ], "x-ms-request-id": [ - "29d95001-7e32-4d2d-93ca-5bcc95ef1b5f" + "c3373880-96f6-4d69-95e8-e633cf84f022" ], "x-ms-correlation-request-id": [ - "29d95001-7e32-4d2d-93ca-5bcc95ef1b5f" + "c3373880-96f6-4d69-95e8-e633cf84f022" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163618Z:29d95001-7e32-4d2d-93ca-5bcc95ef1b5f" + "CENTRALUS:20151230T061327Z:c3373880-96f6-4d69-95e8-e633cf84f022" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2371,7 +2479,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:18 GMT" + "Wed, 30 Dec 2015 06:13:27 GMT" ] }, "StatusCode": 200 @@ -2401,16 +2509,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14936" ], "x-ms-request-id": [ - "6672b7ed-3776-45d7-93bb-c19b122263e8" + "69f2e2de-c265-4273-ba07-d6519611514d" ], "x-ms-correlation-request-id": [ - "6672b7ed-3776-45d7-93bb-c19b122263e8" + "69f2e2de-c265-4273-ba07-d6519611514d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163630Z:6672b7ed-3776-45d7-93bb-c19b122263e8" + "CENTRALUS:20151230T061335Z:69f2e2de-c265-4273-ba07-d6519611514d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2419,7 +2527,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" + "Wed, 30 Dec 2015 06:13:35 GMT" ] }, "StatusCode": 200 @@ -2449,10 +2557,10 @@ "no-cache" ], "x-ms-request-id": [ - "6c10b2a0-50d9-4198-ba76-55e03218d49a" + "a7986eb1-8755-4a6d-a146-b9792906585e" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -2461,22 +2569,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14969" ], "x-ms-correlation-request-id": [ - "c5fee70d-a89a-407c-977c-ca7124bb1856" + "1c9de418-209b-491c-b904-b057a1d4c029" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163619Z:c5fee70d-a89a-407c-977c-ca7124bb1856" + "CENTRALUS:20151230T061328Z:1c9de418-209b-491c-b904-b057a1d4c029" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:18 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2512,10 +2617,10 @@ "no-cache" ], "x-ms-request-id": [ - "595268c9-fc57-49e5-9c8f-45f9d4cc813c" + "ae8bf003-0714-4254-b95b-99cf954ba2c7" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -2524,22 +2629,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14963" ], "x-ms-correlation-request-id": [ - "f95165b4-5dcc-4172-8a62-860d3f50ea16" + "2b29076a-7317-4481-9ec3-6bee97632af3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:f95165b4-5dcc-4172-8a62-860d3f50ea16" + "CENTRALUS:20151230T061335Z:2b29076a-7317-4481-9ec3-6bee97632af3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2575,10 +2677,10 @@ "no-cache" ], "x-ms-request-id": [ - "48a67968-5020-440c-b9c3-d3a3ce00f64a" + "b759b7ef-dcf7-4ed4-96df-3676675e89ce" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -2587,22 +2689,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14968" ], "x-ms-correlation-request-id": [ - "280465f6-a41c-4fc7-a7f8-7d3e3670431f" + "dc733f7a-dc8c-462e-9ac6-851f696e361b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163619Z:280465f6-a41c-4fc7-a7f8-7d3e3670431f" + "CENTRALUS:20151230T061328Z:dc733f7a-dc8c-462e-9ac6-851f696e361b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:18 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2638,10 +2737,10 @@ "no-cache" ], "x-ms-request-id": [ - "28955dff-b2f4-4dfc-9205-58733650cf28" + "6fd64c4e-47dc-4b1a-aa63-057d015702b3" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -2650,22 +2749,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14962" ], "x-ms-correlation-request-id": [ - "82670e60-bad9-483b-bbc9-772dbe5d39d2" + "4e905146-2013-4291-bb87-f7430694f837" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:82670e60-bad9-483b-bbc9-772dbe5d39d2" + "CENTRALUS:20151230T061335Z:4e905146-2013-4291-bb87-f7430694f837" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2701,10 +2797,10 @@ "no-cache" ], "x-ms-request-id": [ - "e2feafde-a517-4534-8174-29085522cca4" + "2d160a6a-292d-40f2-9198-3e0b95055280" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -2713,22 +2809,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14967" ], "x-ms-correlation-request-id": [ - "45b6aa13-69de-42e0-9461-8a067be6a109" + "e58f5b1c-a8d7-4934-a99d-2f35fc01e678" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163619Z:45b6aa13-69de-42e0-9461-8a067be6a109" + "CENTRALUS:20151230T061328Z:e58f5b1c-a8d7-4934-a99d-2f35fc01e678" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:18 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2764,10 +2857,10 @@ "no-cache" ], "x-ms-request-id": [ - "e157152e-aea3-42be-90b4-5c3c2696574f" + "d91d5edc-029e-44c5-909e-b1acf0b43d7e" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -2776,22 +2869,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14961" ], "x-ms-correlation-request-id": [ - "85043a5c-7025-43a9-8764-a930665f5f36" + "d70a3810-83f7-47cb-a928-8b2676033b65" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:85043a5c-7025-43a9-8764-a930665f5f36" + "CENTRALUS:20151230T061335Z:d70a3810-83f7-47cb-a928-8b2676033b65" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2827,10 +2917,10 @@ "no-cache" ], "x-ms-request-id": [ - "3b6c625d-040b-46c2-b1d1-0edbb368e3a8" + "03860842-6631-435e-bdc5-b9ffdd7e6dde" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -2839,22 +2929,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14966" ], "x-ms-correlation-request-id": [ - "cb151bce-c232-4a24-ae4d-fc10214b1fc0" + "1094765e-d84c-4449-9161-80d70d56d00d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163619Z:cb151bce-c232-4a24-ae4d-fc10214b1fc0" + "CENTRALUS:20151230T061328Z:1094765e-d84c-4449-9161-80d70d56d00d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:18 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2890,10 +2977,10 @@ "no-cache" ], "x-ms-request-id": [ - "29f36dbf-9d4f-45cb-8d22-c746fbc591ef" + "3898300e-0eab-4df7-b9be-fbf6e73150f2" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -2902,22 +2989,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14960" ], "x-ms-correlation-request-id": [ - "b3e222f1-3eeb-4a68-9e09-6523ead0906e" + "1e027d25-f8e1-4729-9914-6a33372788a6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:b3e222f1-3eeb-4a68-9e09-6523ead0906e" + "CENTRALUS:20151230T061336Z:1e027d25-f8e1-4729-9914-6a33372788a6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2953,7 +3037,7 @@ "no-cache" ], "x-ms-request-id": [ - "35917651-9405-4354-9667-bbecdd0857b5" + "773f36ca-8930-4e8f-8362-087d3547ba1a" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_3" @@ -2965,22 +3049,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14965" ], "x-ms-correlation-request-id": [ - "a949d26c-6618-45c7-82ec-fe18630b19bd" + "a6ef844e-c2fe-4af6-8f11-732b104df9ca" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163619Z:a949d26c-6618-45c7-82ec-fe18630b19bd" + "CENTRALUS:20151230T061328Z:a6ef844e-c2fe-4af6-8f11-732b104df9ca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:18 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3016,10 +3097,10 @@ "no-cache" ], "x-ms-request-id": [ - "7e879d9f-c8de-4b97-a367-fdfe343c4c66" + "0625d1f7-85fb-49a0-9204-d324a9328aa0" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -3028,22 +3109,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14959" ], "x-ms-correlation-request-id": [ - "10bc4a10-f194-4624-a409-6cf760b0bf63" + "59d54240-185d-43e8-9a83-28de4ea91c0a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:10bc4a10-f194-4624-a409-6cf760b0bf63" + "CENTRALUS:20151230T061336Z:59d54240-185d-43e8-9a83-28de4ea91c0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3079,10 +3157,10 @@ "no-cache" ], "x-ms-request-id": [ - "56af22f3-a27a-42ee-835e-d10f0e602923" + "66755363-c7cf-4f26-9933-b2e2cf6b1854" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -3091,22 +3169,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14964" ], "x-ms-correlation-request-id": [ - "77d3e52c-b8ce-47d8-a17c-f2f976613f3e" + "02062af7-958a-4b8a-bc36-8ad8e9764da6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163619Z:77d3e52c-b8ce-47d8-a17c-f2f976613f3e" + "CENTRALUS:20151230T061328Z:02062af7-958a-4b8a-bc36-8ad8e9764da6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:18 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:27 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3142,10 +3217,10 @@ "no-cache" ], "x-ms-request-id": [ - "b766fac3-cc99-48b7-b086-d6bb7aad1e81" + "38e3ebfe-4b0c-4341-804f-c3664e721ab9" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -3154,22 +3229,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14958" ], "x-ms-correlation-request-id": [ - "80619556-4c37-497e-adeb-5ac306e3e392" + "007a30a2-f88b-480e-861c-04af954581a7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:80619556-4c37-497e-adeb-5ac306e3e392" + "CENTRALUS:20151230T061336Z:007a30a2-f88b-480e-861c-04af954581a7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:30 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3187,13 +3259,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e1d55c2-62e4-478f-bca4-91af13889bbd" + "3b6c4257-9f3d-4a90-996d-df150e24a806" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3214,22 +3289,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c1bcc82-e033-4024-9f8b-969d42788e0b" + "9ed203ce-4f8a-4f61-8617-ac54f030c86d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14907" ], "x-ms-correlation-request-id": [ - "ac6c7847-cedb-4fce-bf26-626000343558" + "05b37e2f-a75e-4889-a834-4dd910416f7d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163621Z:ac6c7847-cedb-4fce-bf26-626000343558" + "CENTRALUS:20151230T061329Z:05b37e2f-a75e-4889-a834-4dd910416f7d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:20 GMT" + "Wed, 30 Dec 2015 06:13:28 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3250,13 +3325,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d78b2ef1-1adc-4388-9bc8-41e852d7e3fd" + "d5378d08-756b-470e-9641-e0b8d3df650d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3277,22 +3355,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a96154c-70ee-4cb2-8328-d273bead14d8" + "ae2e69bc-a095-4150-860f-ae5d41c2fe66" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14902" ], "x-ms-correlation-request-id": [ - "d6b8c69a-0706-4f34-8e14-7ba779850f8c" + "af912504-d6b2-44db-bd98-558c5db3c2ff" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163631Z:d6b8c69a-0706-4f34-8e14-7ba779850f8c" + "CENTRALUS:20151230T061336Z:af912504-d6b2-44db-bd98-558c5db3c2ff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:31 GMT" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3313,13 +3391,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31583786-aa6c-4497-9779-e99117672e2d" + "1d3d9a32-bc0c-4022-8147-9e0fb270b140" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3340,22 +3421,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca590570-9b1d-4350-b519-640d4c283240" + "853efa44-b61b-4833-9ea7-e35895ea95a5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14906" ], "x-ms-correlation-request-id": [ - "88d462b4-a3f4-48b8-b4d4-97af627517e6" + "c551c74b-e657-4141-96de-ec843a0c9099" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163622Z:88d462b4-a3f4-48b8-b4d4-97af627517e6" + "CENTRALUS:20151230T061329Z:c551c74b-e657-4141-96de-ec843a0c9099" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:21 GMT" + "Wed, 30 Dec 2015 06:13:29 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3376,13 +3457,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f55cf5ad-a6cd-4d81-8623-b3e64af99b93" + "42823103-786f-4a17-a1bf-c22bfda0ac40" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3403,22 +3487,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b833b082-c788-428c-b7da-68b18c2566da" + "0420b245-eaff-4d6d-a399-f48d158d823f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14901" ], "x-ms-correlation-request-id": [ - "431843fe-1d4f-479d-883a-7f7d587a955f" + "f8ed8f8f-69e2-4836-86c9-997e75e53d5d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163632Z:431843fe-1d4f-479d-883a-7f7d587a955f" + "CENTRALUS:20151230T061336Z:f8ed8f8f-69e2-4836-86c9-997e75e53d5d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:32 GMT" + "Wed, 30 Dec 2015 06:13:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3439,13 +3523,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dd192ca-4ad9-4cc9-b0df-226e1b6dca66" + "7c1c6072-0f22-4218-8970-13990e32633a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3466,22 +3553,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0171b13d-d36d-4f62-a0b9-c1f4a0226555" + "41248ef1-2255-4bf5-8684-f5dc35ecf4c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14905" ], "x-ms-correlation-request-id": [ - "e7ce2d86-cf87-4714-87e9-515d0b5ee7d3" + "799f81f0-d46c-43a9-ac1c-06a355a0f01c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163625Z:e7ce2d86-cf87-4714-87e9-515d0b5ee7d3" + "CENTRALUS:20151230T061331Z:799f81f0-d46c-43a9-ac1c-06a355a0f01c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:25 GMT" + "Wed, 30 Dec 2015 06:13:30 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3502,13 +3589,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d44dbf49-1cf6-4faf-ab89-3cb410074c16" + "caca3332-0bb0-4dd2-8117-a61769c20a1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3529,22 +3619,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80cc0fa6-cc41-463e-91ea-4ed38c0abbcb" + "a6be6b1a-21d2-4cfc-9363-119a5491f816" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14900" ], "x-ms-correlation-request-id": [ - "1afff562-661d-4fd7-911e-02091852d3ee" + "36763921-73c5-49a6-b472-a4abde5af0de" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163632Z:1afff562-661d-4fd7-911e-02091852d3ee" + "CENTRALUS:20151230T061337Z:36763921-73c5-49a6-b472-a4abde5af0de" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:32 GMT" + "Wed, 30 Dec 2015 06:13:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3565,13 +3655,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "089bbf7e-4e10-459d-9a0f-2df6039ea5e7" + "9d07e197-7f43-4435-bce2-cbe2e64d0f6c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3592,22 +3685,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "b537d494-25da-4d55-a424-fc0a9fe8c793" + "375fdf61-0ff3-45c5-a5df-ba653d3c76fc" ], "x-ms-correlation-request-id": [ - "b537d494-25da-4d55-a424-fc0a9fe8c793" + "375fdf61-0ff3-45c5-a5df-ba653d3c76fc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163625Z:b537d494-25da-4d55-a424-fc0a9fe8c793" + "CENTRALUS:20151230T061332Z:375fdf61-0ff3-45c5-a5df-ba653d3c76fc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:25 GMT" + "Wed, 30 Dec 2015 06:13:31 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3628,13 +3721,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd01093a-5693-4dcb-a33c-c6a693aff10e" + "7f1611ac-1065-4a85-a51f-3d1d8ecdac1f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3655,22 +3751,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "08b9b34a-ddba-413b-8f28-d87c2f8885a6" + "73dea75f-db2a-4a5c-b8ad-8e43ee35527e" ], "x-ms-correlation-request-id": [ - "08b9b34a-ddba-413b-8f28-d87c2f8885a6" + "73dea75f-db2a-4a5c-b8ad-8e43ee35527e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163633Z:08b9b34a-ddba-413b-8f28-d87c2f8885a6" + "CENTRALUS:20151230T061337Z:73dea75f-db2a-4a5c-b8ad-8e43ee35527e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:36:32 GMT" + "Wed, 30 Dec 2015 06:13:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" 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 index 2c6b740b78e7..281d4361d1c9 100644 --- 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 @@ -7,19 +7,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93d2b1e8-fd29-4485-9f65-fc0212575e4b" + "4062ea99-50bf-4569-ad2f-f95d67399ae7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3699" + "3402" ], "Content-Type": [ "application/json" @@ -34,25 +37,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bdaada31-2c1a-49a2-8864-6be8cf17cfe9" + "ed056fb3-4c7a-4101-bbc4-a066dfc02be4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14953" ], "x-ms-correlation-request-id": [ - "860c2379-d3c6-4d35-bd0e-5a7115dc66ae" + "374db8cb-0592-43d8-95e7-966242cc8846" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163207Z:860c2379-d3c6-4d35-bd0e-5a7115dc66ae" + "CENTRALUS:20151230T060925Z:374db8cb-0592-43d8-95e7-966242cc8846" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:07 GMT" + "Wed, 30 Dec 2015 06:09:24 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -73,19 +76,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce68d7ee-961a-423b-b52f-88de20400a7a" + "81745f9f-bfb1-43e3-b4e9-2c8b7dbf8e61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -100,25 +106,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b041508b-a358-43a9-bf17-54d6ba6cdb1d" + "1655f7d7-0f02-4dcf-bfbb-045f830f6f7d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14927" ], "x-ms-correlation-request-id": [ - "708dd287-d9b7-4273-ac71-6eb2ed8e4bee" + "184a1f7d-e3ab-4218-8f50-e2ee25792157" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163220Z:708dd287-d9b7-4273-ac71-6eb2ed8e4bee" + "CENTRALUS:20151230T060942Z:184a1f7d-e3ab-4218-8f50-e2ee25792157" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:19 GMT" + "Wed, 30 Dec 2015 06:09:41 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -139,19 +145,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1721949d-c269-4c96-9d1b-9840ddc452dc" + "c3178bcc-a550-49e7-a651-0395e893103b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", + "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": [ - "2373" + "2212" ], "Content-Type": [ "application/json" @@ -166,22 +175,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e22082d9-8dcc-49bc-b785-b4e7dbef2773" + "0864aedf-e6a8-4f27-9842-c60435955c7b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14952" ], "x-ms-correlation-request-id": [ - "c0a0f13f-ea07-4695-aa02-fc5277c1a5b6" + "bc1532b3-a31a-4efa-a7f5-62bb329d290b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163208Z:c0a0f13f-ea07-4695-aa02-fc5277c1a5b6" + "CENTRALUS:20151230T060925Z:bc1532b3-a31a-4efa-a7f5-62bb329d290b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:07 GMT" + "Wed, 30 Dec 2015 06:09:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -202,13 +211,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4296d1b6-6ffa-435b-aa41-bc60d5c0b900" + "0a5db7b3-676a-488f-90a6-25298683b700" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -229,22 +241,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91008416-6372-4a73-aa0f-5d2bb46653ba" + "f9e9d2ed-9c16-4e15-acfb-b8684450e349" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14926" ], "x-ms-correlation-request-id": [ - "f5b9920d-c53b-45b3-a7f2-2785773b0b2c" + "824e939e-ce72-4688-8fbe-b2b3ff4b43b7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163220Z:f5b9920d-c53b-45b3-a7f2-2785773b0b2c" + "CENTRALUS:20151230T060942Z:824e939e-ce72-4688-8fbe-b2b3ff4b43b7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:19 GMT" + "Wed, 30 Dec 2015 06:09:41 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -265,19 +277,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0f4b596-2b61-4c48-8873-bef65726216e" + "8e1dd2cb-bf1c-4c34-8919-50d62edfc4c1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", + "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": [ - "469" + "308" ], "Content-Type": [ "application/json" @@ -292,22 +307,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30f74475-f56d-49e9-b372-475705a1aa55" + "7730229e-8448-4783-a6a5-ea8f27b33a32" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "f1fbc751-7ce0-49a6-895d-574b17f7c54e" + "7c43c534-c111-4db9-9842-06fbc57fae4f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163208Z:f1fbc751-7ce0-49a6-895d-574b17f7c54e" + "CENTRALUS:20151230T060925Z:7c43c534-c111-4db9-9842-06fbc57fae4f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:08 GMT" + "Wed, 30 Dec 2015 06:09:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -328,13 +343,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98a19aeb-056d-47b1-9e7c-5bbd2dbead82" + "1c13a74b-a294-416a-9dd3-455e8127f813" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -355,22 +373,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fb499def-d463-46b1-8182-2f443ebf4a9a" + "a21c1d12-c3bd-4fe8-9c43-ffe1f7773f56" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "5a1b2a67-daf0-4614-85fe-59b927b5ab56" + "68394472-91b5-4d22-8e85-7cac292538c2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163220Z:5a1b2a67-daf0-4614-85fe-59b927b5ab56" + "CENTRALUS:20151230T060942Z:68394472-91b5-4d22-8e85-7cac292538c2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:20 GMT" + "Wed, 30 Dec 2015 06:09:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -391,19 +409,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5422d8ec-b1aa-4b54-9905-68f923892da3" + "6646a590-86b4-4f1c-a5ec-3283b5fd35eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", + "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": [ - "443" + "282" ], "Content-Type": [ "application/json" @@ -418,22 +439,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53f0bb39-4a72-4f26-9a09-adfb2a951d71" + "97421b39-a3f1-4e4d-8e50-3cc121751e44" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11988" ], "x-ms-correlation-request-id": [ - "fb8f2083-b367-4afb-b3bb-9f9d02d6a125" + "9b46473f-a0fd-4c31-bc08-4de82ab89d43" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163208Z:fb8f2083-b367-4afb-b3bb-9f9d02d6a125" + "CENTRALUS:20151230T060926Z:9b46473f-a0fd-4c31-bc08-4de82ab89d43" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:08 GMT" + "Wed, 30 Dec 2015 06:09:25 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -454,13 +475,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f19e15b8-ea6f-44e5-98c7-e582f41e8333" + "992dc9bf-6377-45f5-b951-9ba585f3d62a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -481,22 +505,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df94180f-4e60-4c4f-8073-9d5a3c025e28" + "2aa68f86-6f6e-4a0a-a9b9-608c909fce91" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11990" ], "x-ms-correlation-request-id": [ - "99d97fb3-5132-4a04-a92b-7a61e58e3dd9" + "407c8e8b-ccfe-45a5-bf8b-25a5669d5b7c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163221Z:99d97fb3-5132-4a04-a92b-7a61e58e3dd9" + "CENTRALUS:20151230T060942Z:407c8e8b-ccfe-45a5-bf8b-25a5669d5b7c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:20 GMT" + "Wed, 30 Dec 2015 06:09:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -523,19 +547,22 @@ "285" ], "x-ms-client-request-id": [ - "a7ab85b8-7e5a-417c-b3ec-f1bbbd4b55aa" + "5c663d82-2680-4196-8c8f-a1223869e8d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -550,25 +577,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da0c5c6f-1bd2-4ec9-a929-6a94e4329952" + "c5c52ff7-6d31-4ad2-83bd-6abf8c7ef057" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "1d12f62c-012b-4657-a3a1-4f2da9a517f1" + "64bf62f9-e4e3-4e54-b941-b82021aa3bf0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163212Z:1d12f62c-012b-4657-a3a1-4f2da9a517f1" + "CENTRALUS:20151230T060929Z:64bf62f9-e4e3-4e54-b941-b82021aa3bf0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:11 GMT" + "Wed, 30 Dec 2015 06:09:28 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -595,19 +622,22 @@ "216" ], "x-ms-client-request-id": [ - "b7b00a58-f553-4e93-a236-253a3ae85f64" + "256fa06c-a6f8-41ca-94c4-34612e5e8e6d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -622,25 +652,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e72f3cb6-1a58-48b3-b090-06fb88ea4347" + "173f18ce-c11b-4184-b742-7dc71e44b46a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "5c08bd38-ed06-41d4-a3d8-2a045fa2f83f" + "cb7b8b8c-e8aa-44ee-bd83-75ca97aeec5c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:5c08bd38-ed06-41d4-a3d8-2a045fa2f83f" + "CENTRALUS:20151230T060945Z:cb7b8b8c-e8aa-44ee-bd83-75ca97aeec5c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" + "Wed, 30 Dec 2015 06:09:44 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -679,16 +709,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14954" ], "x-ms-request-id": [ - "e556e222-7406-4ef4-bbd7-3aedd24bc53c" + "7391a611-9372-41c8-af63-f492e113a53c" ], "x-ms-correlation-request-id": [ - "e556e222-7406-4ef4-bbd7-3aedd24bc53c" + "7391a611-9372-41c8-af63-f492e113a53c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163212Z:e556e222-7406-4ef4-bbd7-3aedd24bc53c" + "CENTRALUS:20151230T060929Z:7391a611-9372-41c8-af63-f492e113a53c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -697,7 +727,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:12 GMT" + "Wed, 30 Dec 2015 06:09:29 GMT" ] }, "StatusCode": 200 @@ -727,16 +757,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14940" ], "x-ms-request-id": [ - "adb9e97a-318e-4155-a87a-a5f4588d1f30" + "2559c8a8-224b-4866-ab8a-f4726e0a6b79" ], "x-ms-correlation-request-id": [ - "adb9e97a-318e-4155-a87a-a5f4588d1f30" + "2559c8a8-224b-4866-ab8a-f4726e0a6b79" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:adb9e97a-318e-4155-a87a-a5f4588d1f30" + "CENTRALUS:20151230T060938Z:2559c8a8-224b-4866-ab8a-f4726e0a6b79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -745,7 +775,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:16 GMT" + "Wed, 30 Dec 2015 06:09:38 GMT" ] }, "StatusCode": 200 @@ -775,16 +805,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14925" ], "x-ms-request-id": [ - "cffcf2df-e662-463a-8e43-ec834fb88313" + "04f4b76a-d151-47c0-b938-f4d3b7c7645b" ], "x-ms-correlation-request-id": [ - "cffcf2df-e662-463a-8e43-ec834fb88313" + "04f4b76a-d151-47c0-b938-f4d3b7c7645b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:cffcf2df-e662-463a-8e43-ec834fb88313" + "CENTRALUS:20151230T060945Z:04f4b76a-d151-47c0-b938-f4d3b7c7645b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -793,7 +823,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" + "Wed, 30 Dec 2015 06:09:44 GMT" ] }, "StatusCode": 200 @@ -823,10 +853,10 @@ "no-cache" ], "x-ms-request-id": [ - "ba509394-d455-4e3a-8f68-60d4a1cf2d1a" + "a3c61c4a-a99f-4bf2-87e1-843922f4b51d" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -835,22 +865,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14952" ], "x-ms-correlation-request-id": [ - "3f868a3c-5858-4b95-b93c-2e5e4715fa60" + "18d8dd54-e436-4574-bc25-88c7dfd0f2b9" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163213Z:3f868a3c-5858-4b95-b93c-2e5e4715fa60" + "CENTRALUS:20151230T060930Z:18d8dd54-e436-4574-bc25-88c7dfd0f2b9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:12 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:30 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -886,10 +913,10 @@ "no-cache" ], "x-ms-request-id": [ - "0f9eb890-8430-4b20-98b0-358990aa514e" + "5a518d2e-2d42-4363-9bac-58543373d4d0" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -898,22 +925,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14939" ], "x-ms-correlation-request-id": [ - "e20f63f5-4d56-432d-b483-caeae869d2f6" + "f70cfdc0-7678-48aa-8a0b-fe3ad241e584" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:e20f63f5-4d56-432d-b483-caeae869d2f6" + "CENTRALUS:20151230T060938Z:f70cfdc0-7678-48aa-8a0b-fe3ad241e584" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:16 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -949,10 +973,10 @@ "no-cache" ], "x-ms-request-id": [ - "2ba5e51b-b5b5-42e6-a0e8-4c640988601f" + "7c78a287-352d-423c-a365-400e03a187c7" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -961,22 +985,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14924" ], "x-ms-correlation-request-id": [ - "5859c3ec-3067-476f-b7d5-51f4ed17c3a6" + "31be8814-3029-483e-92fc-29c68b29a0e4" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:5859c3ec-3067-476f-b7d5-51f4ed17c3a6" + "CENTRALUS:20151230T060945Z:31be8814-3029-483e-92fc-29c68b29a0e4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:44 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1012,7 +1033,7 @@ "no-cache" ], "x-ms-request-id": [ - "d14edfcf-fc2f-44c6-99b7-41d5875f8f7e" + "61e86b86-440e-4d0d-8eb3-5a724b04fe2c" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_3" @@ -1024,22 +1045,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14951" ], "x-ms-correlation-request-id": [ - "776994bc-741d-4143-bf6e-19b38d960f05" + "9e38184a-572a-4344-94a0-558fbf5dcdd3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163213Z:776994bc-741d-4143-bf6e-19b38d960f05" + "CENTRALUS:20151230T060931Z:9e38184a-572a-4344-94a0-558fbf5dcdd3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:12 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1075,10 +1093,10 @@ "no-cache" ], "x-ms-request-id": [ - "5e70160a-26fd-47a5-b49d-391413e71e15" + "090d381e-6b1e-4b64-abb4-8362bf5fa51e" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,22 +1105,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14938" ], "x-ms-correlation-request-id": [ - "88ed01b0-5521-4f77-b5d7-1fa892db0a33" + "b786c813-ee7e-4adc-b8f9-d4cf28b8b545" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:88ed01b0-5521-4f77-b5d7-1fa892db0a33" + "CENTRALUS:20151230T060938Z:b786c813-ee7e-4adc-b8f9-d4cf28b8b545" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:16 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1138,10 +1153,10 @@ "no-cache" ], "x-ms-request-id": [ - "aa49a8fd-ecfb-4c61-88d5-ec4f465f20ba" + "401bf18b-f989-49a8-91d6-51c7e3ae955d" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -1150,22 +1165,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14923" ], "x-ms-correlation-request-id": [ - "bd25f457-1721-4aaa-b38b-f049d826f5ed" + "26d43180-84d6-41b4-9574-57e977cabd7c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:bd25f457-1721-4aaa-b38b-f049d826f5ed" + "CENTRALUS:20151230T060945Z:26d43180-84d6-41b4-9574-57e977cabd7c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:44 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1201,10 +1213,10 @@ "no-cache" ], "x-ms-request-id": [ - "1f9677e8-7a8a-4797-9a16-05ef42f6c824" + "2c9037cb-246d-4ab6-8a69-5f6bd5ddc3b7" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -1213,22 +1225,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14950" ], "x-ms-correlation-request-id": [ - "33b9b50f-e2fd-41eb-96b0-9a4449f101ac" + "26b6b854-e639-41f1-a557-d02f2f8f7508" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163213Z:33b9b50f-e2fd-41eb-96b0-9a4449f101ac" + "CENTRALUS:20151230T060931Z:26b6b854-e639-41f1-a557-d02f2f8f7508" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:12 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1264,10 +1273,10 @@ "no-cache" ], "x-ms-request-id": [ - "4fdd29b6-71de-4568-b1e4-2edcd165da40" + "69528df7-779c-4563-bbae-b7266e7fa63d" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -1276,22 +1285,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14937" ], "x-ms-correlation-request-id": [ - "d773c22b-ce91-4f12-bcc2-3ec9c61cffbb" + "6e3b8fd9-f382-442b-986f-1b67cd090616" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:d773c22b-ce91-4f12-bcc2-3ec9c61cffbb" + "CENTRALUS:20151230T060938Z:6e3b8fd9-f382-442b-986f-1b67cd090616" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:17 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1327,10 +1333,10 @@ "no-cache" ], "x-ms-request-id": [ - "17770806-6073-4d6c-9022-76297a52bfe8" + "b5cc3864-92ae-4978-9646-9fa45bee5b46" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -1339,22 +1345,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14922" ], "x-ms-correlation-request-id": [ - "293b11a6-e195-4573-83ca-5b02b82fc97a" + "4be344be-f254-4fd1-8dc5-17ed3d2798e5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:293b11a6-e195-4573-83ca-5b02b82fc97a" + "CENTRALUS:20151230T060945Z:4be344be-f254-4fd1-8dc5-17ed3d2798e5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:44 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1390,7 +1393,7 @@ "no-cache" ], "x-ms-request-id": [ - "0e3a2f9a-d355-479f-930f-69dc10e2a8ff" + "5fe96fbe-5e1f-4612-9cee-85318140dde6" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_2" @@ -1402,22 +1405,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14949" ], "x-ms-correlation-request-id": [ - "baa46654-2abc-44a9-b24a-3bfe6ede4d33" + "5fb1aeaa-f792-40c0-bdad-e373fb21812d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163213Z:baa46654-2abc-44a9-b24a-3bfe6ede4d33" + "CENTRALUS:20151230T060931Z:5fb1aeaa-f792-40c0-bdad-e373fb21812d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:13 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1453,7 +1453,7 @@ "no-cache" ], "x-ms-request-id": [ - "237fd927-a568-4e00-84cb-e352d20fd7fe" + "86c90f74-19c6-4dff-a4b7-fd5d62744864" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_2" @@ -1465,22 +1465,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14936" ], "x-ms-correlation-request-id": [ - "a40aca34-a22a-4f9d-b0e4-8ef69d0cedf7" + "94dc4b11-1db7-415c-89b0-1b65cae53aef" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:a40aca34-a22a-4f9d-b0e4-8ef69d0cedf7" + "CENTRALUS:20151230T060938Z:94dc4b11-1db7-415c-89b0-1b65cae53aef" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:17 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1516,7 +1513,7 @@ "no-cache" ], "x-ms-request-id": [ - "493bd5c7-e417-4857-9b06-1de7768da71c" + "c4b00529-290d-4939-a5a3-185017a4b9ad" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_3" @@ -1528,22 +1525,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14921" ], "x-ms-correlation-request-id": [ - "53d7721a-0034-4499-85b8-933544d45581" + "eaefcf50-a008-415c-8612-d2d418e01204" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:53d7721a-0034-4499-85b8-933544d45581" + "CENTRALUS:20151230T060945Z:eaefcf50-a008-415c-8612-d2d418e01204" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:44 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1579,10 +1573,10 @@ "no-cache" ], "x-ms-request-id": [ - "c69efd4e-5929-4100-a09e-7fb4714e50c5" + "57100ef2-da17-4b50-80a7-41abbcec3cc4" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -1591,22 +1585,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14948" ], "x-ms-correlation-request-id": [ - "ad9414f2-abe7-4669-942d-7f76003de737" + "d232f778-8afe-44ae-ab2d-176d6ec24235" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163213Z:ad9414f2-abe7-4669-942d-7f76003de737" + "CENTRALUS:20151230T060931Z:d232f778-8afe-44ae-ab2d-176d6ec24235" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:13 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1642,10 +1633,10 @@ "no-cache" ], "x-ms-request-id": [ - "f6034fb6-78bc-4acd-a2a8-b41324b58153" + "8ade499b-0f22-4e19-8079-e46e1aad1ed1" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_1" ], "X-Content-Type-Options": [ "nosniff" @@ -1654,22 +1645,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14935" ], "x-ms-correlation-request-id": [ - "a9f50197-eee3-4910-9a60-2ac6a5267392" + "21d23cbc-e59f-4c87-ad43-754d818449df" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:a9f50197-eee3-4910-9a60-2ac6a5267392" + "CENTRALUS:20151230T060938Z:21d23cbc-e59f-4c87-ad43-754d818449df" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:17 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1705,10 +1693,10 @@ "no-cache" ], "x-ms-request-id": [ - "a203b697-91f0-4f63-8217-910a3202f9e2" + "72175844-4b2e-4e8e-a681-39b26fb3d73b" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -1717,22 +1705,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14920" ], "x-ms-correlation-request-id": [ - "45def835-e74a-4f02-a4e8-85f6e66b5c4d" + "e20a7923-4265-4781-affc-08712b9034bf" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:45def835-e74a-4f02-a4e8-85f6e66b5c4d" + "CENTRALUS:20151230T060945Z:e20a7923-4265-4781-affc-08712b9034bf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1768,7 +1753,7 @@ "no-cache" ], "x-ms-request-id": [ - "f79ba325-c231-4c25-9db4-edcde0db3c77" + "182d5e87-ef0d-4c41-a391-39f3df336134" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_2" @@ -1780,22 +1765,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14947" ], "x-ms-correlation-request-id": [ - "4e2386af-f262-4c98-b849-9db524e61eba" + "99e32be3-08d4-4cc0-875f-999eb7285bb2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163213Z:4e2386af-f262-4c98-b849-9db524e61eba" + "CENTRALUS:20151230T060931Z:99e32be3-08d4-4cc0-875f-999eb7285bb2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:13 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:31 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1831,10 +1813,10 @@ "no-cache" ], "x-ms-request-id": [ - "2dd9720f-7ff5-4610-ae42-f8e02c6d2297" + "2e817325-97bf-490d-ab88-1d14fcb644e6" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_2" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -1843,22 +1825,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14934" ], "x-ms-correlation-request-id": [ - "6b50491d-2f99-4db8-8d71-b6916bf16d82" + "7d3b06f5-65cf-44a8-8f42-3819209effe0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:6b50491d-2f99-4db8-8d71-b6916bf16d82" + "CENTRALUS:20151230T060938Z:7d3b06f5-65cf-44a8-8f42-3819209effe0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:17 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:38 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1894,7 +1873,7 @@ "no-cache" ], "x-ms-request-id": [ - "26ed1903-f978-421f-8192-54a82ddf41c2" + "f27b6e3b-a302-4cf5-9b7e-a58f8fdc637a" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_2" @@ -1906,22 +1885,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14919" ], "x-ms-correlation-request-id": [ - "b74150ae-4e31-436e-9a97-9752d1e77487" + "ba2d79c0-1eda-488a-86c3-855265408a9a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163223Z:b74150ae-4e31-436e-9a97-9752d1e77487" + "CENTRALUS:20151230T060945Z:ba2d79c0-1eda-488a-86c3-855265408a9a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:23 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:09:45 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -1939,13 +1915,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7c7a0b1-13a3-45d1-8de0-ebc0400bc5ea" + "0bc67432-c81c-4ab3-9867-a395269c6956" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1966,22 +1945,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef6412ee-eb4a-4b39-9ab8-ebc07e545243" + "d7153c73-96ed-4afc-a686-430694bd7c97" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14946" ], "x-ms-correlation-request-id": [ - "46cf4de9-a9df-44c5-afac-a4bae9a9aa58" + "09324f01-8988-41c2-b4ef-90f056df3143" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163214Z:46cf4de9-a9df-44c5-afac-a4bae9a9aa58" + "CENTRALUS:20151230T060933Z:09324f01-8988-41c2-b4ef-90f056df3143" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:14 GMT" + "Wed, 30 Dec 2015 06:09:32 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2002,13 +1981,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52b87237-4c9d-4292-9e0f-d66deb0d36ba" + "432f115f-1897-4fbb-85d3-580fcfb160d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2029,22 +2011,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c22b948-4b3c-47ef-bd9f-4873e9f30a33" + "d150cf6b-27b2-4d43-a3c6-85d035d87de7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14933" ], "x-ms-correlation-request-id": [ - "b381554b-c341-4be2-8ac7-79bf2976f254" + "98cc29fb-cbf9-4831-8baf-f7b6fe26501f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163218Z:b381554b-c341-4be2-8ac7-79bf2976f254" + "CENTRALUS:20151230T060939Z:98cc29fb-cbf9-4831-8baf-f7b6fe26501f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:17 GMT" + "Wed, 30 Dec 2015 06:09:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2065,13 +2047,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e20e4f55-bc96-4521-a1f2-ad2acd02d8ce" + "214a006c-7fda-4df3-86d2-0b6b8537f91e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2092,22 +2077,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf5c77be-15db-415b-aecd-a6b469cf9cc0" + "bf33aa02-225e-4693-b348-ddae69af22c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14918" ], "x-ms-correlation-request-id": [ - "7f61c691-65b7-4875-be5e-5d320fc58d34" + "0f1d2fdd-c81f-4c12-8917-2ddffca3e3e0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163224Z:7f61c691-65b7-4875-be5e-5d320fc58d34" + "CENTRALUS:20151230T060945Z:0f1d2fdd-c81f-4c12-8917-2ddffca3e3e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:24 GMT" + "Wed, 30 Dec 2015 06:09:45 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2128,13 +2113,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "727acc4f-2911-4799-880d-1145582dc97f" + "e18fc471-7fd4-43cc-9ac7-6ec9037308ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2155,22 +2143,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfe74d6d-8ce8-4f1a-b92c-fe2d54be6fc5" + "ee130539-5e32-4d6a-96ef-fb601eccc51a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14945" ], "x-ms-correlation-request-id": [ - "5ae358e6-7066-4118-a3d7-8ca0745de5fb" + "199a75ac-9d3b-4268-81b5-24982904aa9f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163215Z:5ae358e6-7066-4118-a3d7-8ca0745de5fb" + "CENTRALUS:20151230T060933Z:199a75ac-9d3b-4268-81b5-24982904aa9f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:14 GMT" + "Wed, 30 Dec 2015 06:09:33 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2191,13 +2179,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0078b39f-b026-431f-a843-5872d34e0351" + "e80072f7-3f76-4eab-8192-a505ad351521" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2218,22 +2209,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f7593797-d13d-4248-9fd9-03160fee45e2" + "a1a16311-505b-42bf-a762-c57a6665d2b6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14932" ], "x-ms-correlation-request-id": [ - "087b6d81-d5ae-4b19-8dfb-4634844f60c6" + "b0146f74-9bf6-4543-9ab7-05d2f1330840" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163218Z:087b6d81-d5ae-4b19-8dfb-4634844f60c6" + "CENTRALUS:20151230T060939Z:b0146f74-9bf6-4543-9ab7-05d2f1330840" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:17 GMT" + "Wed, 30 Dec 2015 06:09:39 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2254,13 +2245,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f61c7df-f6f8-47d8-b161-883102ff55d5" + "de4de971-95a1-4173-b1a5-0975fb21ba91" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2281,22 +2275,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b689791-d472-4cfa-a4d6-565b8209e4dd" + "a38d6661-d30a-4dec-86e1-8a915b938945" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14917" ], "x-ms-correlation-request-id": [ - "dc96b110-2012-4524-8ccd-c2569216ee79" + "5c0cb67e-7fae-4743-b86f-dedbac0b3995" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163224Z:dc96b110-2012-4524-8ccd-c2569216ee79" + "CENTRALUS:20151230T060946Z:5c0cb67e-7fae-4743-b86f-dedbac0b3995" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:24 GMT" + "Wed, 30 Dec 2015 06:09:45 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2317,13 +2311,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bedbe370-f162-448f-a43a-02d3cee0d40a" + "88cdcf0b-d60d-4cf4-938f-11ca09a30426" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2344,22 +2341,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18225c71-4b2f-4ca9-8d08-2e7891ee89db" + "801ca489-7f27-4fdd-b252-e8fcab51d066" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14944" ], "x-ms-correlation-request-id": [ - "6672282a-1798-47c2-ab63-3848524b0db2" + "1c27e1b2-4d5a-45c9-8d7e-0cabc616a0a1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163216Z:6672282a-1798-47c2-ab63-3848524b0db2" + "CENTRALUS:20151230T060935Z:1c27e1b2-4d5a-45c9-8d7e-0cabc616a0a1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:16 GMT" + "Wed, 30 Dec 2015 06:09:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2380,13 +2377,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9687f024-c9f2-43a0-aaad-cf47f4a22603" + "3bb3f19c-1d61-4010-acae-f00e350cc57e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2407,22 +2407,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8939d6a3-98f5-4184-8317-e7faa3ee0ab0" + "34df11b9-e9c3-4a78-b817-19cbf8582818" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14931" ], "x-ms-correlation-request-id": [ - "9076c729-beb8-4f4a-8fa9-f2bdc3f957a2" + "9e63b4c8-c820-47ba-9aad-ecb919bd0b33" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163219Z:9076c729-beb8-4f4a-8fa9-f2bdc3f957a2" + "CENTRALUS:20151230T060940Z:9e63b4c8-c820-47ba-9aad-ecb919bd0b33" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:18 GMT" + "Wed, 30 Dec 2015 06:09:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2443,13 +2443,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a7bd00f-23ca-47f7-9453-5dddb2644071" + "107fd959-c02f-4b78-9755-ad07459cf0fa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2470,22 +2473,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4dab97bd-4aa6-4b5e-9251-de73d3b0454c" + "30178633-4a74-43c6-bf32-62b70b45c4f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14916" ], "x-ms-correlation-request-id": [ - "09cd3fad-631b-4615-90b8-ae7bd07b175f" + "420ba432-eeeb-4a05-8b83-f591f3a2c98f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163225Z:09cd3fad-631b-4615-90b8-ae7bd07b175f" + "CENTRALUS:20151230T060946Z:420ba432-eeeb-4a05-8b83-f591f3a2c98f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:25 GMT" + "Wed, 30 Dec 2015 06:09:46 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2506,13 +2509,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22d1df5d-871c-4649-9797-cd0984a52f21" + "f823cbf7-35ce-43dc-9953-83a8525d1856" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2533,22 +2539,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca592e73-eecb-4560-9e05-fb478f8eea59" + "23975d50-09ec-4f14-905d-a7b724f2d6dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14943" ], "x-ms-correlation-request-id": [ - "db2878b4-2ea8-4830-8c45-7cce526eab8e" + "913faa0b-6f53-449f-aac1-9206068a879f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:db2878b4-2ea8-4830-8c45-7cce526eab8e" + "CENTRALUS:20151230T060937Z:913faa0b-6f53-449f-aac1-9206068a879f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:16 GMT" + "Wed, 30 Dec 2015 06:09:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2569,13 +2575,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b100119-248f-4bf5-9435-e5fc9e2a8ddf" + "61416079-0a09-4e02-8baa-4a742ebfe85f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2596,22 +2605,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b2d92468-8810-419f-a35d-de960c911f38" + "8e60b2f7-47b1-4e22-9cd1-774a584d63ed" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14930" ], "x-ms-correlation-request-id": [ - "94ec3fbe-f575-4202-85f4-16356529097a" + "6b651708-790e-4c99-96d2-4d13c995f2a2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163219Z:94ec3fbe-f575-4202-85f4-16356529097a" + "CENTRALUS:20151230T060940Z:6b651708-790e-4c99-96d2-4d13c995f2a2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:18 GMT" + "Wed, 30 Dec 2015 06:09:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2632,13 +2641,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa477edd-5fe0-4a24-bbf0-23f6325e3a2a" + "8ea1f181-463d-4a04-a955-67f56db07eef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2659,22 +2671,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8553e651-a5d6-4172-accd-1b66da8d4b86" + "b55b5161-6090-4135-ad49-db1bfd6cadaf" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14942" ], "x-ms-correlation-request-id": [ - "5ef03091-9638-4c04-a2bc-cfaa7978a2dd" + "25165297-ed61-4dfe-93c9-dd04134e1414" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:5ef03091-9638-4c04-a2bc-cfaa7978a2dd" + "CENTRALUS:20151230T060938Z:25165297-ed61-4dfe-93c9-dd04134e1414" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:16 GMT" + "Wed, 30 Dec 2015 06:09:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2695,13 +2707,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c77fde81-f179-472d-abee-c3e9039d62b0" + "b798b07d-56ed-45ef-8801-b8f6fa06895e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2722,22 +2737,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09645930-053b-4ae5-9310-dbd9f6684cfe" + "38b873ca-819a-43e1-949e-a98b24222826" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14929" ], "x-ms-correlation-request-id": [ - "47683cc9-09f8-4a82-82b7-02e1320db3c2" + "117e0f73-f7c4-4b25-85e8-ff994388db89" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163219Z:47683cc9-09f8-4a82-82b7-02e1320db3c2" + "CENTRALUS:20151230T060941Z:117e0f73-f7c4-4b25-85e8-ff994388db89" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:18 GMT" + "Wed, 30 Dec 2015 06:09:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2758,13 +2773,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4c51744-b429-4e70-a534-95c0174353f3" + "5d933c83-c999-4263-b1aa-56cadd026855" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2785,22 +2803,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2318b6bf-8f7c-4a0f-a7df-7d0d0549a66e" + "3e67deb4-7c93-47ae-b683-0f039fd6562d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14941" ], "x-ms-correlation-request-id": [ - "8645ac71-aaef-43d4-b707-96389b14f8fc" + "ff15dda9-dfe6-4a2d-88da-763d07364d76" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163217Z:8645ac71-aaef-43d4-b707-96389b14f8fc" + "CENTRALUS:20151230T060938Z:ff15dda9-dfe6-4a2d-88da-763d07364d76" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:16 GMT" + "Wed, 30 Dec 2015 06:09:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2821,13 +2839,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "476d8ae1-f6d8-49aa-b8a6-2b9a5cd816ec" + "5b789544-7683-413d-95f3-81f62474e09e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2848,22 +2869,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0b9778b1-097a-49ba-91ec-32162f72caad" + "94267cb2-cc00-4163-b23a-e3464ab2a00a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14928" ], "x-ms-correlation-request-id": [ - "95d05aaa-50c6-4c55-a0b4-070eb87f352f" + "3ed902c2-36c9-49c4-8148-587caa880f0c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163219Z:95d05aaa-50c6-4c55-a0b4-070eb87f352f" + "CENTRALUS:20151230T060941Z:3ed902c2-36c9-49c4-8148-587caa880f0c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:18 GMT" + "Wed, 30 Dec 2015 06:09:40 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2884,13 +2905,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e52ea0e3-a262-418c-8278-0afbd06f68c1" + "09c41bb5-10b0-41fb-a9a4-ff3f607fac55" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2911,22 +2935,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "d16427f5-4223-4d12-ac22-01bd48c3edf1" + "409b1f22-966c-4a6e-b1af-c16e127b9b05" ], "x-ms-correlation-request-id": [ - "d16427f5-4223-4d12-ac22-01bd48c3edf1" + "409b1f22-966c-4a6e-b1af-c16e127b9b05" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163225Z:d16427f5-4223-4d12-ac22-01bd48c3edf1" + "CENTRALUS:20151230T060947Z:409b1f22-966c-4a6e-b1af-c16e127b9b05" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:32:25 GMT" + "Wed, 30 Dec 2015 06:09:46 GMT" ], "Server": [ "Microsoft-IIS/8.0" 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 index b0d081428657..2fb10cb5004a 100644 --- 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 @@ -7,19 +7,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e587a967-b2c2-401a-8db0-172802bcf193" + "e57e8891-5aab-434d-914d-9b14b42e6eb9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -34,25 +37,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93441eb3-73f2-4c5c-91cb-a4e16132777b" + "2aae7f20-6b98-4701-9d28-b097fb11f3b4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14951" ], "x-ms-correlation-request-id": [ - "a665934b-df25-4d34-9eb6-9daa79431537" + "e7cf6295-e3af-4fdc-a11c-7fb01155313d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163749Z:a665934b-df25-4d34-9eb6-9daa79431537" + "CENTRALUS:20151230T061159Z:e7cf6295-e3af-4fdc-a11c-7fb01155313d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:49 GMT" + "Wed, 30 Dec 2015 06:11:58 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -73,19 +76,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc89b7b9-71d4-466e-9a90-fa0aea480bda" + "9046e480-e97d-4887-8d7d-e80642ff51a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -100,25 +106,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f05e6f0c-6f4c-41f0-8458-0721264642ef" + "87b2a67f-3263-45ea-84a9-77ba6beba5eb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14947" ], "x-ms-correlation-request-id": [ - "faa8595d-6baa-45ac-a505-35e51de3e6d0" + "237e8e7b-d6c2-4a18-b7e9-b9e1f9232f18" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163759Z:faa8595d-6baa-45ac-a505-35e51de3e6d0" + "CENTRALUS:20151230T061207Z:237e8e7b-d6c2-4a18-b7e9-b9e1f9232f18" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:58 GMT" + "Wed, 30 Dec 2015 06:12:06 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -139,19 +145,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4867370-ec89-463d-82bf-3bb1f2d5f445" + "7cfb1ff2-6666-43b0-a634-e6476134b4ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -166,25 +175,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8f6d935-f0df-4c55-9db8-721038ed04f9" + "e57968c2-4076-4d02-98f7-81368a42fdbd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14937" ], "x-ms-correlation-request-id": [ - "74634473-7862-4a64-856f-c434719fc846" + "0d0c3afc-2e4f-4585-b806-52f96a5e877a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163812Z:74634473-7862-4a64-856f-c434719fc846" + "CENTRALUS:20151230T061220Z:0d0c3afc-2e4f-4585-b806-52f96a5e877a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:12 GMT" + "Wed, 30 Dec 2015 06:12:19 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -205,19 +214,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2177e60d-1d76-40f6-bacf-49894fec38b8" + "5882458c-7062-4719-b8f5-53174522da2e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -232,25 +244,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "907c07a8-3eba-4a9c-b8fe-8ed88211878b" + "29574398-9417-489b-9ed9-ca9caa511700" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14933" ], "x-ms-correlation-request-id": [ - "85aba963-a3ab-40cd-a89f-a3f906abd29b" + "d063a203-b2be-49d5-8025-ef1ad1822456" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163814Z:85aba963-a3ab-40cd-a89f-a3f906abd29b" + "CENTRALUS:20151230T061223Z:d063a203-b2be-49d5-8025-ef1ad1822456" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:14 GMT" + "Wed, 30 Dec 2015 06:12:22 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -271,13 +283,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a7f899a-de25-4a22-b2f0-b21b4d892ee4" + "c79dde2e-bbbe-48a8-bb53-0e927ea79be6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -298,22 +313,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5939af5-75cf-4cec-be97-1df86be38e8d" + "172e34a6-5995-4301-a19f-5596f408bf12" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14950" ], "x-ms-correlation-request-id": [ - "3fe74928-faf6-4b8b-bab5-363ed6a6cba1" + "7085b292-35f3-49bd-a442-900273265c53" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163749Z:3fe74928-faf6-4b8b-bab5-363ed6a6cba1" + "CENTRALUS:20151230T061159Z:7085b292-35f3-49bd-a442-900273265c53" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:49 GMT" + "Wed, 30 Dec 2015 06:11:58 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -334,13 +349,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "115c3587-c95c-4eb0-b942-ea6bb07108b3" + "9a5ba61f-3d26-4acb-b1c6-7783ce9be205" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -361,22 +379,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c816bd3-d714-4cda-811c-8e0f0fe26661" + "4c4c7734-adaf-4992-b2c8-b248e57b9f60" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14946" ], "x-ms-correlation-request-id": [ - "83d8b12b-9c06-4816-8d5f-188a05759818" + "20286edf-f6cc-42da-8a12-c529a61c2787" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163759Z:83d8b12b-9c06-4816-8d5f-188a05759818" + "CENTRALUS:20151230T061207Z:20286edf-f6cc-42da-8a12-c529a61c2787" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:58 GMT" + "Wed, 30 Dec 2015 06:12:06 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -397,13 +415,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "363c32e9-5c13-463e-89db-d08a237e8b14" + "2907968f-53fd-437d-95d9-3dab81691115" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -424,22 +445,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b7d1ae2-63ec-4abd-af4e-ecf75f0bf002" + "efb1c77d-9768-4f9f-a95a-d5ee94074d19" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14936" ], "x-ms-correlation-request-id": [ - "378d17c3-6b65-4e90-8f5b-47afe387f2cc" + "dea82b0d-2343-41a9-9aed-90a79b40b028" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163812Z:378d17c3-6b65-4e90-8f5b-47afe387f2cc" + "CENTRALUS:20151230T061220Z:dea82b0d-2343-41a9-9aed-90a79b40b028" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:12 GMT" + "Wed, 30 Dec 2015 06:12:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -460,13 +481,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c82ff39d-ec7a-4240-8452-0ba8067f9355" + "c742e947-f4ae-4202-94fe-aa123c0e7248" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -487,22 +511,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7812b725-ea87-4ea8-a8e4-64cf788c10b0" + "90961a74-1ce9-48e9-8104-c9e31fbe1b58" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14932" ], "x-ms-correlation-request-id": [ - "ceb6858f-f9c9-4fcc-bac1-f9c914cc35d0" + "15a2e6e1-6d39-40c6-be27-3fb77b4ce613" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163815Z:ceb6858f-f9c9-4fcc-bac1-f9c914cc35d0" + "CENTRALUS:20151230T061223Z:15a2e6e1-6d39-40c6-be27-3fb77b4ce613" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:14 GMT" + "Wed, 30 Dec 2015 06:12:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -523,13 +547,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1d01721-722a-49d1-9be4-3688fde5bd0d" + "48074a8c-6c09-4d55-b8f0-9afe3fab267a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -550,22 +577,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66393d51-64fd-4ad4-aca1-e7494690b69d" + "1c796588-3c30-4303-b402-e16b2cca7b0f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11987" ], "x-ms-correlation-request-id": [ - "044d43e4-b71c-4690-89e8-d5436e10aa89" + "ae4fb978-4a80-4d2f-9fb7-9f464ba6754b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163749Z:044d43e4-b71c-4690-89e8-d5436e10aa89" + "CENTRALUS:20151230T061159Z:ae4fb978-4a80-4d2f-9fb7-9f464ba6754b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:49 GMT" + "Wed, 30 Dec 2015 06:11:58 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -586,13 +613,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f096b49a-fbd7-4ffe-bc54-11a3e858c1b0" + "74ebc710-7695-4e74-9c14-ce0355c00fff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -613,22 +643,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48411bcc-5c99-4701-90cf-38a9e986a59b" + "10b8c409-83ff-4987-b957-2d4b989fd989" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11985" ], "x-ms-correlation-request-id": [ - "bd263727-3f30-41ab-8f33-f2e49a3a6a66" + "2037e34e-4556-41ee-9939-8d7d9c94bf2f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163759Z:bd263727-3f30-41ab-8f33-f2e49a3a6a66" + "CENTRALUS:20151230T061207Z:2037e34e-4556-41ee-9939-8d7d9c94bf2f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:58 GMT" + "Wed, 30 Dec 2015 06:12:06 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -649,13 +679,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "205229c8-ec22-48d9-bd2d-66ac0157ef82" + "fdcfe489-9f17-402e-870c-6c6d088c099f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -676,22 +709,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a86acad-eee3-4c47-b78e-b8b67077814c" + "113d6cf7-f960-4d37-a450-a6df52ba5abc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11983" ], "x-ms-correlation-request-id": [ - "bf384c3a-bd2c-49a4-8d7e-6f8836d32d17" + "c1fc4f6b-1bfa-43c3-aa5c-7f94827e344f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163812Z:bf384c3a-bd2c-49a4-8d7e-6f8836d32d17" + "CENTRALUS:20151230T061220Z:c1fc4f6b-1bfa-43c3-aa5c-7f94827e344f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:12 GMT" + "Wed, 30 Dec 2015 06:12:20 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -712,13 +745,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88462f4e-4b4c-420f-b4b7-2cb4ada55a5e" + "e4584757-9304-4467-8d18-69899e36e8f3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -739,22 +775,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c711d12e-cd44-496a-a321-dd2d9f49aa9f" + "c3be8654-e32e-4652-863c-bef65045e47f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11981" ], "x-ms-correlation-request-id": [ - "2954cc83-d6b3-49b2-ad9b-425f4109b81c" + "18b96ef9-256c-49b3-bee7-9d8a2921b21f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163815Z:2954cc83-d6b3-49b2-ad9b-425f4109b81c" + "CENTRALUS:20151230T061223Z:18b96ef9-256c-49b3-bee7-9d8a2921b21f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:15 GMT" + "Wed, 30 Dec 2015 06:12:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -775,13 +811,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d37eb3b-c618-4c98-9f29-d52b87729729" + "928f9ff4-2609-4d70-b934-80a29eaf4fd8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -802,22 +841,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8efd79a0-7246-4f13-9746-76904253b407" + "3b953aed-4c15-4904-b669-a414debf71c3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11986" ], "x-ms-correlation-request-id": [ - "88129f23-547f-46d6-b805-665fb7127e7d" + "9113bf6e-8648-4e48-99a4-8b4ad07fcc95" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163750Z:88129f23-547f-46d6-b805-665fb7127e7d" + "CENTRALUS:20151230T061159Z:9113bf6e-8648-4e48-99a4-8b4ad07fcc95" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:49 GMT" + "Wed, 30 Dec 2015 06:11:59 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -838,13 +877,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "628f7cb9-6756-404c-b890-0447d29fef5b" + "a52d8552-23b6-4307-b4e9-d8a4b12d38a9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -865,22 +907,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a422f1c7-3fc0-469c-9af5-d1567acdf4ee" + "3ad59ed5-fd23-454b-8e23-9ddabf01ad95" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11984" ], "x-ms-correlation-request-id": [ - "5b78d6d8-e1ae-4cb5-9461-8893aca26c05" + "52c05763-d9ab-49a8-9855-34ad2f40c6f1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163759Z:5b78d6d8-e1ae-4cb5-9461-8893aca26c05" + "CENTRALUS:20151230T061208Z:52c05763-d9ab-49a8-9855-34ad2f40c6f1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:59 GMT" + "Wed, 30 Dec 2015 06:12:08 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -901,13 +943,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa17842f-6f03-468e-aaef-fac6c58019e5" + "183c8569-8120-400e-81d1-99c6c18b938a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -928,22 +973,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "24c3e513-8785-4d27-b245-44e5da18b7ea" + "aba4a0b1-e0de-4bc3-a879-831ed59d772d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11982" ], "x-ms-correlation-request-id": [ - "54bd3e1f-3403-4235-969f-fd5d89273148" + "5118da76-386c-4aea-8bde-8367d4fc5154" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163813Z:54bd3e1f-3403-4235-969f-fd5d89273148" + "CENTRALUS:20151230T061221Z:5118da76-386c-4aea-8bde-8367d4fc5154" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:12 GMT" + "Wed, 30 Dec 2015 06:12:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -964,13 +1009,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb8a93d8-c17d-4bed-849d-264dbdf7a63c" + "d42ddf3f-8467-41b5-8f67-6112580e9a55" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -991,22 +1039,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0f49c11-c7ab-4e87-9d79-710dc11f8e81" + "fccc0c66-5a26-4732-94ae-f923a262f928" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11980" ], "x-ms-correlation-request-id": [ - "04cbb9a3-401f-42c5-9dbf-723c2d144933" + "e7c63896-b2bb-4494-bb28-20959c0abe59" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163815Z:04cbb9a3-401f-42c5-9dbf-723c2d144933" + "CENTRALUS:20151230T061223Z:e7c63896-b2bb-4494-bb28-20959c0abe59" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:15 GMT" + "Wed, 30 Dec 2015 06:12:23 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1033,19 +1081,22 @@ "285" ], "x-ms-client-request-id": [ - "5fe36ebf-3bd3-463b-b69d-8200e7313a60" + "cc6f4eb8-002b-4ada-8ee8-8163259322d6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -1060,25 +1111,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b3df94d-e115-4de1-8d0d-97988c9d6532" + "51b7a8d3-f909-40b1-a499-468309d474d1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "0bf6ec75-0d3f-4a48-8ae6-77e6a0215ae5" + "92be0871-93d6-4f45-b80b-b1896760529b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163752Z:0bf6ec75-0d3f-4a48-8ae6-77e6a0215ae5" + "CENTRALUS:20151230T061202Z:92be0871-93d6-4f45-b80b-b1896760529b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:52 GMT" + "Wed, 30 Dec 2015 06:12:01 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1105,19 +1156,22 @@ "216" ], "x-ms-client-request-id": [ - "d288011c-fb8e-4f96-bf8f-d92d7105dc0b" + "589e5368-b9b4-4e82-92c9-61d70c98a8d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -1132,25 +1186,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aed3a9a1-c61d-4758-9daf-4ac3400576b1" + "f23a999f-9c0d-46a9-94f2-ee594f00c24c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "d82a1f1b-40d2-4acf-ac43-c5ee1a904c8f" + "d94401e6-5beb-46bf-a503-bd58665f3a25" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163801Z:d82a1f1b-40d2-4acf-ac43-c5ee1a904c8f" + "CENTRALUS:20151230T061210Z:d94401e6-5beb-46bf-a503-bd58665f3a25" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:00 GMT" + "Wed, 30 Dec 2015 06:12:10 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1171,19 +1225,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adaac236-e8ea-450b-8b60-d0865c5a0dce" + "c2b22a7a-1d6b-4272-b9b0-f2a512f7805b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1198,25 +1255,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c254ed0-6b55-4a13-8975-122305e3a1c9" + "293cbb24-e0ee-4978-a388-31af9bbc1535" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14949" ], "x-ms-correlation-request-id": [ - "49dbff09-f5e1-4418-a1bb-7004a8864cbf" + "a7e57834-4f08-4b11-9deb-4c8887dc3a87" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163754Z:49dbff09-f5e1-4418-a1bb-7004a8864cbf" + "CENTRALUS:20151230T061203Z:a7e57834-4f08-4b11-9deb-4c8887dc3a87" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:53 GMT" + "Wed, 30 Dec 2015 06:12:02 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1237,19 +1294,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9af3f989-2fe1-4c9f-b10f-b13f5757fe69" + "75db3bd3-b5af-4af7-b3e9-9f9765492af7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -1264,25 +1324,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7095786e-5ef4-4890-b3a4-67debdc3a07c" + "bce33ef0-773d-46c7-ab39-8447c8567cb3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14942" ], "x-ms-correlation-request-id": [ - "7dc58843-413d-436d-981d-f911c20add44" + "fba3b8d4-0453-4e7a-a817-73fcc574abb7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163806Z:7dc58843-413d-436d-981d-f911c20add44" + "CENTRALUS:20151230T061215Z:fba3b8d4-0453-4e7a-a817-73fcc574abb7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:05 GMT" + "Wed, 30 Dec 2015 06:12:15 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1303,19 +1363,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52da7f6c-9f43-4403-8a5e-0ac3579838b8" + "3e6e1785-6026-47b7-b1ba-e97288936ef4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1330,25 +1393,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93684b91-b6e9-45a9-a1d6-112321c79387" + "8bc4d89e-0d68-4c87-990b-9d4dd8851c6a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14935" ], "x-ms-correlation-request-id": [ - "0fd29fce-a8c2-4b3c-8374-d7605ce34d10" + "97edc2bd-7b49-45e4-b3a0-2b062eb982e3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163813Z:0fd29fce-a8c2-4b3c-8374-d7605ce34d10" + "CENTRALUS:20151230T061222Z:97edc2bd-7b49-45e4-b3a0-2b062eb982e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:13 GMT" + "Wed, 30 Dec 2015 06:12:21 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1369,19 +1432,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c52b695-683e-40d6-9bd2-7e18087072c7" + "ca15c892-7e8b-439c-9340-d19ab279faed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1396,25 +1462,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ae83565-058e-46f7-aeed-b23664750af2" + "95bc8e4c-1b6f-4728-bd9e-25edf3c1101c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14931" ], "x-ms-correlation-request-id": [ - "cc4ed6d1-1e99-4b3f-b07a-07cb8797ecbf" + "8e6ae85e-723f-42f8-8a9e-0db19ebbac31" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163815Z:cc4ed6d1-1e99-4b3f-b07a-07cb8797ecbf" + "CENTRALUS:20151230T061224Z:8e6ae85e-723f-42f8-8a9e-0db19ebbac31" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:15 GMT" + "Wed, 30 Dec 2015 06:12:23 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1435,13 +1501,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34a376a9-6544-4625-b0cd-ded400b965ba" + "060a244c-ab79-4c08-9678-f9c497fde87f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1462,22 +1531,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3dae3e2-72de-4a34-b297-2a9aa595b5ac" + "75199de1-3f54-403d-8e62-645825759e0e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14948" ], "x-ms-correlation-request-id": [ - "db407b58-8f26-4b04-8885-9428d43021eb" + "2d4f7fee-1c56-47e7-b550-a67942aa8d2d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163754Z:db407b58-8f26-4b04-8885-9428d43021eb" + "CENTRALUS:20151230T061203Z:2d4f7fee-1c56-47e7-b550-a67942aa8d2d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:53 GMT" + "Wed, 30 Dec 2015 06:12:02 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1498,13 +1567,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8e3ca12-ac89-4745-a83e-58a2e35ae601" + "556e0782-c8b8-434c-92db-7c7d7ce3cb92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1525,22 +1597,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d853dba5-f2e6-46c4-ab3e-06ef0d1e5084" + "b393de19-1835-4022-9d71-3a49ccdf1d5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14941" ], "x-ms-correlation-request-id": [ - "d606af80-4bd7-4787-86ee-81657fb49022" + "6fd9fe4e-69aa-4ecb-aadf-365b4b99f8e7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163807Z:d606af80-4bd7-4787-86ee-81657fb49022" + "CENTRALUS:20151230T061215Z:6fd9fe4e-69aa-4ecb-aadf-365b4b99f8e7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:07 GMT" + "Wed, 30 Dec 2015 06:12:15 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1561,13 +1633,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d05970a-b73f-4c3e-9c94-86481dda110c" + "3dcb86eb-1a7c-40ab-80f5-42cb4a1526ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1588,22 +1663,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46d3fb46-e531-47c9-aed0-e9f567356288" + "5b5de4be-9f0b-4980-8a34-2f819bb839ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14934" ], "x-ms-correlation-request-id": [ - "ddc3d23a-2060-4a1d-b0cb-e28df1b8627a" + "4a7ee1f6-277d-4f48-99b9-d474e7523af7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163813Z:ddc3d23a-2060-4a1d-b0cb-e28df1b8627a" + "CENTRALUS:20151230T061222Z:4a7ee1f6-277d-4f48-99b9-d474e7523af7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:13 GMT" + "Wed, 30 Dec 2015 06:12:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1624,13 +1699,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dab8dbf6-cc24-41f0-a81a-a5d623e04494" + "3a61d7b0-5708-4625-a3ca-27da54495d86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1651,22 +1729,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6bbb4b0d-a0eb-4025-958f-690515b6a2d9" + "e9f1eff8-752f-47d1-b578-bba7b07e907e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14930" ], "x-ms-correlation-request-id": [ - "76b51343-2bf1-4b94-850d-5540cbf7cd10" + "2620863d-7378-4746-b169-e7f4892e8032" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163816Z:76b51343-2bf1-4b94-850d-5540cbf7cd10" + "CENTRALUS:20151230T061224Z:2620863d-7378-4746-b169-e7f4892e8032" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:15 GMT" + "Wed, 30 Dec 2015 06:12:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1687,13 +1765,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbc83f90-3fbf-4988-8a46-1e796393f0a5" + "00316085-b091-4bf5-bf41-2cff574d3238" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1714,22 +1795,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09674b44-ba91-42a9-aa64-93cdfc56ffe2" + "ad929f6b-ed14-47a3-a93e-68d196219127" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], "x-ms-correlation-request-id": [ - "6c26c4d3-f1e4-4a37-b9ab-2b33a42c41e2" + "db8bbb1b-74c3-417b-9f5c-8f10d759207d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163754Z:6c26c4d3-f1e4-4a37-b9ab-2b33a42c41e2" + "CENTRALUS:20151230T061203Z:db8bbb1b-74c3-417b-9f5c-8f10d759207d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:54 GMT" + "Wed, 30 Dec 2015 06:12:03 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1750,13 +1831,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cd65aad-4eaf-4aeb-9020-8e2d6297d4e2" + "f61a2bab-98a2-44b0-945b-8905ba47e46c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1777,22 +1861,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4a03bc6-8e90-41c7-9a56-52564485af6c" + "04da19e8-165b-4382-b2bb-8d279262e072" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], "x-ms-correlation-request-id": [ - "faccf6d2-b231-44da-ac1d-4090e7f267f7" + "a33f8832-8303-48ab-b31e-264ec2456ce4" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163807Z:faccf6d2-b231-44da-ac1d-4090e7f267f7" + "CENTRALUS:20151230T061215Z:a33f8832-8303-48ab-b31e-264ec2456ce4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:07 GMT" + "Wed, 30 Dec 2015 06:12:15 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1813,13 +1897,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8df1217-8603-45c0-974d-8a3867bd20e3" + "123a30a0-89c8-494b-b5aa-21faaf3b7ea2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1840,22 +1927,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "505fb34d-3a48-409f-a3a2-34b7d9562910" + "965726d3-637e-4a9c-bad4-af4c69280ae4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11995" ], "x-ms-correlation-request-id": [ - "428854f3-11e9-47bd-bb1d-0bf7cdeb64d2" + "7ea7077d-aba5-4dce-a63f-6c1066f6673f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163814Z:428854f3-11e9-47bd-bb1d-0bf7cdeb64d2" + "CENTRALUS:20151230T061222Z:7ea7077d-aba5-4dce-a63f-6c1066f6673f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:13 GMT" + "Wed, 30 Dec 2015 06:12:21 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1876,13 +1963,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8149e8-59e0-493c-a8ea-a3726269ceff" + "abe2be09-72c2-4cb0-81c2-e047d8717563" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1903,22 +1993,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e799375c-fb78-418b-81a6-7fa1909b938e" + "12bf14b1-f7bc-457d-b695-7c7de91a4a67" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11993" ], "x-ms-correlation-request-id": [ - "1cd8333e-6fc6-480a-b359-d1f772df3770" + "f18d72c9-fc23-4a29-b445-fcf779565d7c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163816Z:1cd8333e-6fc6-480a-b359-d1f772df3770" + "CENTRALUS:20151230T061224Z:f18d72c9-fc23-4a29-b445-fcf779565d7c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:15 GMT" + "Wed, 30 Dec 2015 06:12:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1939,13 +2029,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3997491e-e14b-4e05-abb4-dedccf47e642" + "e1c9192c-6fac-4aa9-a3b0-779bcda6abfb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1966,22 +2059,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "27500540-294c-462f-8670-647566e5a243" + "78f21832-8186-4fc3-ae34-dcd82371cb57" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], "x-ms-correlation-request-id": [ - "9b9c3cc2-4d5b-45e0-bf26-6af39604681d" + "9f1b964f-656e-47b0-b9ca-93fa1773e91d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163754Z:9b9c3cc2-4d5b-45e0-bf26-6af39604681d" + "CENTRALUS:20151230T061204Z:9f1b964f-656e-47b0-b9ca-93fa1773e91d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:54 GMT" + "Wed, 30 Dec 2015 06:12:03 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2002,13 +2095,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2731b3ed-f020-4fe3-8b9b-2091c3fcec90" + "4b228bc1-b833-4719-a984-4013231784cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2029,22 +2125,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bed6cb02-34f5-40a4-a085-9527f23b5aad" + "f879d048-0ab5-4964-abde-be25e2d253d0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], "x-ms-correlation-request-id": [ - "ec570e18-3454-41b8-9528-07c4cccdb30b" + "d5b2b1ba-e809-4537-b0eb-1332f17959e7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163807Z:ec570e18-3454-41b8-9528-07c4cccdb30b" + "CENTRALUS:20151230T061215Z:d5b2b1ba-e809-4537-b0eb-1332f17959e7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:07 GMT" + "Wed, 30 Dec 2015 06:12:15 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2065,13 +2161,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a118552-efc1-4850-8e3d-b194bce8cb5b" + "2b3786db-0f21-404c-b6ed-67cb21b690ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2092,22 +2191,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7862662e-2f12-440b-bb2b-af2ccb767333" + "f22d070b-5309-46c9-8426-dc4ccea95add" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11994" ], "x-ms-correlation-request-id": [ - "3f22bcd2-a1bf-482e-8ccf-9d1719641859" + "25f6c726-9d5d-42d9-af21-b590676df4d1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163814Z:3f22bcd2-a1bf-482e-8ccf-9d1719641859" + "CENTRALUS:20151230T061222Z:25f6c726-9d5d-42d9-af21-b590676df4d1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:14 GMT" + "Wed, 30 Dec 2015 06:12:22 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2128,13 +2227,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70aad24f-7c92-4d77-bb09-d7bad73ea3e9" + "be876fbb-b91c-46cb-ad25-75d549a41aac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2155,22 +2257,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "edc95191-794b-4fbc-b11e-3bd1d8b203c5" + "0b2c2abd-773c-46c5-bc66-85ed532224d0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11992" ], "x-ms-correlation-request-id": [ - "891dfa2a-fbc0-49d7-9e02-9bb88de4c3ea" + "7281ba6f-1db6-401e-b632-18e57cef8aea" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163816Z:891dfa2a-fbc0-49d7-9e02-9bb88de4c3ea" + "CENTRALUS:20151230T061225Z:7281ba6f-1db6-401e-b632-18e57cef8aea" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:16 GMT" + "Wed, 30 Dec 2015 06:12:24 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2197,19 +2299,22 @@ "290" ], "x-ms-client-request-id": [ - "097986d2-c6ba-4d4e-bfac-160879de2dfb" + "3760d249-91a7-4609-8580-0c47d4b9d7c1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -2224,25 +2329,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8e30683b-cd12-4418-b7b5-48f3bd068bba" + "b8614198-de40-4937-918e-916cee1fdd83" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "1e5ad6c8-dc02-46ff-9c8a-2d5e45ede735" + "e8854ea6-9247-49f2-aa63-3fb67bd65bb4" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163758Z:1e5ad6c8-dc02-46ff-9c8a-2d5e45ede735" + "CENTRALUS:20151230T061206Z:e8854ea6-9247-49f2-aa63-3fb67bd65bb4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:37:58 GMT" + "Wed, 30 Dec 2015 06:12:06 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -2269,19 +2374,22 @@ "221" ], "x-ms-client-request-id": [ - "3678ad88-48ac-4201-b8a8-25d908fd559a" + "e8af324a-3d0f-498b-8ef3-7c549c0f5502" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -2296,25 +2404,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4da90473-8852-4645-a3bc-985030769cb1" + "a8784944-bda6-4735-b928-0e3dd58555b8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-correlation-request-id": [ - "084d9f4c-9f4d-40c0-8aca-a4ceb62282a0" + "ab1c0b7f-6175-4352-9853-9944011cb22a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:084d9f4c-9f4d-40c0-8aca-a4ceb62282a0" + "CENTRALUS:20151230T061217Z:ab1c0b7f-6175-4352-9853-9944011cb22a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:10 GMT" + "Wed, 30 Dec 2015 06:12:17 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -2353,16 +2461,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14935" ], "x-ms-request-id": [ - "f4a0032d-76e1-4d0f-a806-d7f4bd4554d6" + "b6b21b09-fd69-481e-baaa-e560df1bd0ab" ], "x-ms-correlation-request-id": [ - "f4a0032d-76e1-4d0f-a806-d7f4bd4554d6" + "b6b21b09-fd69-481e-baaa-e560df1bd0ab" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163802Z:f4a0032d-76e1-4d0f-a806-d7f4bd4554d6" + "CENTRALUS:20151230T061210Z:b6b21b09-fd69-481e-baaa-e560df1bd0ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2371,7 +2479,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:01 GMT" + "Wed, 30 Dec 2015 06:12:10 GMT" ] }, "StatusCode": 200 @@ -2401,16 +2509,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14934" ], "x-ms-request-id": [ - "45ea1c2a-ee53-49ef-9970-7619d76e2e8e" + "9165b94f-c6db-45a2-863d-901f3807e6b5" ], "x-ms-correlation-request-id": [ - "45ea1c2a-ee53-49ef-9970-7619d76e2e8e" + "9165b94f-c6db-45a2-863d-901f3807e6b5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:45ea1c2a-ee53-49ef-9970-7619d76e2e8e" + "CENTRALUS:20151230T061217Z:9165b94f-c6db-45a2-863d-901f3807e6b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2419,7 +2527,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:09 GMT" + "Wed, 30 Dec 2015 06:12:17 GMT" ] }, "StatusCode": 200 @@ -2449,7 +2557,7 @@ "no-cache" ], "x-ms-request-id": [ - "2bef72eb-0044-4959-8e4e-eaf8db48b405" + "a40d89c4-6356-43b1-ae45-41afe1737712" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_3" @@ -2461,22 +2569,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14949" ], "x-ms-correlation-request-id": [ - "e69e0d07-4d8f-4dde-8a89-3962bc2b2bef" + "94dee799-e53e-4af1-ad3a-ebd67219d984" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163802Z:e69e0d07-4d8f-4dde-8a89-3962bc2b2bef" + "CENTRALUS:20151230T061211Z:94dee799-e53e-4af1-ad3a-ebd67219d984" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:01 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2512,10 +2617,10 @@ "no-cache" ], "x-ms-request-id": [ - "c62cae5b-47cd-4fd9-a1e1-9ec9a8c10314" + "40a7d3eb-a76b-44c6-90ff-7637d7b249a9" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -2524,22 +2629,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14943" ], "x-ms-correlation-request-id": [ - "161077bb-5353-4970-bf3e-96a26f01db6f" + "303ec410-0c87-4371-849f-760c8215e276" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:161077bb-5353-4970-bf3e-96a26f01db6f" + "CENTRALUS:20151230T061217Z:303ec410-0c87-4371-849f-760c8215e276" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2575,10 +2677,10 @@ "no-cache" ], "x-ms-request-id": [ - "c788b677-8609-47f9-9e90-8b4e37977df2" + "2e0c18bc-cfe9-4a7e-9beb-1011e62bbb02" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -2587,22 +2689,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14948" ], "x-ms-correlation-request-id": [ - "74eeb2ef-df61-465c-bb98-9c81f6e53477" + "0c4ea3e8-585e-47e1-971a-c6a287f8685d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163802Z:74eeb2ef-df61-465c-bb98-9c81f6e53477" + "CENTRALUS:20151230T061211Z:0c4ea3e8-585e-47e1-971a-c6a287f8685d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:02 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2638,10 +2737,10 @@ "no-cache" ], "x-ms-request-id": [ - "f8732654-97ce-47bc-aab8-a2206754db5d" + "c565197b-8854-4c0f-83fe-aae430137e87" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -2650,22 +2749,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14942" ], "x-ms-correlation-request-id": [ - "20d29507-9621-4445-80b7-1e4558565037" + "1304e15a-3d98-41b7-ab9a-6c38ad2b4236" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:20d29507-9621-4445-80b7-1e4558565037" + "CENTRALUS:20151230T061218Z:1304e15a-3d98-41b7-ab9a-6c38ad2b4236" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2701,10 +2797,10 @@ "no-cache" ], "x-ms-request-id": [ - "bbf3cb28-71e2-45ea-acd4-0eed996c5034" + "acb5790f-8d21-41e9-8f72-60db499a46af" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -2713,22 +2809,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14947" ], "x-ms-correlation-request-id": [ - "4d33ddc2-2626-40dc-a5b9-33248a17bd0f" + "2506dd38-fc17-4596-b17b-a09ab630250b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163802Z:4d33ddc2-2626-40dc-a5b9-33248a17bd0f" + "CENTRALUS:20151230T061211Z:2506dd38-fc17-4596-b17b-a09ab630250b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:02 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2764,7 +2857,7 @@ "no-cache" ], "x-ms-request-id": [ - "26ce7173-6ef5-481e-aeb7-ee30521f3b7b" + "f0846aac-07c4-4994-b15a-46dc87e208bf" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_0" @@ -2776,22 +2869,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14941" ], "x-ms-correlation-request-id": [ - "f43a8cd0-3efe-49b9-86ee-66d2a1e56e1d" + "c8c000e8-c6e1-4a67-a2e1-932b925f3f72" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:f43a8cd0-3efe-49b9-86ee-66d2a1e56e1d" + "CENTRALUS:20151230T061218Z:c8c000e8-c6e1-4a67-a2e1-932b925f3f72" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2827,10 +2917,10 @@ "no-cache" ], "x-ms-request-id": [ - "4fd49ce9-970d-4907-99f1-02af6dd49c21" + "bca28ecc-f800-43af-9a9a-01712f8acad8" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -2839,22 +2929,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14946" ], "x-ms-correlation-request-id": [ - "b1383462-d810-4064-b85c-7f43fd2caf3c" + "f837dfa6-1088-4ecb-8a4c-1189c0982e63" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163802Z:b1383462-d810-4064-b85c-7f43fd2caf3c" + "CENTRALUS:20151230T061212Z:f837dfa6-1088-4ecb-8a4c-1189c0982e63" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:02 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2890,7 +2977,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2f90273-5950-4e47-804a-82d59543c6aa" + "f466825a-e682-4360-8ce9-d5b10378fb90" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_3" @@ -2902,22 +2989,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14940" ], "x-ms-correlation-request-id": [ - "39079bcb-6d25-4df1-8238-7154622b4a2d" + "466d8139-dfc8-44bd-a7a5-6587c3718ce3" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:39079bcb-6d25-4df1-8238-7154622b4a2d" + "CENTRALUS:20151230T061218Z:466d8139-dfc8-44bd-a7a5-6587c3718ce3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -2953,10 +3037,10 @@ "no-cache" ], "x-ms-request-id": [ - "fb6b6551-f4aa-4f3f-91f7-194ee8f07a0f" + "4a0f8fff-7012-489c-acf4-548f9f3f4e31" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_3" ], "X-Content-Type-Options": [ "nosniff" @@ -2965,22 +3049,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14945" ], "x-ms-correlation-request-id": [ - "e496bd4c-cfc2-444f-b602-8b3476956061" + "26f47b17-a9f9-438d-a826-5a02265bc332" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163802Z:e496bd4c-cfc2-444f-b602-8b3476956061" + "CENTRALUS:20151230T061212Z:26f47b17-a9f9-438d-a826-5a02265bc332" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:02 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3016,10 +3097,10 @@ "no-cache" ], "x-ms-request-id": [ - "47d5295b-4a5e-4c4a-92da-97dc97e855f7" + "b4f60b78-7cd1-4eef-a55d-3b88ebc5e855" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -3028,22 +3109,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14939" ], "x-ms-correlation-request-id": [ - "e1dc5175-32b4-430a-aeaf-9bb47e419e21" + "5d17f94b-5ff3-4c18-ab9b-5da6328630e5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:e1dc5175-32b4-430a-aeaf-9bb47e419e21" + "CENTRALUS:20151230T061218Z:5d17f94b-5ff3-4c18-ab9b-5da6328630e5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3079,10 +3157,10 @@ "no-cache" ], "x-ms-request-id": [ - "9222fe1a-215e-4ccf-8956-1443620acb73" + "681df009-7f47-4230-a042-34b0978409a3" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_0" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -3091,22 +3169,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14944" ], "x-ms-correlation-request-id": [ - "77fb7f25-c3e6-43a4-8969-f230256c3fb4" + "f5471dda-4767-46ae-abda-bf83a9e068f6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163803Z:77fb7f25-c3e6-43a4-8969-f230256c3fb4" + "CENTRALUS:20151230T061212Z:f5471dda-4767-46ae-abda-bf83a9e068f6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:02 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:11 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3142,7 +3217,7 @@ "no-cache" ], "x-ms-request-id": [ - "1b5591dc-9880-47b3-a21f-50cf62242c2d" + "9717ffeb-1211-410b-bb13-e8f4c9a07804" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_0" @@ -3154,22 +3229,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14938" ], "x-ms-correlation-request-id": [ - "d8ef24d4-abae-46f1-a8c0-08ee46497dc2" + "827b0ae9-9712-48d7-a659-e25af71aa142" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163810Z:d8ef24d4-abae-46f1-a8c0-08ee46497dc2" + "CENTRALUS:20151230T061218Z:827b0ae9-9712-48d7-a659-e25af71aa142" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:12:17 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3187,13 +3259,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fa96b6e-d5a7-409f-ad73-eeac8d0e6f8f" + "791205e7-86d0-4978-97b0-a96801b37915" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3214,22 +3289,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71848575-4100-4254-8346-9329cabf4e2c" + "0f8f332c-29e0-417e-95b4-935ae4ea56f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14945" ], "x-ms-correlation-request-id": [ - "dd91b172-e3a2-480e-9ef1-dc42e975f377" + "122a961a-fd72-4d4e-ac82-346cdcb5eafd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163804Z:dd91b172-e3a2-480e-9ef1-dc42e975f377" + "CENTRALUS:20151230T061213Z:122a961a-fd72-4d4e-ac82-346cdcb5eafd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:03 GMT" + "Wed, 30 Dec 2015 06:12:13 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3250,13 +3325,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51638398-dae6-4522-b032-0b943592f246" + "0644082d-4d14-4ed4-81c3-c37f5b2e13bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3277,22 +3355,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9c78fec-6e3e-4db8-bab8-5bdac079897d" + "fc3d88cc-762a-43bf-8359-d56944d3cd0c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14940" ], "x-ms-correlation-request-id": [ - "53c81cd3-d423-45b8-8ded-88f0e785c422" + "5e4c9b94-7b37-441a-acfb-3b21af0db437" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163811Z:53c81cd3-d423-45b8-8ded-88f0e785c422" + "CENTRALUS:20151230T061218Z:5e4c9b94-7b37-441a-acfb-3b21af0db437" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:11 GMT" + "Wed, 30 Dec 2015 06:12:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3313,13 +3391,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccc31ad9-4231-4f95-9426-058fd811c0a4" + "32265afe-07f0-44ca-9e80-442525984c4c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3340,22 +3421,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79fe3b20-d626-41c3-9eb0-ab7f718baa30" + "0942f4fc-f22f-4c45-841f-fa74c48e4a10" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14944" ], "x-ms-correlation-request-id": [ - "473a971c-f59f-45bd-be2f-7f6e5f5403df" + "a4bfcb6e-d118-4dc5-9b7a-d14134ebaf97" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163804Z:473a971c-f59f-45bd-be2f-7f6e5f5403df" + "CENTRALUS:20151230T061213Z:a4bfcb6e-d118-4dc5-9b7a-d14134ebaf97" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:03 GMT" + "Wed, 30 Dec 2015 06:12:13 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3376,13 +3457,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25926e66-df43-448b-86e5-3ca1712517d8" + "9021d5e6-5efe-4269-ba12-72a6c77071d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3403,22 +3487,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef8cb3f2-0dd5-43e9-8520-cc8cbdd707d0" + "cbe410a1-177d-4a81-a873-f311b883f039" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14939" ], "x-ms-correlation-request-id": [ - "2714fa3b-646a-49f8-b47f-a86830c33383" + "2a1a025e-506b-4b49-bd99-718f35fe4187" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163811Z:2714fa3b-646a-49f8-b47f-a86830c33383" + "CENTRALUS:20151230T061218Z:2a1a025e-506b-4b49-bd99-718f35fe4187" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:11 GMT" + "Wed, 30 Dec 2015 06:12:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3439,13 +3523,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59a2026c-6dc8-4ea8-876d-c066295fd17d" + "c3f33f34-34c0-4ee1-8e32-c623a705446f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3466,22 +3553,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72f01c15-1578-4a42-8db1-199c0145fbc9" + "2886eb4b-79f0-42b9-949b-87243f3369db" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14943" ], "x-ms-correlation-request-id": [ - "d1479f1b-b8eb-4413-8123-881b137cd500" + "3620b943-2957-43fc-89c3-27ed36c3e693" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163806Z:d1479f1b-b8eb-4413-8123-881b137cd500" + "CENTRALUS:20151230T061214Z:3620b943-2957-43fc-89c3-27ed36c3e693" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:05 GMT" + "Wed, 30 Dec 2015 06:12:14 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3502,13 +3589,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fce7b63c-e347-4888-bd95-d758e0b39906" + "8abe6f3c-1665-4bc3-b5fd-e6a8a3eb4ea5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3529,22 +3619,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cab09272-c0f4-442d-bf26-77fc4de5e563" + "1a5ac2ce-16a3-4e6c-b044-a2cc73742f60" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14938" ], "x-ms-correlation-request-id": [ - "dafc2502-0331-4fee-bc66-fd193b6c7ad2" + "1f2e369c-5cdf-4ad0-97cd-da2dbf192cb7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163811Z:dafc2502-0331-4fee-bc66-fd193b6c7ad2" + "CENTRALUS:20151230T061219Z:1f2e369c-5cdf-4ad0-97cd-da2dbf192cb7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:11 GMT" + "Wed, 30 Dec 2015 06:12:18 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3565,13 +3655,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94f68745-f36c-48bc-b076-236a12764585" + "ac93b6bc-8d6e-439a-9f8b-435bee47741a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3592,22 +3685,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "fd57f073-8b83-46b5-aa05-144e88f229b0" + "39f70e6f-5928-4a61-9b31-4409d62def22" ], "x-ms-correlation-request-id": [ - "fd57f073-8b83-46b5-aa05-144e88f229b0" + "39f70e6f-5928-4a61-9b31-4409d62def22" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163806Z:fd57f073-8b83-46b5-aa05-144e88f229b0" + "CENTRALUS:20151230T061214Z:39f70e6f-5928-4a61-9b31-4409d62def22" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:05 GMT" + "Wed, 30 Dec 2015 06:12:14 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3628,13 +3721,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb55a7ab-c91b-4d34-95d1-c69c67864231" + "5f1180ad-e850-43fc-88a3-87622cd855bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3655,22 +3751,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-request-id": [ - "afe87452-68f2-4492-9aff-bd5d984896a3" + "fb9d2721-f277-4391-a9c8-f8ac516ff8f2" ], "x-ms-correlation-request-id": [ - "afe87452-68f2-4492-9aff-bd5d984896a3" + "fb9d2721-f277-4391-a9c8-f8ac516ff8f2" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T163812Z:afe87452-68f2-4492-9aff-bd5d984896a3" + "CENTRALUS:20151230T061219Z:fb9d2721-f277-4391-a9c8-f8ac516ff8f2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:38:11 GMT" + "Wed, 30 Dec 2015 06:12:19 GMT" ], "Server": [ "Microsoft-IIS/8.0" 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 index 8cd6d5529d5c..b516ea192fc0 100644 --- 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 @@ -7,19 +7,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8120f98f-02bc-4f83-bb5e-d6254d0c7985" + "edbac092-7702-4596-891c-a674a2708595" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -34,25 +37,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce038eb7-fe92-4265-adc9-ada3652bf83f" + "42bca782-7b58-4b34-b6d0-0f63fbb75620" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14808" ], "x-ms-correlation-request-id": [ - "5e40bf8e-bb0a-4352-b446-5b23d1f37097" + "61a7bc43-a874-4ac8-870b-7c7e7051f9ed" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164141Z:5e40bf8e-bb0a-4352-b446-5b23d1f37097" + "CENTRALUS:20151230T061035Z:61a7bc43-a874-4ac8-870b-7c7e7051f9ed" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:41 GMT" + "Wed, 30 Dec 2015 06:10:34 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -73,19 +76,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa9f4f5f-1a5e-434e-b42a-03b14c4b14b8" + "beefcff2-bdb0-4a68-8b0e-b7be01a63969" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -100,25 +106,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4cb12121-5795-419f-9223-d0df91f35d83" + "ad54a1b9-3401-4f35-9637-a078ca9c5d98" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14804" ], "x-ms-correlation-request-id": [ - "a20c01aa-57c7-4d96-8827-86e5a5e993af" + "7726e468-40a8-4a22-89ea-5fdb807bc006" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164144Z:a20c01aa-57c7-4d96-8827-86e5a5e993af" + "CENTRALUS:20151230T061039Z:7726e468-40a8-4a22-89ea-5fdb807bc006" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:44 GMT" + "Wed, 30 Dec 2015 06:10:38 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -139,19 +145,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9a9ddd4-ced8-437a-ae15-9112e521c230" + "ee99db41-1250-4d7d-a6eb-fd76acd810f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -166,25 +175,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3133bd1d-60df-4aa4-b9dc-424795fcb47f" + "49a8ff28-241e-4a74-be4a-f2c573004f55" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14800" ], "x-ms-correlation-request-id": [ - "cd17b028-c283-4d0b-9e73-017bd2009adf" + "ad0fc38c-746a-4854-a502-b7bd843f0e08" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164153Z:cd17b028-c283-4d0b-9e73-017bd2009adf" + "CENTRALUS:20151230T061046Z:ad0fc38c-746a-4854-a502-b7bd843f0e08" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:52 GMT" + "Wed, 30 Dec 2015 06:10:46 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -205,19 +214,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1caceddd-d09c-4269-8228-18b5b06e8664" + "cd0537e1-48ce-4923-b196-5daedd6fe6bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -232,25 +244,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b402237a-72d5-4192-aa78-f0bf01e2b5ce" + "f0ffda61-2905-4ef3-b658-7902578677fc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14796" ], "x-ms-correlation-request-id": [ - "1ca67026-a09d-403a-bb3a-02bb79f8fe9d" + "cc22af31-1392-491d-bb06-65bc64d66968" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164155Z:1ca67026-a09d-403a-bb3a-02bb79f8fe9d" + "CENTRALUS:20151230T061050Z:cc22af31-1392-491d-bb06-65bc64d66968" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:55 GMT" + "Wed, 30 Dec 2015 06:10:49 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -271,19 +283,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e06d50e1-c072-449e-95dc-93a0818aeccc" + "db0f27ab-1b06-40be-9014-6f63328dbb6f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -298,25 +313,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f7fbdc7-dd1e-407d-a5c9-8c03b66dab76" + "233f22e7-fe1b-443b-bd38-ded193e8af68" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14791" ], "x-ms-correlation-request-id": [ - "1602ac34-b8f2-4396-8397-e26b38fbb154" + "239d793f-5684-4632-b782-caaa156dcf93" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164206Z:1602ac34-b8f2-4396-8397-e26b38fbb154" + "CENTRALUS:20151230T061101Z:239d793f-5684-4632-b782-caaa156dcf93" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:05 GMT" + "Wed, 30 Dec 2015 06:11:00 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -337,19 +352,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "533a5f35-46dc-4987-8b74-c7bc7860488b" + "4c94f515-198e-42cc-a5f4-f632335be9cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -364,25 +382,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2eed969a-29d6-43f3-aca1-fcb99faa1318" + "1b0ead3e-695e-445a-8b2e-7a2d853b0271" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14782" ], "x-ms-correlation-request-id": [ - "40c54bb0-e899-40ea-b0c2-440c0e170ae8" + "4d8492e2-192f-4895-8d3d-3448d974dac5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164214Z:40c54bb0-e899-40ea-b0c2-440c0e170ae8" + "CENTRALUS:20151230T061109Z:4d8492e2-192f-4895-8d3d-3448d974dac5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:14 GMT" + "Wed, 30 Dec 2015 06:11:08 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -403,13 +421,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a8bb7c3-1db1-46a2-bd81-6b8bb9b3b260" + "da5108f9-6c98-4a25-b4bf-f6d6ee35fde6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -430,22 +451,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5df4addb-19e4-41da-b4ce-a2cb650572e1" + "b17472c2-6efc-427d-89e2-65c4a696844d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14807" ], "x-ms-correlation-request-id": [ - "f7d1a2b7-98f6-4dc5-b325-84eedafc3529" + "2dbc5f92-db8d-4745-b6bc-b18f1de11918" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164141Z:f7d1a2b7-98f6-4dc5-b325-84eedafc3529" + "CENTRALUS:20151230T061035Z:2dbc5f92-db8d-4745-b6bc-b18f1de11918" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:41 GMT" + "Wed, 30 Dec 2015 06:10:34 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -466,13 +487,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4cabed0-9334-44d4-8a93-e31f9541652e" + "7505e13e-2f81-4a03-8545-6e48e52a06ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -493,22 +517,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02a3d450-221e-4a81-b6d8-163c99003f56" + "b78240cc-6331-4934-84bc-9632bc632a77" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14803" ], "x-ms-correlation-request-id": [ - "bbdae6c0-de6c-425d-89a8-40e6787c6539" + "475e417d-d8b4-4a64-ba7e-fffc782aa9f0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164145Z:bbdae6c0-de6c-425d-89a8-40e6787c6539" + "CENTRALUS:20151230T061039Z:475e417d-d8b4-4a64-ba7e-fffc782aa9f0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:44 GMT" + "Wed, 30 Dec 2015 06:10:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -529,13 +553,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59fc00ac-a234-4a93-b6de-eff3a16c8774" + "2d23b209-0e24-46e3-876f-2621be2e4ab2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -556,22 +583,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52e57d36-771c-402f-a183-cfcd5977d11f" + "b2598b41-64c4-4b1c-8da8-7010f3f3f7e6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14799" ], "x-ms-correlation-request-id": [ - "0c711afe-c9a1-4715-955a-f38d273339c0" + "7b11d38c-f6b0-493b-9135-fff88e116a53" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164153Z:0c711afe-c9a1-4715-955a-f38d273339c0" + "CENTRALUS:20151230T061047Z:7b11d38c-f6b0-493b-9135-fff88e116a53" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:52 GMT" + "Wed, 30 Dec 2015 06:10:47 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -592,13 +619,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84be9546-d9c5-4136-ad4c-f3f0bd215dd5" + "c8eb4095-a047-4e66-a4a9-2f69df98c18b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -619,22 +649,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "454018b3-ab46-4f76-996c-63e71cd133d3" + "cf1d894a-868d-4322-a4a1-6241c0ec1f79" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14795" ], "x-ms-correlation-request-id": [ - "b740b63f-249b-464d-9410-115dc065fa8e" + "ba868977-ee6d-4a9c-88af-995dc3a2a575" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164155Z:b740b63f-249b-464d-9410-115dc065fa8e" + "CENTRALUS:20151230T061050Z:ba868977-ee6d-4a9c-88af-995dc3a2a575" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:55 GMT" + "Wed, 30 Dec 2015 06:10:50 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -655,13 +685,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a20ba97d-537c-4726-8013-b48c4887d630" + "1cc56875-6138-4d81-98c2-a262709e4cff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -682,22 +715,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e20f8ebf-027d-4960-b283-1d9462cb6af8" + "4e88b5de-9e44-4041-a801-3b11589ac789" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14790" ], "x-ms-correlation-request-id": [ - "971720da-b39b-42b4-b033-bb641871357e" + "dc45e8a0-3911-4947-a319-2f6e0a3ef7f6" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164206Z:971720da-b39b-42b4-b033-bb641871357e" + "CENTRALUS:20151230T061101Z:dc45e8a0-3911-4947-a319-2f6e0a3ef7f6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:05 GMT" + "Wed, 30 Dec 2015 06:11:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -718,13 +751,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a5d7ff4-d777-48ba-9525-d02b2a7cb234" + "b2e1d0eb-d7a9-45b3-bd0d-e281ffd573ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -745,22 +781,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5caf0c7b-8eb3-415c-ad8b-5d4afba866b4" + "20500656-7834-4de4-8a1a-ec746b10b2d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14781" ], "x-ms-correlation-request-id": [ - "3904821c-0455-4c45-af00-e292f53692ec" + "870a01cb-79a9-4724-925f-7d4342b615db" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164215Z:3904821c-0455-4c45-af00-e292f53692ec" + "CENTRALUS:20151230T061109Z:870a01cb-79a9-4724-925f-7d4342b615db" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:14 GMT" + "Wed, 30 Dec 2015 06:11:09 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -781,13 +817,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37ce1cf4-ef8e-4bdd-8fdb-53febe66414a" + "d030a4aa-5a12-41bc-96ca-418bb111b0ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -808,22 +847,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f102755-2523-402a-9ed1-7a702a6b70c9" + "ec3f0c42-f054-4244-83e1-439742c025f6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11990" ], "x-ms-correlation-request-id": [ - "408792bb-048d-4e4e-8ae3-981a7e503d04" + "14a75fb3-828f-4c9b-8917-f59fb0390fe5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164141Z:408792bb-048d-4e4e-8ae3-981a7e503d04" + "CENTRALUS:20151230T061035Z:14a75fb3-828f-4c9b-8917-f59fb0390fe5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:41 GMT" + "Wed, 30 Dec 2015 06:10:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -844,13 +883,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3590a12-eea4-4689-a5db-31be647ce9fd" + "d0ad59d6-d068-47ba-a6ea-ed701d00e418" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -871,22 +913,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e98f7d7e-57d0-48b0-a3ab-b9de464ada11" + "fab87650-bad3-4f77-9f67-0455ffbf1e85" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11988" ], "x-ms-correlation-request-id": [ - "69a29b7b-c3c4-49c7-bf51-472a50aff34d" + "f377c0b6-ed48-4dc6-b0e0-ab84bcbfa668" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164145Z:69a29b7b-c3c4-49c7-bf51-472a50aff34d" + "CENTRALUS:20151230T061039Z:f377c0b6-ed48-4dc6-b0e0-ab84bcbfa668" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:45 GMT" + "Wed, 30 Dec 2015 06:10:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -907,13 +949,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "766592b2-383f-4377-ad18-c9275172c5cb" + "af875a88-5062-4a15-bff1-711ff60e830b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -934,22 +979,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19186483-cfed-439f-bff0-0cb7cae5634f" + "1ad78e30-901e-4641-a48e-6cecf6b3d785" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11986" ], "x-ms-correlation-request-id": [ - "7521c206-2938-47ae-a8d4-fe9ddeb83340" + "48064a31-3a14-4a19-b25c-3febcbac7fa8" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164153Z:7521c206-2938-47ae-a8d4-fe9ddeb83340" + "CENTRALUS:20151230T061047Z:48064a31-3a14-4a19-b25c-3febcbac7fa8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:53 GMT" + "Wed, 30 Dec 2015 06:10:47 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -970,13 +1015,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7572d3fc-fd6a-4449-b021-c76b09d81143" + "b37c03ac-bea1-4776-bd4c-ff4c80b165ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -997,22 +1045,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c464461-8299-4fe9-aa9a-8742e556d1a3" + "62af4da6-d3f9-4d4e-947c-2c5285a04403" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11984" ], "x-ms-correlation-request-id": [ - "65674801-776e-453e-901c-b0b872342a86" + "0147273e-9a8f-46f0-8ab5-5e3418e83f43" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164156Z:65674801-776e-453e-901c-b0b872342a86" + "CENTRALUS:20151230T061050Z:0147273e-9a8f-46f0-8ab5-5e3418e83f43" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:55 GMT" + "Wed, 30 Dec 2015 06:10:50 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1033,13 +1081,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f067006a-b456-49e2-a5f8-0882059fb7db" + "ea58e16e-1976-4854-8ed5-5e393d28b0ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1060,22 +1111,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d6d4bcc-014a-4ec7-a6c5-68429771e40d" + "87268755-76fb-43fc-9c9c-9dee74e16f27" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11982" ], "x-ms-correlation-request-id": [ - "e5c399f1-e9b7-46b6-b87d-77680dd56ed8" + "fb2ff5b7-c990-4612-8807-0e30d19d9156" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164206Z:e5c399f1-e9b7-46b6-b87d-77680dd56ed8" + "CENTRALUS:20151230T061101Z:fb2ff5b7-c990-4612-8807-0e30d19d9156" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:05 GMT" + "Wed, 30 Dec 2015 06:11:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1096,13 +1147,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "151364a7-6d31-4a72-ad25-0e6999346266" + "837f9b2c-8ee2-4e2d-8454-e88bd713d1d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1123,22 +1177,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77330ce0-75c0-4b3a-9eac-7aa3206a0845" + "b21db308-832f-410a-b127-560376802150" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11980" ], "x-ms-correlation-request-id": [ - "5fd193c2-7f81-4867-a19d-c9bfc49e4b1a" + "2e18cb0e-db53-4354-a70d-bf09f556e25d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164215Z:5fd193c2-7f81-4867-a19d-c9bfc49e4b1a" + "CENTRALUS:20151230T061110Z:2e18cb0e-db53-4354-a70d-bf09f556e25d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:15 GMT" + "Wed, 30 Dec 2015 06:11:09 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1159,13 +1213,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b3817ed-f232-4211-9dbd-1f23be71b486" + "478c00f3-2fce-42bc-9fc3-38084ffdb5bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1186,22 +1243,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c1b713e2-e522-4036-9cbc-279a7d3be0e1" + "241caf19-18be-48f1-8467-7120737d079f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11989" ], "x-ms-correlation-request-id": [ - "e8c29e46-cbce-4c73-a619-29955fad993b" + "9f7ac720-0431-4227-8a28-27552821f53d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164142Z:e8c29e46-cbce-4c73-a619-29955fad993b" + "CENTRALUS:20151230T061035Z:9f7ac720-0431-4227-8a28-27552821f53d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:41 GMT" + "Wed, 30 Dec 2015 06:10:35 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1222,13 +1279,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df52edf5-7d48-4d0e-bb38-179456a28598" + "89dbc6b8-85bd-4137-bd41-232a0ce6d500" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1249,22 +1309,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1221792e-7b37-4feb-91e5-ace98b7d2532" + "2ad10db6-bce2-4202-9daa-68e102513814" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11987" ], "x-ms-correlation-request-id": [ - "15eaa486-3724-4a54-b5a3-f2c70bc115fa" + "b116602f-ffc6-4d19-8fa4-9f9f5505a693" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164145Z:15eaa486-3724-4a54-b5a3-f2c70bc115fa" + "CENTRALUS:20151230T061039Z:b116602f-ffc6-4d19-8fa4-9f9f5505a693" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:45 GMT" + "Wed, 30 Dec 2015 06:10:38 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1285,13 +1345,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "492ad015-3c82-44c2-81b7-583cd0d70917" + "f900b821-c672-4408-a710-a81d0d36b05f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1312,22 +1375,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3439e6d2-9e97-4621-8f89-3b5fdb3eac18" + "228cd9b6-888b-42fd-a9a2-b8ab20e5ecab" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11985" ], "x-ms-correlation-request-id": [ - "2ee11dbf-a594-4591-8d1d-e9857c71626c" + "f5bb551f-f7f3-4a02-b677-69abe2a54aa7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164154Z:2ee11dbf-a594-4591-8d1d-e9857c71626c" + "CENTRALUS:20151230T061048Z:f5bb551f-f7f3-4a02-b677-69abe2a54aa7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:53 GMT" + "Wed, 30 Dec 2015 06:10:48 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1348,13 +1411,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14a28504-61bf-4dc9-ad38-11c00578f3e6" + "cf45b359-c690-41e7-9242-28250e5eb9e4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1375,22 +1441,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c606d9b-7f36-429c-9301-1cbf5516df8f" + "6b6c42c6-8a40-457e-8f0e-a428e9060f94" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11983" ], "x-ms-correlation-request-id": [ - "b906474d-5cb0-4a68-ab5a-2f3c5d8ff173" + "adb76536-9710-429a-8e0b-6f51a2bbc794" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164156Z:b906474d-5cb0-4a68-ab5a-2f3c5d8ff173" + "CENTRALUS:20151230T061051Z:adb76536-9710-429a-8e0b-6f51a2bbc794" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:56 GMT" + "Wed, 30 Dec 2015 06:10:51 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1411,13 +1477,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "084a275d-662d-400c-95a6-7845082142e6" + "acf7feb3-cd61-4c28-808e-d5f118391826" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1438,22 +1507,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5feeb02-15ea-46c3-b9d8-22945965cd81" + "bebbf051-a78a-417a-87c3-192b3909d799" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11981" ], "x-ms-correlation-request-id": [ - "cb771b99-57aa-4feb-9349-cb8f1ccb0d05" + "ed0e5a3e-99b3-4ae6-aac8-7fd63ae1ec24" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164207Z:cb771b99-57aa-4feb-9349-cb8f1ccb0d05" + "CENTRALUS:20151230T061102Z:ed0e5a3e-99b3-4ae6-aac8-7fd63ae1ec24" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:07 GMT" + "Wed, 30 Dec 2015 06:11:01 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1474,13 +1543,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "431dc68a-f0e0-46f8-b8be-68e95263242b" + "c46b283e-6014-4a2a-b17c-db4d721f9058" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1501,22 +1573,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "700d7418-fe69-4ebf-a043-cd0505eb46bf" + "9af7b0b2-cb98-47e0-b5a3-37f6b4fe92a1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11979" ], "x-ms-correlation-request-id": [ - "b09fece1-15bf-49ac-accc-17ae4aaab956" + "495b235b-30ce-46e9-9220-a8ca67bb3217" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164215Z:b09fece1-15bf-49ac-accc-17ae4aaab956" + "CENTRALUS:20151230T061110Z:495b235b-30ce-46e9-9220-a8ca67bb3217" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:15 GMT" + "Wed, 30 Dec 2015 06:11:09 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1537,19 +1609,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "731c4834-8fcb-4ebf-826b-f7748741c772" + "8b77156e-6071-4151-a678-7afdb668a5d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1564,25 +1639,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9d4246d-e10e-4ad3-83cb-9c83db8426a0" + "5f64ab14-69b0-4998-837f-8c907818bb6b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14806" ], "x-ms-correlation-request-id": [ - "0e36b31d-a823-4951-97b1-296b9e92fe7a" + "62fd2ce5-6b03-4e64-a744-96a44e1e6813" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164143Z:0e36b31d-a823-4951-97b1-296b9e92fe7a" + "CENTRALUS:20151230T061037Z:62fd2ce5-6b03-4e64-a744-96a44e1e6813" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:43 GMT" + "Wed, 30 Dec 2015 06:10:37 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1603,19 +1678,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59c4212e-00a7-47c3-b6c2-715fba5475d9" + "9ec8dd87-8299-40f0-a7fa-46f3e977f702" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1630,25 +1708,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1ff37c2-57a9-4efa-b2c8-3a92d15e1c68" + "bc7c159d-4f9c-46fa-8141-97998ff93f2d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14802" ], "x-ms-correlation-request-id": [ - "c3bf563b-5f57-4c68-a920-1ca866638815" + "43ccceae-94e6-4b32-95bc-3916e8d4e203" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164149Z:c3bf563b-5f57-4c68-a920-1ca866638815" + "CENTRALUS:20151230T061042Z:43ccceae-94e6-4b32-95bc-3916e8d4e203" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:49 GMT" + "Wed, 30 Dec 2015 06:10:41 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1669,19 +1747,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa12aff5-a81c-4942-bf50-4a4a5c0aee78" + "1af10d1b-792c-49e4-bc1d-6420fae350a5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -1696,25 +1777,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "326ac688-6781-4923-a272-2ca78573e339" + "86191c61-2429-4b52-849f-e0e3f2140489" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14798" ], "x-ms-correlation-request-id": [ - "399c275e-cf85-4ef0-8016-59cb67c49638" + "3f480967-6a21-42d2-99c8-c75a217c19e7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164154Z:399c275e-cf85-4ef0-8016-59cb67c49638" + "CENTRALUS:20151230T061048Z:3f480967-6a21-42d2-99c8-c75a217c19e7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:54 GMT" + "Wed, 30 Dec 2015 06:10:48 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1735,19 +1816,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79f9c41e-6ae1-4800-89dd-ab501b317a8e" + "bbc64c32-07b3-4203-bacf-97760e1ff970" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -1762,25 +1846,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9f7ed13-38c2-40de-a41c-d7833de8ed0c" + "de6c00f0-adcc-4e69-86e1-ec6f77b7a1bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14789" ], "x-ms-correlation-request-id": [ - "56c5ba3d-a330-4c6e-add9-9f39ce6edac9" + "6383d565-2fd2-425a-b5ae-344423eb277f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164207Z:56c5ba3d-a330-4c6e-add9-9f39ce6edac9" + "CENTRALUS:20151230T061102Z:6383d565-2fd2-425a-b5ae-344423eb277f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:07 GMT" + "Wed, 30 Dec 2015 06:11:02 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1801,19 +1885,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4abe5b1-7b54-4dbb-b7c7-200fa0532010" + "fdea0743-57eb-4401-b31a-ad67e29162f2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1828,25 +1915,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6783e868-e782-4548-ae90-869300a55cfe" + "5a6f7ae2-ddfa-4639-8967-14d6fc113bc6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14784" ], "x-ms-correlation-request-id": [ - "9a1eca4c-8833-4fed-b207-b9f34bbd5b65" + "ef5cbb89-ee2b-4ff3-abdb-ee595e36c77d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164213Z:9a1eca4c-8833-4fed-b207-b9f34bbd5b65" + "CENTRALUS:20151230T061107Z:ef5cbb89-ee2b-4ff3-abdb-ee595e36c77d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:13 GMT" + "Wed, 30 Dec 2015 06:11:07 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1867,19 +1954,22 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8834cbd5-cbd5-45ea-997f-ebe90baedfa8" + "aa945771-ea83-4e07-88bd-e90277c4b263" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -1894,25 +1984,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cea10e4e-b327-43b4-b271-6abf66877028" + "b0640291-a2f7-4ed5-8e28-318fc550e77c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14780" ], "x-ms-correlation-request-id": [ - "a598a552-2b60-4835-86e0-824d5bf3c011" + "163710fc-133d-40ef-b360-ef64a4e35a5b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164215Z:a598a552-2b60-4835-86e0-824d5bf3c011" + "CENTRALUS:20151230T061110Z:163710fc-133d-40ef-b360-ef64a4e35a5b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:15 GMT" + "Wed, 30 Dec 2015 06:11:10 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -1933,13 +2023,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8f358b0-3199-451c-9445-e4be0a980f1f" + "c601476f-ebd0-49d9-bc08-ee26ac67a91b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -1960,22 +2053,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5390ee81-0f72-4103-9b1a-e27b2ddd4a9d" + "7f8ba3ce-e237-41ad-99f5-c53500d57acd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14805" ], "x-ms-correlation-request-id": [ - "127c6e4c-37c6-454f-bae8-9a9f0e1efe1f" + "8e1a8d9b-5c26-4380-b0ef-ebab66919000" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164143Z:127c6e4c-37c6-454f-bae8-9a9f0e1efe1f" + "CENTRALUS:20151230T061037Z:8e1a8d9b-5c26-4380-b0ef-ebab66919000" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:43 GMT" + "Wed, 30 Dec 2015 06:10:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -1996,13 +2089,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa1efeba-03b6-4cf6-93ba-e8ed146fd712" + "ad3b26c5-c438-413a-90fb-716fa6c30eee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2023,22 +2119,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2da7b00-4f6e-422b-8e7b-0ec43c890e28" + "5c061fc7-3b3b-4da1-abc6-b89aba618bbb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14801" ], "x-ms-correlation-request-id": [ - "e3a4816a-c0b2-4fd5-a31a-46690b80673b" + "8a9a162a-79ef-4327-ac8c-df93f384b08b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164149Z:e3a4816a-c0b2-4fd5-a31a-46690b80673b" + "CENTRALUS:20151230T061042Z:8a9a162a-79ef-4327-ac8c-df93f384b08b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:49 GMT" + "Wed, 30 Dec 2015 06:10:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2059,13 +2155,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d700014-fb60-4fb5-b65e-745c8bfb08b7" + "85af49cb-3a1f-4454-92d1-81d5f34eff1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2086,22 +2185,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "72c0694a-e345-49f5-8e34-b1524e37da56" + "6ce4329d-fafe-4d76-8d58-53a92fb6a2b0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14797" ], "x-ms-correlation-request-id": [ - "23d5f31a-2a71-402f-9685-37d78632dd04" + "d0ea34ca-2404-489f-a238-6d03d3c32820" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164155Z:23d5f31a-2a71-402f-9685-37d78632dd04" + "CENTRALUS:20151230T061049Z:d0ea34ca-2404-489f-a238-6d03d3c32820" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:54 GMT" + "Wed, 30 Dec 2015 06:10:48 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2122,13 +2221,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9da643c2-0eaf-4d8a-966c-86126d6ebf80" + "f974b397-48b1-49a3-81fa-798495628b49" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2149,22 +2251,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c17a4f0-e53f-49d3-bdba-9a34f249f359" + "f0e3a1dc-b714-4db2-97e0-2a7d410474a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14788" ], "x-ms-correlation-request-id": [ - "4fcd1833-f869-42c3-83cf-b4e867cc435d" + "f1884a57-8799-45de-8233-cdcb8f78f9e8" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164207Z:4fcd1833-f869-42c3-83cf-b4e867cc435d" + "CENTRALUS:20151230T061102Z:f1884a57-8799-45de-8233-cdcb8f78f9e8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:07 GMT" + "Wed, 30 Dec 2015 06:11:02 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2185,13 +2287,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65028590-44a7-4887-b620-4c64c0cc4e58" + "e723622d-1b56-409e-9f9f-147316273690" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2212,22 +2317,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aec227bf-3cf4-451b-baf8-8203f8f994b6" + "4e8be77e-c350-477b-b183-95119a849f45" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14783" ], "x-ms-correlation-request-id": [ - "b8ce5d48-c2fa-4fec-b264-c8c6ef6af941" + "fc695ae3-b088-433f-a428-0b9877e51e33" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164214Z:b8ce5d48-c2fa-4fec-b264-c8c6ef6af941" + "CENTRALUS:20151230T061108Z:fc695ae3-b088-433f-a428-0b9877e51e33" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:13 GMT" + "Wed, 30 Dec 2015 06:11:07 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2248,13 +2353,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dae142c4-9a6b-4ccb-9d83-a92fb44a075e" + "ad599edc-65fd-4826-a0e2-9fd2ca66c70e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2275,22 +2383,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4aa60787-2f9b-4531-9bb2-4c8684ebda9d" + "2c8205e2-a847-4457-bd4f-bca48a579e52" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14779" ], "x-ms-correlation-request-id": [ - "b7a1a892-617f-4678-9e7c-4fe48774288b" + "64a3c0b3-8b73-44ba-a828-c96789702d94" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164215Z:b7a1a892-617f-4678-9e7c-4fe48774288b" + "CENTRALUS:20151230T061110Z:64a3c0b3-8b73-44ba-a828-c96789702d94" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:15 GMT" + "Wed, 30 Dec 2015 06:11:10 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2311,13 +2419,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "667ca37d-5b1d-4dd8-a605-fcf040e83041" + "44c8ec31-7187-427b-9e9f-649c5906cab0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2338,22 +2449,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42c2c47a-5840-46ce-9ef4-ff46241b7710" + "7890c299-8883-426b-929a-f00a79f6c92a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], "x-ms-correlation-request-id": [ - "e3c4c481-0011-4c15-a5e3-9db4b0a190cf" + "bc4a0bd8-d851-4d8d-b0b2-e19e53995b3b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164144Z:e3c4c481-0011-4c15-a5e3-9db4b0a190cf" + "CENTRALUS:20151230T061038Z:bc4a0bd8-d851-4d8d-b0b2-e19e53995b3b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:43 GMT" + "Wed, 30 Dec 2015 06:10:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2374,13 +2485,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67285a20-2bde-41c4-b29c-4239f83ab586" + "21b0d336-30fe-4944-94b3-b0b2d6c6ae2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2401,22 +2515,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc6480d2-5b09-4094-8c74-ac1e63f08aad" + "d53fe151-980b-4543-ae62-babba4290f89" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11997" ], "x-ms-correlation-request-id": [ - "17963f49-83bd-44b0-bee1-54a92513b8d6" + "695cae1f-a88e-45f8-b391-2804ab341488" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164149Z:17963f49-83bd-44b0-bee1-54a92513b8d6" + "CENTRALUS:20151230T061043Z:695cae1f-a88e-45f8-b391-2804ab341488" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:49 GMT" + "Wed, 30 Dec 2015 06:10:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2437,13 +2551,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e427716-11c6-48db-bc51-9cff9cb54769" + "c5a70114-f48b-42e2-819f-d2e744847829" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2464,22 +2581,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "53c852fa-8409-4715-8ab7-25e5309a7a01" + "08e2e342-4bb6-4e5a-a59e-7ef4ddbfd656" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11995" ], "x-ms-correlation-request-id": [ - "009a0d3c-d66c-4ec6-9cf8-0c17e1362bf1" + "71def1ba-e961-49f1-8e91-8fb3c859ce88" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164155Z:009a0d3c-d66c-4ec6-9cf8-0c17e1362bf1" + "CENTRALUS:20151230T061049Z:71def1ba-e961-49f1-8e91-8fb3c859ce88" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:54 GMT" + "Wed, 30 Dec 2015 06:10:49 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2500,13 +2617,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1500d302-96d3-4712-a5d8-191082cc6b05" + "99ef542c-5c0c-4a96-abc7-19277a5b5e9d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2527,22 +2647,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9380856b-e4a9-46b7-978e-5470f1ea5919" + "0a4e6c47-0fe3-428e-bbcd-3af4e6fb9817" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11993" ], "x-ms-correlation-request-id": [ - "d28fff70-372c-4134-86e5-39b1d06d9c5e" + "99ce9b40-0c2c-4b4b-983a-4966dcad767a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164208Z:d28fff70-372c-4134-86e5-39b1d06d9c5e" + "CENTRALUS:20151230T061102Z:99ce9b40-0c2c-4b4b-983a-4966dcad767a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:08 GMT" + "Wed, 30 Dec 2015 06:11:02 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2563,13 +2683,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88342432-2327-458b-8c64-5fe4ebb937ff" + "c2a7a8d2-aa1e-4a60-b36b-b485408f5578" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2590,22 +2713,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c253d489-949d-4d6c-8117-3d2a62b4e1f0" + "c2e76620-98b6-4a49-b5f3-c7a9f0b29c29" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11991" ], "x-ms-correlation-request-id": [ - "cb6535b2-e271-4eb6-a47d-195cfa197ffb" + "7829559b-9d99-4760-98d4-66c34ee1ef7c" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164214Z:cb6535b2-e271-4eb6-a47d-195cfa197ffb" + "CENTRALUS:20151230T061108Z:7829559b-9d99-4760-98d4-66c34ee1ef7c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:14 GMT" + "Wed, 30 Dec 2015 06:11:08 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2626,13 +2749,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a01561f7-4217-47b4-b98d-60cf2bc6f7a5" + "205f788f-48a9-4f4c-9d2c-f63da40fc271" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2653,22 +2779,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "819e5514-f501-400c-8105-987b0567545f" + "b211a402-15d6-4cd8-a48b-0e03a3bd4546" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11989" ], "x-ms-correlation-request-id": [ - "3072c066-7235-4f5e-9edc-51bf28b61332" + "47e9329c-3b4e-4198-994d-84a9cbe54e76" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164216Z:3072c066-7235-4f5e-9edc-51bf28b61332" + "CENTRALUS:20151230T061111Z:47e9329c-3b4e-4198-994d-84a9cbe54e76" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:16 GMT" + "Wed, 30 Dec 2015 06:11:10 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2689,13 +2815,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bae4f9e9-bc9e-4542-b9fa-e964f6e24f1d" + "d357dda4-554d-4ba2-b9a2-1bfa67d6149d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2716,22 +2845,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "161a960c-9705-45f2-8683-311d095c4bfb" + "938dd417-6ce3-4fb3-aa1b-457d57a52730" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11998" ], "x-ms-correlation-request-id": [ - "d4fc34e5-85b6-4d50-9d04-9f0137c796cf" + "a90488dc-569d-4bce-9016-11c60e130c3b" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164144Z:d4fc34e5-85b6-4d50-9d04-9f0137c796cf" + "CENTRALUS:20151230T061038Z:a90488dc-569d-4bce-9016-11c60e130c3b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:44 GMT" + "Wed, 30 Dec 2015 06:10:37 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2752,13 +2881,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b976c0b-bcfb-45b2-88e1-e61faede2fd8" + "e987d97b-a9fe-40e5-9fb2-70f4028c03c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2779,22 +2911,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1da77bc6-c685-40f8-870b-9fddd681674e" + "978cf37d-9316-4487-b2f8-c79d665b3cb7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11996" ], "x-ms-correlation-request-id": [ - "8a4a978e-cc70-4961-8650-9b162a2a5d78" + "88b6911d-9503-4363-8cb8-84d3b8877f2d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164150Z:8a4a978e-cc70-4961-8650-9b162a2a5d78" + "CENTRALUS:20151230T061043Z:88b6911d-9503-4363-8cb8-84d3b8877f2d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:49 GMT" + "Wed, 30 Dec 2015 06:10:42 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2815,13 +2947,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb6fa6e3-03ac-44ee-80f2-45a9a405c903" + "fb72db30-38e6-4ae5-804a-7d6f8f0a3b48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2842,22 +2977,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "708d4752-1dfc-460c-9538-360b00c676a1" + "015427b6-4056-439c-a356-2d614f673217" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11994" ], "x-ms-correlation-request-id": [ - "5091f652-db08-4033-806b-a32b2c96503c" + "8a854a71-2a75-4241-866b-36f25d7269f1" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164155Z:5091f652-db08-4033-806b-a32b2c96503c" + "CENTRALUS:20151230T061049Z:8a854a71-2a75-4241-866b-36f25d7269f1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:54 GMT" + "Wed, 30 Dec 2015 06:10:49 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2878,13 +3013,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82d2d747-9f75-448a-b81c-833cf84b040b" + "57acff4e-f270-4255-8038-18e70ad35f13" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2905,22 +3043,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28ac4111-14de-4009-80a6-64ae4360843a" + "7e73d331-905a-416d-a3fc-6519b605b084" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11992" ], "x-ms-correlation-request-id": [ - "1054360d-d553-46f1-958c-a0ffc8c373a4" + "e37b8c9d-0e96-48cd-9177-5c747630a241" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164208Z:1054360d-d553-46f1-958c-a0ffc8c373a4" + "CENTRALUS:20151230T061103Z:e37b8c9d-0e96-48cd-9177-5c747630a241" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:08 GMT" + "Wed, 30 Dec 2015 06:11:02 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -2941,13 +3079,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f1beab7-7fc7-4f2f-af25-9bb438e316c2" + "5001ae85-ccbd-4d57-b20f-5c87bf59307d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -2968,22 +3109,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fea1eba0-0938-408c-9453-3b82cd0d3713" + "a79d1532-8218-40db-853d-72d4eed75221" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11990" ], "x-ms-correlation-request-id": [ - "4cf15ec4-c31d-4899-a339-2605d1e644c1" + "cbbf073e-940f-4886-be30-4d22d87db7cc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164214Z:4cf15ec4-c31d-4899-a339-2605d1e644c1" + "CENTRALUS:20151230T061109Z:cbbf073e-940f-4886-be30-4d22d87db7cc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:14 GMT" + "Wed, 30 Dec 2015 06:11:08 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3004,13 +3145,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b030d638-c3f2-41c9-9573-e752fda382c5" + "7a510ae7-206b-4231-bff3-3a56109bb411" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -3031,22 +3175,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6a5f874d-6bf6-48f0-a5a4-06c8d2a187aa" + "d0b7a9dd-c727-4f96-a1d6-a8b57e7384fe" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11988" ], "x-ms-correlation-request-id": [ - "48c7aa31-991a-4d8e-b6de-743cac1d81a3" + "7f312771-73eb-4bc4-b98f-da6b7a330668" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164216Z:48c7aa31-991a-4d8e-b6de-743cac1d81a3" + "CENTRALUS:20151230T061111Z:7f312771-73eb-4bc4-b98f-da6b7a330668" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:16 GMT" + "Wed, 30 Dec 2015 06:11:10 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -3073,19 +3217,22 @@ "285" ], "x-ms-client-request-id": [ - "7d34c946-8d5c-4a46-9fe6-e3dee4ea8075" + "870849f0-90f9-4feb-9c48-4aa4eba6c195" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3415" + "3440" ], "Content-Type": [ "application/json" @@ -3100,25 +3247,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "23f3320b-18bc-4279-aa67-6f97997f72d9" + "bbcb786b-e131-4bc0-accb-56e7a63cc8fd" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "d3ffab07-8dd1-4eca-9e12-2bc79aa77ebf" + "c7af253e-176d-489d-9887-05112d2b83fc" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164148Z:d3ffab07-8dd1-4eca-9e12-2bc79aa77ebf" + "CENTRALUS:20151230T061042Z:c7af253e-176d-489d-9887-05112d2b83fc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:48 GMT" + "Wed, 30 Dec 2015 06:10:41 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -3145,19 +3292,22 @@ "216" ], "x-ms-client-request-id": [ - "fba425ee-e920-4ba3-939d-405753355ef3" + "a5d18c4b-ebef-41b9-b666-523c4314ba7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "3377" + "3402" ], "Content-Type": [ "application/json" @@ -3172,25 +3322,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c36b0b1-a0fc-47d9-8813-ebaec900449f" + "94eac547-879e-4d7c-b60c-3f021dc01f8f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "f365748b-16e7-47c4-9bfe-960e35610cbd" + "697cd3cc-782c-4a36-9e03-1de5e7981a54" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164158Z:f365748b-16e7-47c4-9bfe-960e35610cbd" + "CENTRALUS:20151230T061054Z:697cd3cc-782c-4a36-9e03-1de5e7981a54" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:58 GMT" + "Wed, 30 Dec 2015 06:10:54 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -3217,19 +3367,22 @@ "290" ], "x-ms-client-request-id": [ - "7c1e44ac-6e0a-4031-8e1e-289bdea83d35" + "39c1bc16-e6bd-4585-8dca-736454987111" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2991" + "3016" ], "Content-Type": [ "application/json" @@ -3244,25 +3397,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "209a7c6c-a702-45f0-af84-aeaf467d64da" + "18e82966-9eff-42d3-8f0d-762f70d6b031" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "9b2fc40e-ac69-426c-afa7-47577a4d8589" + "8e660e45-b3f4-4c44-8beb-116e79085a7a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164153Z:9b2fc40e-ac69-426c-afa7-47577a4d8589" + "CENTRALUS:20151230T061045Z:8e660e45-b3f4-4c44-8beb-116e79085a7a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:52 GMT" + "Wed, 30 Dec 2015 06:10:44 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -3289,19 +3442,22 @@ "221" ], "x-ms-client-request-id": [ - "d4c9d3c9-fea5-4d74-bb24-9d4b051c3fd1" + "5e3b2025-738d-491a-968a-a0387e40d010" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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-07T16:30:19.477\",\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 \"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}", + "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": [ - "2953" + "2978" ], "Content-Type": [ "application/json" @@ -3316,25 +3472,25 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c187e5d2-eb9a-4be3-9147-bb0620257c2e" + "6b5bbf69-e276-4752-a881-7c594835029f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-correlation-request-id": [ - "f9f969c6-d8ed-40ca-b64f-00d8d68910c4" + "2fb732ec-30f3-4786-b730-80ba577af3f0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164210Z:f9f969c6-d8ed-40ca-b64f-00d8d68910c4" + "CENTRALUS:20151230T061104Z:2fb732ec-30f3-4786-b730-80ba577af3f0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:10 GMT" + "Wed, 30 Dec 2015 06:11:04 GMT" ], "ETag": [ - "\"1D1310C8FF12850\"" + "\"1D13DD8E94E2D20\"" ], "Server": [ "Microsoft-IIS/8.0" @@ -3373,16 +3529,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14890" ], "x-ms-request-id": [ - "f066fb6b-5a8e-4ad7-a4eb-3f2ba93cef54" + "0ea231bd-3fa7-4837-ba89-a3d71dbe5ccd" ], "x-ms-correlation-request-id": [ - "f066fb6b-5a8e-4ad7-a4eb-3f2ba93cef54" + "0ea231bd-3fa7-4837-ba89-a3d71dbe5ccd" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164159Z:f066fb6b-5a8e-4ad7-a4eb-3f2ba93cef54" + "CENTRALUS:20151230T061055Z:0ea231bd-3fa7-4837-ba89-a3d71dbe5ccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3391,7 +3547,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:41:58 GMT" + "Wed, 30 Dec 2015 06:10:55 GMT" ] }, "StatusCode": 200 @@ -3421,16 +3577,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14889" ], "x-ms-request-id": [ - "88885895-9511-4d6c-adcf-3cb92501c83a" + "a17b7b80-7727-4b0a-8b01-9473e21822b5" ], "x-ms-correlation-request-id": [ - "88885895-9511-4d6c-adcf-3cb92501c83a" + "a17b7b80-7727-4b0a-8b01-9473e21822b5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164210Z:88885895-9511-4d6c-adcf-3cb92501c83a" + "CENTRALUS:20151230T061104Z:a17b7b80-7727-4b0a-8b01-9473e21822b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3439,7 +3595,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:10 GMT" + "Wed, 30 Dec 2015 06:11:04 GMT" ] }, "StatusCode": 200 @@ -3469,10 +3625,10 @@ "no-cache" ], "x-ms-request-id": [ - "413f6802-48af-497e-bffc-097bd059531b" + "da3f754f-1fe6-4be9-97dd-424524d28539" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -3481,22 +3637,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14971" ], "x-ms-correlation-request-id": [ - "a5a455de-5a44-4ad8-8349-ef6f63e72175" + "25921484-6050-4fd5-aa71-9f59edc28b9f" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164200Z:a5a455de-5a44-4ad8-8349-ef6f63e72175" + "CENTRALUS:20151230T061056Z:25921484-6050-4fd5-aa71-9f59edc28b9f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:00 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:10:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3532,10 +3685,10 @@ "no-cache" ], "x-ms-request-id": [ - "2b60cdde-0a94-4893-96c5-6f8054f2f66f" + "cb7341a7-ca97-48fa-8bf0-b9c5a0588369" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -3544,22 +3697,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14965" ], "x-ms-correlation-request-id": [ - "e0118fec-c83e-4a36-aef3-59b70ed07054" + "22fa6558-d118-41ea-b7ad-3ad4671979a7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164210Z:e0118fec-c83e-4a36-aef3-59b70ed07054" + "CENTRALUS:20151230T061105Z:22fa6558-d118-41ea-b7ad-3ad4671979a7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:11:04 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3595,10 +3745,10 @@ "no-cache" ], "x-ms-request-id": [ - "1fcd387d-5aea-46ab-bf05-ed3f9b9c5393" + "b94a0e9e-a79c-4084-b506-b76cf6c84604" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -3607,22 +3757,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14970" ], "x-ms-correlation-request-id": [ - "5217cd44-5506-4daf-a730-ad635c9b15d1" + "b4d33526-6531-40b8-a1c0-323aa223394e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164200Z:5217cd44-5506-4daf-a730-ad635c9b15d1" + "CENTRALUS:20151230T061056Z:b4d33526-6531-40b8-a1c0-323aa223394e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:00 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:10:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3658,7 +3805,7 @@ "no-cache" ], "x-ms-request-id": [ - "8ad4d0bc-4e51-4359-998b-521404276916" + "e5a794c0-9991-4ec1-a469-8706b79367a4" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_0" @@ -3670,22 +3817,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14964" ], "x-ms-correlation-request-id": [ - "d6412e6c-e083-4004-b013-067125e0ca77" + "eea4809a-e85b-401e-9492-fdc97607c79e" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164211Z:d6412e6c-e083-4004-b013-067125e0ca77" + "CENTRALUS:20151230T061105Z:eea4809a-e85b-401e-9492-fdc97607c79e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:11:04 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3721,10 +3865,10 @@ "no-cache" ], "x-ms-request-id": [ - "d14cf2e8-7f96-47b0-84b7-fef07ffc0640" + "6bec9640-686c-42dc-8b21-48ec3b271bfe" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -3733,22 +3877,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14969" ], "x-ms-correlation-request-id": [ - "acf031f6-a47e-4e4d-bb3c-75d2d2fe4289" + "282ba3d2-4a45-4d82-89e4-22f626a4a286" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164200Z:acf031f6-a47e-4e4d-bb3c-75d2d2fe4289" + "CENTRALUS:20151230T061056Z:282ba3d2-4a45-4d82-89e4-22f626a4a286" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:00 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:10:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3784,10 +3925,10 @@ "no-cache" ], "x-ms-request-id": [ - "701d227a-eea6-4725-88b5-64dc385b1cc1" + "ab71583f-85ad-4198-bfb6-d2fa41e7b7c6" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_3" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -3796,22 +3937,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14963" ], "x-ms-correlation-request-id": [ - "886fbf4e-3117-40e4-a14b-93ef3735d15b" + "cc0f4961-715f-418c-ac4b-408d86e271b5" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164211Z:886fbf4e-3117-40e4-a14b-93ef3735d15b" + "CENTRALUS:20151230T061105Z:cc0f4961-715f-418c-ac4b-408d86e271b5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:10 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3847,7 +3985,7 @@ "no-cache" ], "x-ms-request-id": [ - "21246ad3-9567-4575-a229-fc231d4f6f1b" + "fbe71467-5ac2-4acd-8ee9-9bad62c6df2e" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_0" @@ -3859,22 +3997,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14968" ], "x-ms-correlation-request-id": [ - "9fd31b99-be2b-41a6-9c1f-81a0555cf49a" + "562ba891-a1d0-4584-879c-0c0f6ee806f0" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164201Z:9fd31b99-be2b-41a6-9c1f-81a0555cf49a" + "CENTRALUS:20151230T061056Z:562ba891-a1d0-4584-879c-0c0f6ee806f0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:00 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:10:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3910,7 +4045,7 @@ "no-cache" ], "x-ms-request-id": [ - "658b9fc0-1fbb-4bff-a428-4d980b4d7a7e" + "c8e545f5-13cc-4c88-8dea-84cd64a3178d" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_3" @@ -3922,22 +4057,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14962" ], "x-ms-correlation-request-id": [ - "9d744684-5675-49fd-bbe3-741b9b9d6008" + "3b04b911-1b24-422a-a1c0-b345504fe9d7" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164211Z:9d744684-5675-49fd-bbe3-741b9b9d6008" + "CENTRALUS:20151230T061105Z:3b04b911-1b24-422a-a1c0-b345504fe9d7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:11 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -3973,10 +4105,10 @@ "no-cache" ], "x-ms-request-id": [ - "1a2bbe1f-326a-4edc-be11-e6766724c2e6" + "b5e25572-fa46-48bb-9e33-be86c26e765d" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_2" ], "X-Content-Type-Options": [ "nosniff" @@ -3985,22 +4117,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14967" ], "x-ms-correlation-request-id": [ - "ba40674e-9d3b-4c14-807d-fbef0013bb8d" + "1fdecb43-004b-427f-a1c8-a720f4a90172" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164201Z:ba40674e-9d3b-4c14-807d-fbef0013bb8d" + "CENTRALUS:20151230T061056Z:1fdecb43-004b-427f-a1c8-a720f4a90172" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:00 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:10:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -4036,7 +4165,7 @@ "no-cache" ], "x-ms-request-id": [ - "e8d72d86-935a-4a1b-beef-753d58d0c869" + "ea5e371a-2ebf-4a27-9830-f28cc2fc7338" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_0" @@ -4048,22 +4177,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14961" ], "x-ms-correlation-request-id": [ - "f39742f7-88c9-47ff-9af3-ca80aad72aee" + "0b3d6198-be63-4305-a1e5-516af95fd818" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164211Z:f39742f7-88c9-47ff-9af3-ca80aad72aee" + "CENTRALUS:20151230T061105Z:0b3d6198-be63-4305-a1e5-516af95fd818" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:11 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -4099,10 +4225,10 @@ "no-cache" ], "x-ms-request-id": [ - "3b46e6a6-8169-48bb-8954-75ce76405cee" + "b261670a-5bdb-487b-acbd-234e4a81c8d1" ], "x-ms-gateway-service-instanceid": [ - "PASFE_IN_1" + "PASFE_IN_0" ], "X-Content-Type-Options": [ "nosniff" @@ -4111,22 +4237,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14966" ], "x-ms-correlation-request-id": [ - "36907272-67f7-4968-830c-8ed56b89664f" + "566a635f-3259-4216-ab68-a8fc04e4bf29" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164201Z:36907272-67f7-4968-830c-8ed56b89664f" + "CENTRALUS:20151230T061056Z:566a635f-3259-4216-ab68-a8fc04e4bf29" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:00 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:10:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -4162,7 +4285,7 @@ "no-cache" ], "x-ms-request-id": [ - "01895b76-3e9b-49b3-ba6f-2ba3c6daf4b1" + "ea2398eb-899d-43d2-a578-b8cb34a01133" ], "x-ms-gateway-service-instanceid": [ "PASFE_IN_3" @@ -4174,22 +4297,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14960" ], "x-ms-correlation-request-id": [ - "2a1cd006-5f63-4b80-8670-66f34e46ce65" + "c1c9ecd8-0dd1-48e2-9baa-3cd494c9398d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164211Z:2a1cd006-5f63-4b80-8670-66f34e46ce65" + "CENTRALUS:20151230T061105Z:c1c9ecd8-0dd1-48e2-9baa-3cd494c9398d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:11 GMT" - ], - "Set-Cookie": [ - "x-ms-gateway-slice=productionb; path=/" + "Wed, 30 Dec 2015 06:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -4207,13 +4327,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e6494c2-3e6d-4bf8-93ff-3219e6a2a573" + "d5f2ee3f-8e90-4884-9023-c77a6345fb79" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4234,22 +4357,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30eb672a-bd70-4fbb-a021-77f45111efe5" + "aee4d061-a940-48d2-94fe-db9d148487ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14794" ], "x-ms-correlation-request-id": [ - "e67c6ec3-cadf-4ad8-a3a1-79c5a1287cf6" + "6cb026d7-f9b4-4f62-ad47-ebe8ad7021d4" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164202Z:e67c6ec3-cadf-4ad8-a3a1-79c5a1287cf6" + "CENTRALUS:20151230T061058Z:6cb026d7-f9b4-4f62-ad47-ebe8ad7021d4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:01 GMT" + "Wed, 30 Dec 2015 06:10:57 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -4270,13 +4393,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fabc86-4d2a-4c55-b49c-6b4298c3aae7" + "f41e51db-ad5a-40fb-9f81-d675d8ac116d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4297,22 +4423,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5c02632c-ac03-46e7-8449-1b0ab81c0734" + "44a86fd7-f1eb-403c-b38a-d2919823d1e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14787" ], "x-ms-correlation-request-id": [ - "c7f0a90d-d6cc-4d3c-96dd-84a3faf6c65c" + "28f30a4f-a98b-4526-8228-6ce44c2f1710" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164211Z:c7f0a90d-d6cc-4d3c-96dd-84a3faf6c65c" + "CENTRALUS:20151230T061105Z:28f30a4f-a98b-4526-8228-6ce44c2f1710" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:11 GMT" + "Wed, 30 Dec 2015 06:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -4333,13 +4459,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1da4fbc-59a0-4e19-a7c8-25b66df5056b" + "d50e6149-37d2-476b-b817-fabd044bd116" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4360,22 +4489,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "639059f6-a7fa-4448-a4e5-7f9fd156750f" + "9832d7fc-1b2f-45cf-8ef2-cb3ecf3268d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14793" ], "x-ms-correlation-request-id": [ - "35fd89ea-84e5-4bda-9cb9-f72c193bc4aa" + "27cfa8ea-92f5-40d3-8df0-e9eac117294a" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164202Z:35fd89ea-84e5-4bda-9cb9-f72c193bc4aa" + "CENTRALUS:20151230T061058Z:27cfa8ea-92f5-40d3-8df0-e9eac117294a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:02 GMT" + "Wed, 30 Dec 2015 06:10:58 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -4396,13 +4525,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c72600b-8680-4674-b828-de443bc43fba" + "a8cadc62-c054-40d0-968c-12887ef0a9d6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4423,22 +4555,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f15f13b8-5bcf-4cb4-abd1-2279c63955c5" + "09ecf94c-c430-445d-8a39-341843d82977" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14786" ], "x-ms-correlation-request-id": [ - "9b525833-08cc-4841-b298-f3e19168deae" + "ade56af8-bee2-4def-a378-afecfa8d02ca" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164212Z:9b525833-08cc-4841-b298-f3e19168deae" + "CENTRALUS:20151230T061106Z:ade56af8-bee2-4def-a378-afecfa8d02ca" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:12 GMT" + "Wed, 30 Dec 2015 06:11:05 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -4459,13 +4591,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e298067d-179a-485d-9b1d-cc916d896f8c" + "0121e4dc-0977-42c1-8201-6b51b1ea84cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4486,22 +4621,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10840499-e3ff-46a1-859b-f201c7875da4" + "2ace601d-4fcc-4ead-8f92-aa9d4b7e64b0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14792" ], "x-ms-correlation-request-id": [ - "fa8a3b9a-810c-4925-a52b-0e41ebaa1618" + "0926dcf6-c870-4705-add4-5f8ffaef13fa" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164205Z:fa8a3b9a-810c-4925-a52b-0e41ebaa1618" + "CENTRALUS:20151230T061100Z:0926dcf6-c870-4705-add4-5f8ffaef13fa" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:04 GMT" + "Wed, 30 Dec 2015 06:10:59 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -4522,13 +4657,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b14a7ee-0e8a-472e-af39-722b49a1ecf8" + "452486e8-50db-4352-8a40-49366838cf54" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4549,22 +4687,22 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6419b762-c028-4772-ba42-4158f80ab1dc" + "644e8dcc-c501-4cf9-be73-fe02c4c56772" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14785" ], "x-ms-correlation-request-id": [ - "108f66fb-d336-4a81-838f-5d7ad5128b89" + "228d2a92-54de-420c-9c95-5ca00190a937" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164212Z:108f66fb-d336-4a81-838f-5d7ad5128b89" + "CENTRALUS:20151230T061106Z:228d2a92-54de-420c-9c95-5ca00190a937" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:12 GMT" + "Wed, 30 Dec 2015 06:11:06 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -4585,13 +4723,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf70e543-20de-40f8-a827-264c133f81cb" + "f8b91218-2957-413a-bc42-d2972b65b3aa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4615,19 +4756,19 @@ "1196" ], "x-ms-request-id": [ - "51c0dd56-a75a-4042-be2b-cbc0c7d646e9" + "b84f4411-84e6-4d69-969a-0e286c20d82d" ], "x-ms-correlation-request-id": [ - "51c0dd56-a75a-4042-be2b-cbc0c7d646e9" + "b84f4411-84e6-4d69-969a-0e286c20d82d" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164206Z:51c0dd56-a75a-4042-be2b-cbc0c7d646e9" + "CENTRALUS:20151230T061100Z:b84f4411-84e6-4d69-969a-0e286c20d82d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:05 GMT" + "Wed, 30 Dec 2015 06:11:00 GMT" ], "Server": [ "Microsoft-IIS/8.0" @@ -4648,13 +4789,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e90882f9-03ed-4dde-b420-08d5abb722a7" + "9fd8c120-c0bc-4ea4-bdb1-bcb477a231f3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/1.0.0.0" + "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}", @@ -4678,19 +4822,19 @@ "1194" ], "x-ms-request-id": [ - "92084379-d281-41d1-80ac-f0d933b42112" + "efe04a89-8f71-4dd7-a59c-13835edeee10" ], "x-ms-correlation-request-id": [ - "92084379-d281-41d1-80ac-f0d933b42112" + "efe04a89-8f71-4dd7-a59c-13835edeee10" ], "x-ms-routing-request-id": [ - "WESTUS:20151207T164213Z:92084379-d281-41d1-80ac-f0d933b42112" + "CENTRALUS:20151230T061107Z:efe04a89-8f71-4dd7-a59c-13835edeee10" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 16:42:13 GMT" + "Wed, 30 Dec 2015 06:11:06 GMT" ], "Server": [ "Microsoft-IIS/8.0" 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/GetAzureRMWebAppCertificate.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppCertificate.cs similarity index 91% rename from src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppCertificate.cs rename to src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppCertificate.cs index 60efa4467551..c35ccade88db 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppCertificate.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppCertificate.cs @@ -16,8 +16,8 @@ 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 GetAzureRMWebAppCertificate : WebAppBaseClientCmdLet + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppCertificate")] + public class GetAzureWebAppCertificate : WebAppBaseClientCmdLet { [Parameter(Position = 0, Mandatory = false, HelpMessage = "The name of the resource group.")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppSSLBinding.cs similarity index 90% rename from src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppSSLBinding.cs rename to src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppSSLBinding.cs index 955ed29a6d2e..166e957564e7 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureRMWebAppSSLBinding.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/GetAzureWebAppSSLBinding.cs @@ -16,8 +16,8 @@ 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 GetAzureRMWebAppSSLBinding : WebAppSSLBindingBaseCmdlet + [Cmdlet(VerbsCommon.Get, "AzureRmWebAppSSLBinding")] + public class GetAzureWebAppSSLBinding : WebAppSSLBindingBaseCmdlet { [Parameter(Position = 3, Mandatory = false, HelpMessage = "The name of the host name.")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureRMWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs similarity index 98% rename from src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureRMWebAppSSLBinding.cs rename to src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs index e6bbb9e594b4..6bf51202f3db 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureRMWebAppSSLBinding.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs @@ -29,8 +29,8 @@ 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 NewAzureRMWebAppSSLBinding : WebAppBaseClientCmdLet + [Cmdlet(VerbsCommon.New, "AzureRmWebAppSSLBinding")] + public class NewAzureWebAppSSLBinding : WebAppBaseClientCmdLet { const string CertNamePostFixSeparator = "_"; const string ParameterSet1Name = "S1"; diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureRMWebAppSSLBinding.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs similarity index 96% rename from src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureRMWebAppSSLBinding.cs rename to src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs index 9e62503cc1ca..2eae41eef674 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureRMWebAppSSLBinding.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/Certificates/RemoveAzureWebAppSSLBinding.cs @@ -20,8 +20,8 @@ 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 RemoveAzureRMWebAppSSLBinding : WebAppSSLBindingBaseCmdlet + [Cmdlet(VerbsCommon.Remove, "AzureRmWebAppSSLBinding")] + public class RemoveAzureWebAppSSLBinding : WebAppSSLBindingBaseCmdlet { [Parameter(Position = 3, Mandatory = true, HelpMessage = "The name of the host name.")] [ValidateNotNullOrEmpty] 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 02b9c14ea38e..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"; @@ -107,7 +107,7 @@ private void GetByWebAppName() WriteProgress(progressRecord); } - WriteObject(list[0]); + WriteObject(list); } private void GetByResourceGroup() 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 c0da3797a3b8..dca64dd0e838 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj +++ b/src/ResourceManager/Websites/Commands.Websites/Commands.Websites.csproj @@ -143,10 +143,10 @@ - - - - + + + + From 29d780abbad19334612c3817be608a98c89e71dd Mon Sep 17 00:00:00 2001 From: akurmi - Ashish Kurmi Date: Thu, 31 Dec 2015 16:44:33 -0800 Subject: [PATCH 7/7] Adding 'Copy If Newer' flag for test json files to fix test failures --- .../Commands.Websites.Test.csproj | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) 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 691cb07fcb01..c223fbce2ed6 100644 --- a/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj +++ b/src/ResourceManager/Websites/Commands.Websites.Test/Commands.Websites.Test.csproj @@ -186,10 +186,18 @@ PreserveNewest - - - - + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + PreserveNewest