diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi
index 1dbfaa5bc76a..844c5a05065e 100644
--- a/setup/azurecmdfiles.wxi
+++ b/setup/azurecmdfiles.wxi
@@ -2077,6 +2077,9 @@
+
+
+
@@ -5475,6 +5478,7 @@
+
diff --git a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1 b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1
index ae14cbff45f4..a8b9f265813a 100644
--- a/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1
+++ b/src/ResourceManager/Resources/Commands.Resources/AzureResourceManager.psd1
@@ -55,7 +55,8 @@ ScriptsToProcess = @()
# Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = @(
- '.\Compute\Microsoft.Azure.Commands.Compute.Types.ps1xml'
+ '.\Compute\Microsoft.Azure.Commands.Compute.Types.ps1xml',
+ '.\Sql\Microsoft.Azure.Commands.Sql.Types.ps1xml'
)
# Format files (.ps1xml) to be loaded when importing this module
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj
index 8bcc1aacb2b5..943afcf68a98 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/Commands.Sql.Test.csproj
@@ -187,8 +187,12 @@
+
+
+ Always
+
Always
@@ -404,6 +408,30 @@
Always
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
+
+ Always
+
PreserveNewest
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1
index b52116cb13d4..c85d924931d1 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/Common.ps1
@@ -161,9 +161,8 @@ function Get-ElasticPoolName
.SYNOPSIS
Creates a resource group for tests
#>
-function Create-ResourceGroupForTest ()
+function Create-ResourceGroupForTest ($location = "Japan East")
{
- $location = "Japan East"
$rgName = Get-ResourceGroupName
$rg = New-AzureResourceGroup -Name $rgName -Location $location
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.cs
new file mode 100644
index 000000000000..5fe031a67bc9
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.cs
@@ -0,0 +1,79 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.ScenarioTest.SqlTests;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Xunit;
+
+namespace Microsoft.Azure.Commands.Sql.Test.ScenarioTests
+{
+ public class DatabaseReplicationTests : SqlTestsBase
+ {
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestCreateDatabaseCopy()
+ {
+ RunPowerShellTest("Test-CreateDatabaseCopy");
+ }
+
+ [Fact]
+ [Trait(Category.Sql, Category.CheckIn)]
+ public void TestCreateDatabaseCopyV2()
+ {
+ RunPowerShellTest("Test-CreateDatabaseCopyV2");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestCreateSecondaryDatabase()
+ {
+ RunPowerShellTest("Test-CreateSecondaryDatabase");
+ }
+
+ [Fact]
+ [Trait(Category.Sql, Category.CheckIn)]
+ public void TestCreateSecondaryDatabaseV2()
+ {
+ RunPowerShellTest("Test-CreateSecondaryDatabaseV2");
+ }
+
+ [Fact]
+ [Trait(Category.Sql, Category.CheckIn)]
+ public void TestGetReplicationLink()
+ {
+ RunPowerShellTest("Test-GetReplicationLink");
+ }
+
+ [Fact]
+ [Trait(Category.Sql, Category.CheckIn)]
+ public void TestGetReplicationLinkV2()
+ {
+ RunPowerShellTest("Test-GetReplicationLinkV2");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRemoveSecondaryDatabase()
+ {
+ RunPowerShellTest("Test-RemoveSecondaryDatabase");
+ }
+
+ [Fact]
+ [Trait(Category.Sql, Category.CheckIn)]
+ public void TestRemoveSecondaryDatabaseV2()
+ {
+ RunPowerShellTest("Test-RemoveSecondaryDatabaseV2");
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1
new file mode 100644
index 000000000000..b96efe191e51
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseReplicationTests.ps1
@@ -0,0 +1,253 @@
+# ----------------------------------------------------------------------------------
+#
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+<#
+ .SYNOPSIS
+ Tests creating a database copy
+#>
+function Test-CreateDatabaseCopy
+{
+ Test-CreateCopyInternal "12.0" "North Europe"
+}
+
+<#
+ .SYNOPSIS
+ Tests creating a database copy
+#>
+function Test-CreateDatabaseCopyV2
+{
+ Test-CreateCopyInternal "2.0" "North Central US"
+}
+
+<#
+ .SYNOPSIS
+ Tests creating a database copy
+#>
+function Test-CreateCopyInternal ($serverVersion, $location = "North Europe")
+{
+ # Setup
+ $rg = Create-ResourceGroupForTest $location
+ $server = Create-ServerForTest $rg $serverVersion $location
+ $database = Create-DatabaseForTest $rg $server "Standard"
+
+ $copyRg = Create-ResourceGroupForTest $location
+ $copyServer = Create-ServerForTest $copyRg $serverVersion $location
+ $copyDatabaseName = Get-DatabaseName
+
+ try
+ {
+ # Create a local database copy
+ $dbLocalCopy = New-AzureSqlDatabaseCopy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName `
+ -CopyDatabaseName $copyDatabaseName
+ Assert-AreEqual $dbLocalCopy.ResourceGroupName $rg.ResourceGroupName
+ Assert-AreEqual $dbLocalCopy.ServerName $server.ServerName
+ Assert-AreEqual $dbLocalCopy.DatabaseName $database.DatabaseName
+ Assert-AreEqual $dbLocalCopy.CopyResourceGroupName $rg.ResourceGroupName
+ Assert-AreEqual $dbLocalCopy.CopyServerName $server.ServerName
+ Assert-AreEqual $dbLocalCopy.CopyDatabaseName $copyDatabaseName
+
+ # Create a cross server copy
+ $dbCrossServerCopy = New-AzureSqlDatabaseCopy -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName `
+ -CopyResourceGroupName $copyRg.ResourceGroupName -CopyServerName $copyServer.ServerName -CopyDatabaseName $copyDatabaseName
+ Assert-AreEqual $dbCrossServerCopy.ResourceGroupName $rg.ResourceGroupName
+ Assert-AreEqual $dbCrossServerCopy.ServerName $server.ServerName
+ Assert-AreEqual $dbCrossServerCopy.DatabaseName $database.DatabaseName
+ Assert-AreEqual $dbCrossServerCopy.CopyResourceGroupName $copyRg.ResourceGroupName
+ Assert-AreEqual $dbCrossServerCopy.CopyServerName $copyServer.ServerName
+ Assert-AreEqual $dbCrossServerCopy.CopyDatabaseName $copyDatabaseName
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ Remove-ResourceGroupForTest $copyRg
+ }
+}
+
+<#
+ .SYNOPSIS
+ Tests creating a secondary database
+#>
+function Test-CreateSecondaryDatabase
+{
+ Test-CreateSecondaryDatabaseInternal "12.0" "North Europe"
+}
+
+<#
+ .SYNOPSIS
+ Tests creating a secondary database
+#>
+function Test-CreateSecondaryDatabaseV2
+{
+ Test-CreateSecondaryDatabaseInternal "2.0" "North Central US"
+}
+
+<#
+ .SYNOPSIS
+ Tests creating a secondary database
+#>
+function Test-CreateSecondaryDatabaseInternal ($serverVersion, $location = "North Europe")
+{
+ # Setup
+ $rg = Create-ResourceGroupForTest $location
+ $server = Create-ServerForTest $rg $serverVersion $location
+ $database = Create-DatabaseForTest $rg $server
+
+ $partRg = Create-ResourceGroupForTest $location
+ $partServer = Create-ServerForTest $partRg $serverVersion $location
+
+ try
+ {
+ # Create Readable Secondary
+ $readSecondary = New-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName `
+ -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName -AllowConnections All
+ Assert-NotNull $readSecondary.LinkId
+ Assert-AreEqual $readSecondary.ResourceGroupName $rg.ResourceGroupName
+ Assert-AreEqual $readSecondary.ServerName $server.ServerName
+ Assert-AreEqual $readSecondary.DatabaseName $database.DatabaseName
+ Assert-AreEqual $readSecondary.Role "Primary"
+ Assert-AreEqual $readSecondary.Location $location
+ Assert-AreEqual $readSecondary.PartnerResourceGroupName $partRg.ResourceGroupName
+ Assert-AreEqual $readSecondary.PartnerServerName $partServer.ServerName
+ Assert-NotNull $readSecondary.PartnerRole
+ Assert-AreEqual $readSecondary.PartnerLocation $location
+ Assert-NotNull $readSecondary.AllowConnections
+ Assert-NotNull $readSecondary.ReplicationState
+ Assert-NotNull $readSecondary.PercentComplete
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ Remove-ResourceGroupForTest $partRg
+ }
+}
+
+<#
+ .SYNOPSIS
+ Tests getting a secondary database
+#>
+function Test-GetReplicationLink
+{
+ Test-GetReplicationLinkInternal "12.0" "North Europe"
+}
+
+<#
+ .SYNOPSIS
+ Tests getting a secondary database
+#>
+function Test-GetReplicationLinkV2
+{
+ Test-GetReplicationLinkInternal "2.0" "North Central US"
+}
+
+<#
+ .SYNOPSIS
+ Tests getting a secondary database
+#>
+function Test-GetReplicationLinkInternal ($serverVersion, $location = "North Europe")
+{
+ # Setup
+ $rg = Create-ResourceGroupForTest $location
+ $server = Create-ServerForTest $rg $serverVersion $location
+ $database = Create-DatabaseForTest $rg $server
+
+ $partRg = Create-ResourceGroupForTest $location
+ $partServer = Create-ServerForTest $partRg $serverVersion $location
+
+ try
+ {
+ # Get Secondary
+ New-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName `
+ -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName -AllowConnections All
+
+ $secondary = Get-AzureSqlDatabaseReplicationLink -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName `
+ -DatabaseName $database.DatabaseName -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName
+ Assert-NotNull $secondary.LinkId
+ Assert-AreEqual $secondary.ResourceGroupName $rg.ResourceGroupName
+ Assert-AreEqual $secondary.ServerName $server.ServerName
+ Assert-AreEqual $secondary.DatabaseName $database.DatabaseName
+ Assert-AreEqual $secondary.Role Primary
+ Assert-AreEqual $secondary.Location $location
+ Assert-AreEqual $secondary.PartnerResourceGroupName $partRg.ResourceGroupName
+ Assert-AreEqual $secondary.PartnerServerName $partServer.ServerName
+ Assert-NotNull $secondary.PartnerRole
+ Assert-AreEqual $secondary.PartnerLocation $location
+ Assert-NotNull $secondary.AllowConnections
+ Assert-NotNull $secondary.ReplicationState
+ Assert-NotNull $secondary.PercentComplete
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ Remove-ResourceGroupForTest $partRg
+ }
+}
+
+<#
+ .SYNOPSIS
+ Tests removing a secondary database
+#>
+function Test-RemoveSecondaryDatabase
+{
+ Test-RemoveSecondaryDatabaseInternal "12.0" "North Europe"
+}
+
+<#
+ .SYNOPSIS
+ Tests removing a secondary database
+#>
+function Test-RemoveSecondaryDatabaseV2
+{
+ Test-RemoveSecondaryDatabaseInternal "2.0" "North Central US"
+}
+
+<#
+ .SYNOPSIS
+ Tests removing a secondary database
+#>
+function Test-RemoveSecondaryDatabaseInternal ($serverVersion, $location = "North Europe")
+{
+ # Setup
+ $rg = Create-ResourceGroupForTest $location
+ $server = Create-ServerForTest $rg $serverVersion $location
+ $database = Create-DatabaseForTest $rg $server
+
+ $partRg = Create-ResourceGroupForTest $location
+ $partServer = Create-ServerForTest $partRg $serverVersion $location
+
+ try
+ {
+ # remove Secondary
+ New-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName `
+ -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName -AllowConnections All
+
+ Remove-AzureSqlDatabaseSecondary -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $database.DatabaseName `
+ -PartnerResourceGroupName $partRg.ResourceGroupName -PartnerServerName $partServer.ServerName
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ Remove-ResourceGroupForTest $partRg
+ }
+}
+
+
+<#
+ .SYNOPSIS
+ Creates test database
+#>
+function Create-DatabaseForTest ($rg, $server, $edition = "Premium")
+{
+ $databaseName = Get-DatabaseName
+ New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName -Edition $edition
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json
new file mode 100644
index 000000000000..22fb720bdce9
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopy.json
@@ -0,0 +1,3566 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "fba3cb22-fac5-4678-b9a6-7a62f96f6fff"
+ ],
+ "x-ms-correlation-request-id": [
+ "fba3cb22-fac5-4678-b9a6-7a62f96f6fff"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234133Z:fba3cb22-fac5-4678-b9a6-7a62f96f6fff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:41:32 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "c3e1e8c2-374a-41d3-8385-6a60fceff44d"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3e1e8c2-374a-41d3-8385-6a60fceff44d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234749Z:c3e1e8c2-374a-41d3-8385-6a60fceff44d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:48 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240\",\r\n \"name\": \"onesdk2240\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-request-id": [
+ "5c13f6f0-046c-41fb-bfab-5f4951731466"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c13f6f0-046c-41fb-bfab-5f4951731466"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234135Z:5c13f6f0-046c-41fb-bfab-5f4951731466"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:41:34 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "159940b0-7aee-4f2b-85d7-4774c75e93ce"
+ ],
+ "x-ms-correlation-request-id": [
+ "159940b0-7aee-4f2b-85d7-4774c75e93ce"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234135Z:159940b0-7aee-4f2b-85d7-4774c75e93ce"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:41:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:fcfa3309-50d3-4c3f-810a-506992cf967d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5d83cd3-8879-4094-8b44-b9ad5818aee9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234135Z:c5d83cd3-8879-4094-8b44-b9ad5818aee9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:41:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3cab0eb6-bc30-4386-81db-357f8e4838dc"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5677' under resource group 'onesdk2240' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "22831546-87da-47bc-8189-87e213a6b379"
+ ],
+ "x-ms-correlation-request-id": [
+ "22831546-87da-47bc-8189-87e213a6b379"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234136Z:22831546-87da-47bc-8189-87e213a6b379"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:41:35 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "034f25dc-7134-4468-b3dc-15c8e5d259af"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "e5717e06-599d-4947-9fd5-a26fc78dda45"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f63d48f-2ddd-4261-a9b0-76cee926029f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234220Z:4f63d48f-2ddd-4261-a9b0-76cee926029f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:42:19 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "bce30377-a52c-40cf-8c4e-c34d6fdc2215"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b62415a1-9aff-4158-bc22-be6505ee5ff4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-correlation-request-id": [
+ "09e93539-9c91-4d9b-8e70-be9f47686859"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234409Z:09e93539-9c91-4d9b-8e70-be9f47686859"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:09 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9d6e9ed0-b453-4c3a-87f6-5ca25a895189"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7a866fcd-7029-4a55-8800-5261ebe5363d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-correlation-request-id": [
+ "175227fd-2a11-4d76-ba11-38ab5d84ba87"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234615Z:175227fd-2a11-4d76-ba11-38ab5d84ba87"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b24ccf27-163d-4047-85bc-d334ce4d87f3"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "cfe77064-aa31-47fe-ac1e-7e0bdd2a4653"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b524df6-5d10-4536-ae7b-9ef5df76ff5f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234615Z:1b524df6-5d10-4536-ae7b-9ef5df76ff5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "bc6fb75a-d6b3-43f7-9a40-852550a13c04"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "caaa4c54-c8a9-45f2-a5d3-5cbb3499d493"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac23cda4-d80a-4640-9526-026c46b4c116"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234748Z:ac23cda4-d80a-4640-9526-026c46b4c116"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:48 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1aeb6d5b-1858-4823-824b-4de686124caf"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677\",\r\n \"name\": \"onesdk5677\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5677.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "f5fe7706-013d-4c71-bb82-52f97dbb3fff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a594fdc-90e0-452b-8e9d-d828d8018e7f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234220Z:0a594fdc-90e0-452b-8e9d-d828d8018e7f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:42:19 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b893e2d1-c2f3-494a-bb29-e0005af63247"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5677/databases/onesdk7653' under resource group 'onesdk2240' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "8976c491-13db-4dc2-8fb2-c230f9ee6aa8"
+ ],
+ "x-ms-correlation-request-id": [
+ "8976c491-13db-4dc2-8fb2-c230f9ee6aa8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234220Z:8976c491-13db-4dc2-8fb2-c230f9ee6aa8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:42:19 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "127"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "52275251-dc34-4095-a2f7-8ff6c443ef60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:42:21.919-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "2ba1dbe6-f842-4cb2-87ae-b42a06f862bf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-correlation-request-id": [
+ "88853557-a23e-49fa-a8da-c126a7cd5381"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234223Z:88853557-a23e-49fa-a8da-c126a7cd5381"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:42:22 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "52275251-dc34-4095-a2f7-8ff6c443ef60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:42:21.887Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "5dc428e5-2377-472b-a2dd-0f9114c8a1f7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14946"
+ ],
+ "x-ms-correlation-request-id": [
+ "831360f7-adfe-48f0-95bf-58f6ccc7ee28"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234224Z:831360f7-adfe-48f0-95bf-58f6ccc7ee28"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:42:23 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "52275251-dc34-4095-a2f7-8ff6c443ef60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:42:21.887Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "2850316a-9fbd-40bf-88ed-af6a342c5e16"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce7f821f-52f0-4303-ae98-be7fc47a863d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234254Z:ce7f821f-52f0-4303-ae98-be7fc47a863d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:42:53 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "52275251-dc34-4095-a2f7-8ff6c443ef60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:42:21.887Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "41b682bd-ee7e-4912-abf3-ce81879474af"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-correlation-request-id": [
+ "7516b34f-0d61-407b-adcc-b2aba3d53c08"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234310Z:7516b34f-0d61-407b-adcc-b2aba3d53c08"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:43:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653/operationResults/2ba1dbe6-f842-4cb2-87ae-b42a06f862bf?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGs3NjUzL29wZXJhdGlvblJlc3VsdHMvMmJhMWRiZTYtZjg0Mi00Y2IyLTg3YWUtYjQyYTA2Zjg2MmJmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "52275251-dc34-4095-a2f7-8ff6c443ef60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk7653\",\r\n \"name\": \"onesdk7653\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8b1e8b6f-6d84-4807-8940-d78de4cd5b7a\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:42:22.387Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:53:18.827Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "822"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2bf57576-f381-43b2-a28a-7c3ff05e8e69"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-correlation-request-id": [
+ "55bf97ee-677a-4111-b3bc-b1b770ba80f7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234326Z:55bf97ee-677a-4111-b3bc-b1b770ba80f7"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:43:25 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14918"
+ ],
+ "x-ms-request-id": [
+ "e66fe96f-9963-4e42-a64a-383c2e9f0fa4"
+ ],
+ "x-ms-correlation-request-id": [
+ "e66fe96f-9963-4e42-a64a-383c2e9f0fa4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234326Z:e66fe96f-9963-4e42-a64a-383c2e9f0fa4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:43:25 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-request-id": [
+ "cacb034c-c712-48c7-b9c8-c26eee887608"
+ ],
+ "x-ms-correlation-request-id": [
+ "cacb034c-c712-48c7-b9c8-c26eee887608"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234938Z:cacb034c-c712-48c7-b9c8-c26eee887608"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:49:38 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006\",\r\n \"name\": \"onesdk8006\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-request-id": [
+ "54cc971a-0d73-4114-950d-4b5bbe5a709c"
+ ],
+ "x-ms-correlation-request-id": [
+ "54cc971a-0d73-4114-950d-4b5bbe5a709c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234328Z:54cc971a-0d73-4114-950d-4b5bbe5a709c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:43:27 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14917"
+ ],
+ "x-ms-request-id": [
+ "586bff7e-ffc5-4365-8979-ff15ad215f80"
+ ],
+ "x-ms-correlation-request-id": [
+ "586bff7e-ffc5-4365-8979-ff15ad215f80"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234328Z:586bff7e-ffc5-4365-8979-ff15ad215f80"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:43:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:dab1b9bd-a0d8-4900-98e3-070971daa6ee"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5a60422-0e80-4868-a5ae-be541a8d1b72"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234328Z:a5a60422-0e80-4868-a5ae-be541a8d1b72"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:43:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "32f457e7-ac59-43d5-a836-1f22e1d22548"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk731' under resource group 'onesdk8006' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "145"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "127b5504-6cc5-45ad-9ba0-3ffd79b08394"
+ ],
+ "x-ms-correlation-request-id": [
+ "127b5504-6cc5-45ad-9ba0-3ffd79b08394"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234328Z:127b5504-6cc5-45ad-9ba0-3ffd79b08394"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:43:28 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e4cd475-90fd-4b11-89ce-0ae336635a34"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731\",\r\n \"name\": \"onesdk731\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk731.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "464"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "845c9fa4-29fe-48cd-b954-a3a627d5e275"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-correlation-request-id": [
+ "86da0a3a-a768-4516-ba90-ed3d3e5ba158"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234615Z:86da0a3a-a768-4516-ba90-ed3d3e5ba158"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e0460129-364d-4ca1-a103-29d2282840f5"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731\",\r\n \"name\": \"onesdk731\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk731.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7df8c98f-7aea-4679-8c29-741b6912a66a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7eeddc4-6cf5-4563-87fa-1c74f5c1d994"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234409Z:d7eeddc4-6cf5-4563-87fa-1c74f5c1d994"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "364e5b0c-017c-40d2-8460-d3f983c06df6"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5677/databases/onesdk134' under resource group 'onesdk2240' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "40660e7f-0ec3-4d9b-a309-e25c323bfcc7"
+ ],
+ "x-ms-correlation-request-id": [
+ "40660e7f-0ec3-4d9b-a309-e25c323bfcc7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234409Z:40660e7f-0ec3-4d9b-a309-e25c323bfcc7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:08 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/Servers/onesdk5677/databases/onesdk7653\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "296"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:44:11.195-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "95152f2f-e672-4c33-aa72-52e7615872a3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5cd3094-01c3-4786-8667-7ec3cca9350b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234412Z:c5cd3094-01c3-4786-8667-7ec3cca9350b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dd20a9b6-dbdd-4fc1-8f8f-6f6d2e1b6be2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0f79de1-b148-4973-9edd-a4abcbc74e53"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234413Z:c0f79de1-b148-4973-9edd-a4abcbc74e53"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "417e1ef9-a6cd-4dc8-94af-c7419c6903a1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f40fbd7-893a-47b2-a756-ee50ff4241fb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234424Z:9f40fbd7-893a-47b2-a756-ee50ff4241fb"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:23 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4b38edb3-7bfe-4a59-a52f-d36ac99a6f90"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-correlation-request-id": [
+ "57e21b40-e3b3-417f-bf9f-c943cbe46803"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234440Z:57e21b40-e3b3-417f-bf9f-c943cbe46803"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dbd85544-1644-49e1-a0a3-d8b1aca85ead"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-correlation-request-id": [
+ "118717f6-869f-477d-9371-8f1fd5066859"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234455Z:118717f6-869f-477d-9371-8f1fd5066859"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:44:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "59bbbdae-2c64-44e5-9991-e962f9890568"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c6f2e1b-c3de-4884-8ca2-62cd70c72b63"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234511Z:6c6f2e1b-c3de-4884-8ca2-62cd70c72b63"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:45:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "8f72d5c5-d8cc-4df1-8a5e-bb19c1bb5314"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c4b3f14-ca4b-4302-a84a-e7214369edee"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234527Z:6c4b3f14-ca4b-4302-a84a-e7214369edee"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:45:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "eae19158-867d-4e79-aec0-6fdd1e8e10d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-correlation-request-id": [
+ "95ffed99-16de-4133-aa01-de9ec307dce2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234543Z:95ffed99-16de-4133-aa01-de9ec307dce2"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:45:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:44:11.837Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "5d821d07-c4bb-4949-b1b4-7ce4311b8625"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14933"
+ ],
+ "x-ms-correlation-request-id": [
+ "3dce3fa6-4553-4dbf-adab-42d50903c5b6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234559Z:3dce3fa6-4553-4dbf-adab-42d50903c5b6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:45:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134/operationResults/95152f2f-e672-4c33-aa72-52e7615872a3?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazIyNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1Njc3L2RhdGFiYXNlcy9vbmVzZGsxMzQvb3BlcmF0aW9uUmVzdWx0cy85NTE1MmYyZi1lNjcyLTRjMzMtYWE3Mi01MmU3NjE1ODcyYTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "48f77391-10ae-4c92-afc1-8a56c268252c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/servers/onesdk5677/databases/onesdk134\",\r\n \"name\": \"onesdk134\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3c2be7c4-bd8d-403a-b37c-0ccfc29fdee1\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:44:12.45Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:56:05.68Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "818"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7b261100-a603-4c98-b71c-63eacb450178"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14932"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d6a0fad-6ecc-45c8-b457-945389db8f96"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234614Z:7d6a0fad-6ecc-45c8-b457-945389db8f96"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:14 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "165b6644-9e27-49ba-b9d8-5bf0f4172152"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk731/databases/onesdk134' under resource group 'onesdk8006' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "c9eee419-9043-43a3-88f4-6be39178c247"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9eee419-9043-43a3-88f4-6be39178c247"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234615Z:c9eee419-9043-43a3-88f4-6be39178c247"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:15 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2240/providers/Microsoft.Sql/Servers/onesdk5677/databases/onesdk7653\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "296"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:46:17.017-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a7d08d51-a36b-445d-be7f-6a0c37d03357"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-correlation-request-id": [
+ "238d7ddc-6fcb-4d86-a2ab-84748162643b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234618Z:238d7ddc-6fcb-4d86-a2ab-84748162643b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3c06cf97-e8e7-46eb-895e-df764ff6c2f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bd4d744-c2a5-4e4a-99a4-f02cd11af22d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234618Z:5bd4d744-c2a5-4e4a-99a4-f02cd11af22d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "968b658f-9849-4094-9152-e76ddc3c3847"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-correlation-request-id": [
+ "75b1f2d4-c05a-4734-be9a-73a48c58a463"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234629Z:75b1f2d4-c05a-4734-be9a-73a48c58a463"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cf6fdd94-5508-4026-a26d-b3592ab09b79"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f714b86-684b-4b91-8739-699a8cb1227f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234645Z:1f714b86-684b-4b91-8739-699a8cb1227f"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:46:45 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d09a66cd-498e-4988-bf84-7c71b31b6169"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-correlation-request-id": [
+ "7394cc88-4015-4997-a216-207e2806e44b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234701Z:7394cc88-4015-4997-a216-207e2806e44b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:01 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c18dd37d-d4bb-4042-b9e5-fc75965f61a3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-correlation-request-id": [
+ "f35109fe-2c27-4309-bc51-b5cd407d82cd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234717Z:f35109fe-2c27-4309-bc51-b5cd407d82cd"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:16 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:46:17.237Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "538ccd50-912f-48e5-9c19-2461de3368fd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf8d41a1-178f-4d39-abe7-c311f740694e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234732Z:cf8d41a1-178f-4d39-abe7-c311f740694e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:32 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134/operationResults/a7d08d51-a36b-445d-be7f-6a0c37d03357?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazgwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzEvZGF0YWJhc2VzL29uZXNkazEzNC9vcGVyYXRpb25SZXN1bHRzL2E3ZDA4ZDUxLWEzNmItNDQ1ZC1iZTdmLTZhMGMzN2QwMzM1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7918c77a-31b2-4d54-b3ab-665b9626145f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8006/providers/Microsoft.Sql/servers/onesdk731/databases/onesdk134\",\r\n \"name\": \"onesdk134\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ea4b45eb-28e6-4e07-b2b2-8066e88acd30\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:46:18.317Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:57:46.103Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "819"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "0bf4669f-bc55-4b7e-8fdf-adc8ca67aa9c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-correlation-request-id": [
+ "790596f5-2bd7-43e4-ae40-fbe1e184d3d4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234748Z:790596f5-2bd7-43e4-ae40-fbe1e184d3d4"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:48 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2240?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazIyNDA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "21be9090-5a99-4ed9-9941-4c8a51007259"
+ ],
+ "x-ms-correlation-request-id": [
+ "21be9090-5a99-4ed9-9941-4c8a51007259"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234751Z:21be9090-5a99-4ed9-9941-4c8a51007259"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-request-id": [
+ "4832758b-91a7-4c45-bc08-0e19d8d37daa"
+ ],
+ "x-ms-correlation-request-id": [
+ "4832758b-91a7-4c45-bc08-0e19d8d37daa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234751Z:4832758b-91a7-4c45-bc08-0e19d8d37daa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:47:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14992"
+ ],
+ "x-ms-request-id": [
+ "09223fdc-62fc-4a5f-858a-2729ed267fd2"
+ ],
+ "x-ms-correlation-request-id": [
+ "09223fdc-62fc-4a5f-858a-2729ed267fd2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234806Z:09223fdc-62fc-4a5f-858a-2729ed267fd2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:48:06 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-request-id": [
+ "5662a4e5-d96c-4ded-9d7f-4ce9d4342036"
+ ],
+ "x-ms-correlation-request-id": [
+ "5662a4e5-d96c-4ded-9d7f-4ce9d4342036"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234822Z:5662a4e5-d96c-4ded-9d7f-4ce9d4342036"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:48:22 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-request-id": [
+ "cd91ecb1-590c-4b28-9325-08e7c9f4cc4b"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd91ecb1-590c-4b28-9325-08e7c9f4cc4b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234837Z:cd91ecb1-590c-4b28-9325-08e7c9f4cc4b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:48:36 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14989"
+ ],
+ "x-ms-request-id": [
+ "f77ef0a1-0c20-406c-b6d0-6149fa4ea8ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "f77ef0a1-0c20-406c-b6d0-6149fa4ea8ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234852Z:f77ef0a1-0c20-406c-b6d0-6149fa4ea8ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:48:52 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14988"
+ ],
+ "x-ms-request-id": [
+ "9fd91ab0-9218-4496-884d-59db627f70c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fd91ab0-9218-4496-884d-59db627f70c9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234907Z:9fd91ab0-9218-4496-884d-59db627f70c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:49:06 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
+ "x-ms-request-id": [
+ "15e049e4-1658-477d-bdf4-451f929c9738"
+ ],
+ "x-ms-correlation-request-id": [
+ "15e049e4-1658-477d-bdf4-451f929c9738"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234923Z:15e049e4-1658-477d-bdf4-451f929c9738"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:49:23 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMjQwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNalF3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
+ ],
+ "x-ms-request-id": [
+ "d9ef9e7b-0800-49e4-88f6-3d52133a240d"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9ef9e7b-0800-49e4-88f6-3d52133a240d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234938Z:d9ef9e7b-0800-49e4-88f6-3d52133a240d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:49:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8006?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazgwMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-request-id": [
+ "14a58c9d-911a-4dda-a45b-f031ae23d4d5"
+ ],
+ "x-ms-correlation-request-id": [
+ "14a58c9d-911a-4dda-a45b-f031ae23d4d5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234939Z:14a58c9d-911a-4dda-a45b-f031ae23d4d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:49:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-request-id": [
+ "33114489-a779-48aa-b748-d401f12b6301"
+ ],
+ "x-ms-correlation-request-id": [
+ "33114489-a779-48aa-b748-d401f12b6301"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234940Z:33114489-a779-48aa-b748-d401f12b6301"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:49:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-request-id": [
+ "8d4b0a4a-1aa2-4cd7-a498-4ee1222d0260"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d4b0a4a-1aa2-4cd7-a498-4ee1222d0260"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T234955Z:8d4b0a4a-1aa2-4cd7-a498-4ee1222d0260"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:49:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-request-id": [
+ "1e9b5059-4cc2-4b35-bb21-38d4db4b09ca"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e9b5059-4cc2-4b35-bb21-38d4db4b09ca"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235010Z:1e9b5059-4cc2-4b35-bb21-38d4db4b09ca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:50:10 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-request-id": [
+ "a573d832-a6e3-4449-8b46-7209790b0166"
+ ],
+ "x-ms-correlation-request-id": [
+ "a573d832-a6e3-4449-8b46-7209790b0166"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235025Z:a573d832-a6e3-4449-8b46-7209790b0166"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:50:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-request-id": [
+ "9b267f2a-5273-4d90-8808-b7fd732247c0"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b267f2a-5273-4d90-8808-b7fd732247c0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235041Z:9b267f2a-5273-4d90-8808-b7fd732247c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:50:40 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-request-id": [
+ "b9274b45-731a-43a9-8643-bdf20bef812b"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9274b45-731a-43a9-8643-bdf20bef812b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235056Z:b9274b45-731a-43a9-8643-bdf20bef812b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:50:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
+ ],
+ "x-ms-request-id": [
+ "36a93a26-055b-41b8-bd3b-2ee164e456fd"
+ ],
+ "x-ms-correlation-request-id": [
+ "36a93a26-055b-41b8-bd3b-2ee164e456fd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235111Z:36a93a26-055b-41b8-bd3b-2ee164e456fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:51:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4MDA2LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRNREEyTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-request-id": [
+ "e560c77b-fc8a-40cd-8c89-8aab904d41eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "e560c77b-fc8a-40cd-8c89-8aab904d41eb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235127Z:e560c77b-fc8a-40cd-8c89-8aab904d41eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:51:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateDatabaseCopy": [
+ "onesdk2240",
+ "onesdk5677",
+ "onesdk7653",
+ "onesdk8006",
+ "onesdk731",
+ "onesdk134"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyV2.json
new file mode 100644
index 000000000000..9f628dcfebb9
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateDatabaseCopyV2.json
@@ -0,0 +1,2726 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-request-id": [
+ "2e3cdad2-c588-4cc2-8a35-4cadd848f767"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e3cdad2-c588-4cc2-8a35-4cadd848f767"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231559Z:2e3cdad2-c588-4cc2-8a35-4cadd848f767"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:15:59 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-request-id": [
+ "a58ecef3-9c9d-4e1f-92c5-c8f7fc85d535"
+ ],
+ "x-ms-correlation-request-id": [
+ "a58ecef3-9c9d-4e1f-92c5-c8f7fc85d535"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231714Z:a58ecef3-9c9d-4e1f-92c5-c8f7fc85d535"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:14 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523\",\r\n \"name\": \"onesdk4523\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "181"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-request-id": [
+ "8ec5ff77-7f06-4c41-baaa-84f9311bc792"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ec5ff77-7f06-4c41-baaa-84f9311bc792"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231559Z:8ec5ff77-7f06-4c41-baaa-84f9311bc792"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:15:59 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-request-id": [
+ "19ef3393-4ead-49fd-919a-50bfe868506c"
+ ],
+ "x-ms-correlation-request-id": [
+ "19ef3393-4ead-49fd-919a-50bfe868506c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231559Z:19ef3393-4ead-49fd-919a-50bfe868506c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:15:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:52a814ff-d08f-46d2-a0a0-976a10a2cf61"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4ca0945-6e3a-432a-9995-6d6263b4cf3a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231559Z:a4ca0945-6e3a-432a-9995-6d6263b4cf3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:15:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c958e0fc-9378-4c1a-91d0-ac8685b72370"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1590' under resource group 'onesdk4523' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "d5e63626-fbde-49dd-9ccd-048a74508e1d"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5e63626-fbde-49dd-9ccd-048a74508e1d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231600Z:d5e63626-fbde-49dd-9ccd-048a74508e1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:00 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4245f912-f050-41a4-9b86-ef59ba27014f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "4e376f47-1b18-4ad4-b014-cc8c6fb1bb5b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-correlation-request-id": [
+ "07d3bc01-8532-4f73-80c4-bd820daf4595"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231605Z:07d3bc01-8532-4f73-80c4-bd820daf4595"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:05 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "cd92dd1e-a28d-4c36-8249-54dd682fd4e7"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "838aecc6-1578-412c-be46-3e8a94df4d20"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c14738c-44c2-4476-a7a2-0c63b4d4a607"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231615Z:8c14738c-44c2-4476-a7a2-0c63b4d4a607"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:14 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3a631fe6-5d55-411e-8443-89932406db34"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "6549dc4e-7c6b-4738-b756-515889f6293a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1b92380-191b-4431-84ef-00b5da569ad9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231645Z:f1b92380-191b-4431-84ef-00b5da569ad9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:44 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7fe80767-2803-49f5-86d2-97ac48a87ded"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "67546973-d1a5-4c25-8542-b88ce9f503f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-correlation-request-id": [
+ "12cd39d5-86e9-402e-82d5-d8c63e1d63eb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231645Z:12cd39d5-86e9-402e-82d5-d8c63e1d63eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:44 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "21f9ef0c-224d-44eb-8a30-dceec3c854dd"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "af1789a0-69d5-43a8-8e83-428f40d39f28"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14917"
+ ],
+ "x-ms-correlation-request-id": [
+ "415a517c-ef8b-4018-91b1-2938a2362d5f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231714Z:415a517c-ef8b-4018-91b1-2938a2362d5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "d87ba924-5b74-44e9-a5be-f745a6efbb22"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590\",\r\n \"name\": \"onesdk1590\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1590.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "64311163-be29-4dc9-961a-5297a457d495"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "9adcf466-530d-4f68-b5e5-62bbcabb329e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231605Z:9adcf466-530d-4f68-b5e5-62bbcabb329e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:05 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4822?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e716ba6f-92b8-48d8-80b7-286e43173e8f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1590/databases/onesdk4822' under resource group 'onesdk4523' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "ffbbec16-3c19-4672-9efb-6343917bd034"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffbbec16-3c19-4672-9efb-6343917bd034"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231605Z:ffbbec16-3c19-4672-9efb-6343917bd034"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:05 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4822?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0ODIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "131"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9bc27133-dcb9-463a-b6ca-b8d8383a5da8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4822\",\r\n \"name\": \"onesdk4822\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"68f0ab71-5bec-4c9a-ba0a-fbb1820e4e29\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:16:07.313Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:17:07.313Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "779"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2aaae3d7-773f-467e-bd39-8dc1e7a5ce1a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c609ee8-e0e7-43a2-8ddb-bc2e04ebc8df"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231608Z:0c609ee8-e0e7-43a2-8ddb-bc2e04ebc8df"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-request-id": [
+ "349fd79a-fda3-40a6-b8d5-0e12cc34d915"
+ ],
+ "x-ms-correlation-request-id": [
+ "349fd79a-fda3-40a6-b8d5-0e12cc34d915"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231609Z:349fd79a-fda3-40a6-b8d5-0e12cc34d915"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:08 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-request-id": [
+ "b154fad4-b231-4a0a-a777-91b612b4fc1d"
+ ],
+ "x-ms-correlation-request-id": [
+ "b154fad4-b231-4a0a-a777-91b612b4fc1d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231900Z:b154fad4-b231-4a0a-a777-91b612b4fc1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:18:59 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804\",\r\n \"name\": \"onesdk6804\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "181"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-request-id": [
+ "c9e0b56e-42b7-4125-aa65-6c5ba9d04423"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9e0b56e-42b7-4125-aa65-6c5ba9d04423"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231609Z:c9e0b56e-42b7-4125-aa65-6c5ba9d04423"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:09 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-request-id": [
+ "33888015-25e4-409c-9f1e-5bf1fb8ce210"
+ ],
+ "x-ms-correlation-request-id": [
+ "33888015-25e4-409c-9f1e-5bf1fb8ce210"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231609Z:33888015-25e4-409c-9f1e-5bf1fb8ce210"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:965e3ed4-04e2-4d76-8e2c-8b4dc3593d77"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-correlation-request-id": [
+ "870201b7-0891-437d-b72a-b15258df4b47"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231610Z:870201b7-0891-437d-b72a-b15258df4b47"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ccc8ede1-dbf1-4a64-a0a7-3863db0ca0ce"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9919' under resource group 'onesdk6804' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "5bd0eb12-4ebb-46b0-80e4-2f70415f05ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bd0eb12-4ebb-46b0-80e4-2f70415f05ef"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231610Z:5bd0eb12-4ebb-46b0-80e4-2f70415f05ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:09 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dade86c0-b510-4ae2-944c-2e439061a479"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919\",\r\n \"name\": \"onesdk9919\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9919.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "41fb31da-6cb2-45d6-8c6b-b39af6e58876"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2a2044a-0533-40e1-817c-df6b5f7d77d6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231645Z:f2a2044a-0533-40e1-817c-df6b5f7d77d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:44 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a58d4cfb-8527-4c91-80c0-9aecd1233ea1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919\",\r\n \"name\": \"onesdk9919\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9919.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "f5acbe13-d55f-4cd4-a4e8-5eff5caeab19"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1b51a4f-37c0-47a0-9469-d767b68cae47"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231614Z:a1b51a4f-37c0-47a0-9469-d767b68cae47"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:14 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f104dd7d-0abe-4efb-a030-ffda52b1d9db"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1590/databases/onesdk4579' under resource group 'onesdk4523' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "dad3eae5-aff9-4b78-a3cb-c780f8c9bec5"
+ ],
+ "x-ms-correlation-request-id": [
+ "dad3eae5-aff9-4b78-a3cb-c780f8c9bec5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231614Z:dad3eae5-aff9-4b78-a3cb-c780f8c9bec5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:14 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/Servers/onesdk1590/databases/onesdk4822\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "300"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b76acfec-b60d-4cd4-9920-96abbbe400d9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:18.761Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "42961d31-3191-455a-b3e4-a2d4f41c9e52"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1182"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7dce495-edc5-4f3c-a8c0-7705a2f1202b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231619Z:c7dce495-edc5-4f3c-a8c0-7705a2f1202b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvODM1OWQ3NTMtYTU2My00NmNiLWIwNDMtZmY4ZTE0ZjkzNzYzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b76acfec-b60d-4cd4-9920-96abbbe400d9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:15.667Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "89518b07-90ca-4491-a0ff-4812cbb9e914"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-correlation-request-id": [
+ "32461292-a7fd-4abb-80cf-f45a7f3d4b0f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231619Z:32461292-a7fd-4abb-80cf-f45a7f3d4b0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvODM1OWQ3NTMtYTU2My00NmNiLWIwNDMtZmY4ZTE0ZjkzNzYzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b76acfec-b60d-4cd4-9920-96abbbe400d9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:15.667Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f064093a-a7b1-4869-b121-3bad3484240a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-correlation-request-id": [
+ "535e7b57-0cd8-4fba-9194-ca8d198dfce7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231629Z:535e7b57-0cd8-4fba-9194-ca8d198dfce7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579/operationResults/8359d753-a563-46cb-b043-ff8e14f93763?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ1MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTkwL2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvODM1OWQ3NTMtYTU2My00NmNiLWIwNDMtZmY4ZTE0ZjkzNzYzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b76acfec-b60d-4cd4-9920-96abbbe400d9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/servers/onesdk1590/databases/onesdk4579\",\r\n \"name\": \"onesdk4579\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e74cf823-6738-4a4c-9c31-b4c4c1c0a394\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:16:32.017Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:17:32.017Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "769"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "0798eba4-5319-408f-8c79-a6609e309d9f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2f22379-3bd6-47e1-a80e-6f56d22ff18d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231645Z:c2f22379-3bd6-47e1-a80e-6f56d22ff18d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:44 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4ded81a7-a95c-4131-b380-b51250df4264"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9919/databases/onesdk4579' under resource group 'onesdk6804' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "bc716c4e-9319-472f-87ae-ad09d25d99ac"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc716c4e-9319-472f-87ae-ad09d25d99ac"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231645Z:bc716c4e-9319-472f-87ae-ad09d25d99ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:44 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4523/providers/Microsoft.Sql/Servers/onesdk1590/databases/onesdk4822\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "300"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0b2db582-43c6-4f6a-aceb-5178a013a87b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:47.853Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b203c398-5b01-4148-adda-ea43a0ef3cdf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1181"
+ ],
+ "x-ms-correlation-request-id": [
+ "f585b8d5-59c1-48e2-af25-b3643ac5efe4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231648Z:f585b8d5-59c1-48e2-af25-b3643ac5efe4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvOTU4YmU0NjQtZDVmYy00NmFiLTk1ODMtZDZjNmQ5NjE3YmFmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0b2db582-43c6-4f6a-aceb-5178a013a87b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:46.057Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d2921e7f-5f6b-407f-af7a-5a198c3c83b2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-correlation-request-id": [
+ "952c414f-1bd3-484b-80c4-3f34392e6445"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231648Z:952c414f-1bd3-484b-80c4-3f34392e6445"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvOTU4YmU0NjQtZDVmYy00NmFiLTk1ODMtZDZjNmQ5NjE3YmFmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0b2db582-43c6-4f6a-aceb-5178a013a87b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:16:46.057Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "11a94219-2360-4e72-9a6a-07d49fee4116"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14919"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e412b53-3412-44e1-b3ee-866dd797c7b1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231658Z:1e412b53-3412-44e1-b3ee-866dd797c7b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:16:57 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579/operationResults/958be464-d5fc-46ab-9583-d6c6d9617baf?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazY4MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5OTE5L2RhdGFiYXNlcy9vbmVzZGs0NTc5L29wZXJhdGlvblJlc3VsdHMvOTU4YmU0NjQtZDVmYy00NmFiLTk1ODMtZDZjNmQ5NjE3YmFmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0b2db582-43c6-4f6a-aceb-5178a013a87b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6804/providers/Microsoft.Sql/servers/onesdk9919/databases/onesdk4579\",\r\n \"name\": \"onesdk4579\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f261661c-54c8-4b43-9704-52c0c54b8601\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-19T23:16:59.807Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:17:59.807Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "769"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "102e38a4-be92-4b8f-a337-dd35a59a5413"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14918"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ef6b14a-ba7b-4a57-b914-e089987f2ac0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231714Z:3ef6b14a-ba7b-4a57-b914-e089987f2ac0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4523?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ1MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-request-id": [
+ "1112b9e2-fa09-45e5-acb5-de6f1fa2f6e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "1112b9e2-fa09-45e5-acb5-de6f1fa2f6e8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231714Z:1112b9e2-fa09-45e5-acb5-de6f1fa2f6e8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
+ ],
+ "x-ms-request-id": [
+ "1afbaaa0-9f24-47a6-abdf-0dfb7d74c20e"
+ ],
+ "x-ms-correlation-request-id": [
+ "1afbaaa0-9f24-47a6-abdf-0dfb7d74c20e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231714Z:1afbaaa0-9f24-47a6-abdf-0dfb7d74c20e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14948"
+ ],
+ "x-ms-request-id": [
+ "362ebccc-02c7-4203-9b29-a6271eeb19b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "362ebccc-02c7-4203-9b29-a6271eeb19b3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231729Z:362ebccc-02c7-4203-9b29-a6271eeb19b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-request-id": [
+ "168d6187-bbcd-413c-8dc6-ffe3c8191d56"
+ ],
+ "x-ms-correlation-request-id": [
+ "168d6187-bbcd-413c-8dc6-ffe3c8191d56"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231744Z:168d6187-bbcd-413c-8dc6-ffe3c8191d56"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14946"
+ ],
+ "x-ms-request-id": [
+ "37f64986-185d-4c80-b535-1d981367f29c"
+ ],
+ "x-ms-correlation-request-id": [
+ "37f64986-185d-4c80-b535-1d981367f29c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231759Z:37f64986-185d-4c80-b535-1d981367f29c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:17:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-request-id": [
+ "02e7c140-16cf-46ea-9d5c-1608e7b1e901"
+ ],
+ "x-ms-correlation-request-id": [
+ "02e7c140-16cf-46ea-9d5c-1608e7b1e901"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231814Z:02e7c140-16cf-46ea-9d5c-1608e7b1e901"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:18:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-request-id": [
+ "31e6758e-d673-4863-bd02-9d141cebc596"
+ ],
+ "x-ms-correlation-request-id": [
+ "31e6758e-d673-4863-bd02-9d141cebc596"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231830Z:31e6758e-d673-4863-bd02-9d141cebc596"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:18:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-request-id": [
+ "fd4a3d11-c8ca-4ac0-b738-621e11d14e38"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd4a3d11-c8ca-4ac0-b738-621e11d14e38"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231845Z:fd4a3d11-c8ca-4ac0-b738-621e11d14e38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:18:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NTIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOVEl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-request-id": [
+ "e6748ebb-d3af-4861-8905-1d7eddb9547e"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6748ebb-d3af-4861-8905-1d7eddb9547e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231900Z:e6748ebb-d3af-4861-8905-1d7eddb9547e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:18:59 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6804?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazY4MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-request-id": [
+ "9fa65c69-ec64-4d68-acb8-dab6a4e8a8c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fa65c69-ec64-4d68-acb8-dab6a4e8a8c7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231900Z:9fa65c69-ec64-4d68-acb8-dab6a4e8a8c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:18:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-request-id": [
+ "ad024470-c74e-466e-948c-8b6857432ab2"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad024470-c74e-466e-948c-8b6857432ab2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231900Z:ad024470-c74e-466e-948c-8b6857432ab2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:18:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-request-id": [
+ "0d2ea5b5-d78a-43b5-927e-78b302bcfa70"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d2ea5b5-d78a-43b5-927e-78b302bcfa70"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231915Z:0d2ea5b5-d78a-43b5-927e-78b302bcfa70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:19:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-request-id": [
+ "6ef64f29-62ea-485a-90d3-039663049620"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ef64f29-62ea-485a-90d3-039663049620"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231930Z:6ef64f29-62ea-485a-90d3-039663049620"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:19:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-request-id": [
+ "19ba1c63-3b2b-4327-8691-98300efb6449"
+ ],
+ "x-ms-correlation-request-id": [
+ "19ba1c63-3b2b-4327-8691-98300efb6449"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231946Z:19ba1c63-3b2b-4327-8691-98300efb6449"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:19:45 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-request-id": [
+ "40bc8830-2cd2-48b8-a1f2-a4ef28a051b0"
+ ],
+ "x-ms-correlation-request-id": [
+ "40bc8830-2cd2-48b8-a1f2-a4ef28a051b0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232001Z:40bc8830-2cd2-48b8-a1f2-a4ef28a051b0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:20:00 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-request-id": [
+ "ce32577e-4a60-4f10-962d-576837d0350f"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce32577e-4a60-4f10-962d-576837d0350f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232016Z:ce32577e-4a60-4f10-962d-576837d0350f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:20:16 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "2ff61516-4319-4328-8dfd-34d84afee43a"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ff61516-4319-4328-8dfd-34d84afee43a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232031Z:2ff61516-4319-4328-8dfd-34d84afee43a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:20:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2ODA0LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJPREEwTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-request-id": [
+ "d13942a8-3818-49ed-ad61-fce3973a14ee"
+ ],
+ "x-ms-correlation-request-id": [
+ "d13942a8-3818-49ed-ad61-fce3973a14ee"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232046Z:d13942a8-3818-49ed-ad61-fce3973a14ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:20:46 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateDatabaseCopyV2": [
+ "onesdk4523",
+ "onesdk1590",
+ "onesdk4822",
+ "onesdk6804",
+ "onesdk9919",
+ "onesdk4579"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json
new file mode 100644
index 000000000000..a4c576ae3a83
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabase.json
@@ -0,0 +1,2809 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-request-id": [
+ "32be6e77-13e6-41c9-b03b-a321fcb0ee7d"
+ ],
+ "x-ms-correlation-request-id": [
+ "32be6e77-13e6-41c9-b03b-a321fcb0ee7d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230008Z:32be6e77-13e6-41c9-b03b-a321fcb0ee7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:00:08 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-request-id": [
+ "58ab793c-a639-42ff-8d12-b2b34cf3d4cd"
+ ],
+ "x-ms-correlation-request-id": [
+ "58ab793c-a639-42ff-8d12-b2b34cf3d4cd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230507Z:58ab793c-a639-42ff-8d12-b2b34cf3d4cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:07 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442\",\r\n \"name\": \"onesdk8442\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-request-id": [
+ "687c1bdf-57a7-4db4-b2b4-eff5afd7da26"
+ ],
+ "x-ms-correlation-request-id": [
+ "687c1bdf-57a7-4db4-b2b4-eff5afd7da26"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230009Z:687c1bdf-57a7-4db4-b2b4-eff5afd7da26"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:00:09 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-request-id": [
+ "02afda32-6f50-465a-8a19-8b68b13b1f7d"
+ ],
+ "x-ms-correlation-request-id": [
+ "02afda32-6f50-465a-8a19-8b68b13b1f7d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230009Z:02afda32-6f50-465a-8a19-8b68b13b1f7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:00:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:e3554189-0bb9-470a-9dfa-f53b43da32e9"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-correlation-request-id": [
+ "337616f9-fb63-444d-ae60-7e331e41df77"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230010Z:337616f9-fb63-444d-ae60-7e331e41df77"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:00:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7ce7fa2f-aca4-406b-8d7c-0ea95a829552"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1554' under resource group 'onesdk8442' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "944d5d33-3201-422d-8551-015825ba4010"
+ ],
+ "x-ms-correlation-request-id": [
+ "944d5d33-3201-422d-8551-015825ba4010"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230010Z:944d5d33-3201-422d-8551-015825ba4010"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:00:10 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3d7314b4-ac8e-4e1c-a969-e639debb6001"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554\",\r\n \"name\": \"onesdk1554\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1554.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "22b6a39b-0ffd-44b1-8439-f17ba60daa04"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7541179-525e-42fd-a765-20ad8a8ff50e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230113Z:b7541179-525e-42fd-a765-20ad8a8ff50e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:01:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "be6b2a94-93a4-44cf-9dbf-14dd2e868f0f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554\",\r\n \"name\": \"onesdk1554\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1554.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "50756dd7-fa21-45fa-afc0-fa7d8b2eb826"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ad598b0-f3d6-4ffc-b997-c0951a8f4ddd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230113Z:8ad598b0-f3d6-4ffc-b997-c0951a8f4ddd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:01:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "15c63060-b584-424d-a4de-3513c8ad8efe"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1554/databases/onesdk7221' under resource group 'onesdk8442' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "095493ae-eff1-4904-b4c9-43695e062bc5"
+ ],
+ "x-ms-correlation-request-id": [
+ "095493ae-eff1-4904-b4c9-43695e062bc5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230113Z:095493ae-eff1-4904-b4c9-43695e062bc5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:01:13 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "126"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e10f324a-4744-4ca8-8c65-af093f8f8d74"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:01:15.026-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "e27f5f05-19e4-45d5-8b4b-1fd97e818c24"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba560370-0fe5-4422-8559-d83597f0374a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230116Z:ba560370-0fe5-4422-8559-d83597f0374a"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:01:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e10f324a-4744-4ca8-8c65-af093f8f8d74"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "b80cdd70-efa1-43a7-aac9-0b546590697c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf273130-03b9-471f-8afd-fc8c3b4270b2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230117Z:cf273130-03b9-471f-8afd-fc8c3b4270b2"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:01:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e10f324a-4744-4ca8-8c65-af093f8f8d74"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "aee04877-fa91-4df8-b681-dc84604d48a4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "df650651-9dd7-48d3-bfb0-1fc641f27a6c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230148Z:df650651-9dd7-48d3-bfb0-1fc641f27a6c"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:01:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e10f324a-4744-4ca8-8c65-af093f8f8d74"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "2de456ad-4377-4041-abc7-0e8425c35e62"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8543c10-73c8-44d2-abd4-5a49c703956e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230203Z:e8543c10-73c8-44d2-abd4-5a49c703956e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e10f324a-4744-4ca8-8c65-af093f8f8d74"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:01:14.997Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f4004eab-fa0f-433f-8819-504fe3279b18"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "61500e9c-ea09-44e4-ac9d-e3cc5b443dc1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230219Z:61500e9c-ea09-44e4-ac9d-e3cc5b443dc1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/operationResults/e27f5f05-19e4-45d5-8b4b-1fd97e818c24?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvZTI3ZjVmMDUtMTllNC00NWQ1LThiNGItMWZkOTdlODE4YzI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e10f324a-4744-4ca8-8c65-af093f8f8d74"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221\",\r\n \"name\": \"onesdk7221\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3a4190e4-5628-4d7e-8b05-a1fb5fd2ce4a\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:01:15.467Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:12:25.68Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "820"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "9591de0b-7983-4e30-82ef-b99879b77f71"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "70ef7923-824e-416a-8d46-39b12f4f38ca"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230235Z:70ef7923-824e-416a-8d46-39b12f4f38ca"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:35 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "a823b776-7302-46f2-99c1-06d88db2c18b"
+ ],
+ "x-ms-correlation-request-id": [
+ "a823b776-7302-46f2-99c1-06d88db2c18b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230235Z:a823b776-7302-46f2-99c1-06d88db2c18b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:35 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-request-id": [
+ "35caaba6-f362-438d-8e18-8d2d842f51e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "35caaba6-f362-438d-8e18-8d2d842f51e6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230657Z:35caaba6-f362-438d-8e18-8d2d842f51e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:06:57 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809\",\r\n \"name\": \"onesdk3809\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-request-id": [
+ "4b2c8298-5dad-42ac-8ebe-9265cf393529"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b2c8298-5dad-42ac-8ebe-9265cf393529"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230237Z:4b2c8298-5dad-42ac-8ebe-9265cf393529"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:37 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "8e644bfc-be95-48d9-bae0-32eecb4433ea"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e644bfc-be95-48d9-bae0-32eecb4433ea"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230237Z:8e644bfc-be95-48d9-bae0-32eecb4433ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:fc8d85c4-c5b7-4169-87cb-5bae2a229781"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-correlation-request-id": [
+ "1acfb3be-fb10-4a32-b193-6baa57fe0fb3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230237Z:1acfb3be-fb10-4a32-b193-6baa57fe0fb3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "65456cc7-a488-459c-8c71-3207b3bc9f5d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1097' under resource group 'onesdk3809' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "6cc6fdd2-5bca-49c9-82fa-2b1b54c65b46"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cc6fdd2-5bca-49c9-82fa-2b1b54c65b46"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230237Z:6cc6fdd2-5bca-49c9-82fa-2b1b54c65b46"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:02:37 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0790701b-9182-400c-97f8-005ca3cdb69f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097\",\r\n \"name\": \"onesdk1097\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1097.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "457ca558-1668-4861-aa44-6ccc3076b33f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "1001a21b-d1e1-4907-afd3-097851bdb874"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230333Z:1001a21b-d1e1-4907-afd3-097851bdb874"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:03:32 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5af9ba0c-3332-4f51-ad38-40c509e32d57"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097\",\r\n \"name\": \"onesdk1097\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1097.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "c132204b-d55d-4e27-9573-c026ebb7d5d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "054292dd-9468-4ef8-9605-39065ea1d391"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230332Z:054292dd-9468-4ef8-9605-39065ea1d391"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:03:32 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "79e1e302-a0d5-4e6f-8fd9-a3a0593e0f96"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1097/databases/onesdk7221' under resource group 'onesdk3809' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "832803de-cbef-4c65-9e35-8f3d5c3f140b"
+ ],
+ "x-ms-correlation-request-id": [
+ "832803de-cbef-4c65-9e35-8f3d5c3f140b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230333Z:832803de-cbef-4c65-9e35-8f3d5c3f140b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:03:32 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/Servers/onesdk1554/databases/onesdk7221\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "301"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:03:34.364-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a036d120-d76b-4d24-9eb4-12f58532cf7f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "ecdc6fab-94a6-4159-8758-9d5eeeaa29f6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230335Z:ecdc6fab-94a6-4159-8758-9d5eeeaa29f6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:03:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b1cf21fc-1b26-4cd7-a4ef-1b711ec799d8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a989935-bb52-4780-82cc-fa06e0d17499"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230336Z:3a989935-bb52-4780-82cc-fa06e0d17499"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:03:36 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "72ddc271-ea85-4f66-b816-88a28b725ad3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-correlation-request-id": [
+ "eed22f98-ef49-438d-bf17-17be51b043e3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230347Z:eed22f98-ef49-438d-bf17-17be51b043e3"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:03:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ec91fecc-5e1d-4082-b36f-9ded8e36c65f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b168eb8-f9e0-4a93-9704-2be856dafa28"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230402Z:7b168eb8-f9e0-4a93-9704-2be856dafa28"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:04:02 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "15e20af5-77b5-4b48-b86c-8d2c8212e2ff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "82470e1f-e1c6-4909-886e-8f7c5991add0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230418Z:82470e1f-e1c6-4909-886e-8f7c5991add0"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:04:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "055bf981-d206-4993-8686-e685a5b95b6a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab9f1d6d-6935-4ea8-8fb1-1d0b0c3f6dff"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230434Z:ab9f1d6d-6935-4ea8-8fb1-1d0b0c3f6dff"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:04:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:03:34.567Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "8dccc06f-e3ca-4937-a60f-88585b14176a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "057e47db-10eb-49c4-82a2-ccc5c7940be7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230450Z:057e47db-10eb-49c4-82a2-ccc5c7940be7"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:04:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221/operationResults/a036d120-d76b-4d24-9eb4-12f58532cf7f?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDk3L2RhdGFiYXNlcy9vbmVzZGs3MjIxL29wZXJhdGlvblJlc3VsdHMvYTAzNmQxMjAtZDc2Yi00ZDI0LTllYjQtMTJmNTg1MzJjZjdmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b98b39f0-1dc6-4f00-ab89-f4bf4890df3f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097/databases/onesdk7221\",\r\n \"name\": \"onesdk7221\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"99d715f2-c2f2-4184-b396-0c778f268ecf\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:03:35.693Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:14:48.617Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "821"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2aa7c0d2-d5ed-4833-8b01-cbb5d5b2c7c4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "0113fb36-01f7-48c9-b3ff-9448fa201bf9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230505Z:0113fb36-01f7-48c9-b3ff-9448fa201bf9"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:05 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4MDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0dd0d935-866a-447b-9a4b-6982edc2c19f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3809/providers/Microsoft.Sql/servers/onesdk1097\",\r\n \"name\": \"onesdk1097\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1097.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "479"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2c9f68d4-fe0e-40ff-b55e-7f05bf396e9e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-correlation-request-id": [
+ "83dcc184-fddb-42aa-a5bd-8c3b8faa4672"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230506Z:83dcc184-fddb-42aa-a5bd-8c3b8faa4672"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:05 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg0NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU0L2RhdGFiYXNlcy9vbmVzZGs3MjIxL3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9dc56cab-b46d-4a11-b962-1c361cd42c3e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8442/providers/Microsoft.Sql/servers/onesdk1554/databases/onesdk7221/replicationLinks/ce83958e-2e52-47bc-9e4f-7a28f4096437\",\r\n \"name\": \"ce83958e-2e52-47bc-9e4f-7a28f4096437\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk1097\",\r\n \"partnerDatabase\": \"onesdk7221\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:04:15.87\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "614"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "e9844ba1-4db7-4d6a-b192-2fa8e04938fe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff439b6a-0c56-4df1-acad-db029b26aa61"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230507Z:ff439b6a-0c56-4df1-acad-db029b26aa61"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:06 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8442?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg0NDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-request-id": [
+ "31d1e875-0e35-4ce4-94b7-063aa4732eed"
+ ],
+ "x-ms-correlation-request-id": [
+ "31d1e875-0e35-4ce4-94b7-063aa4732eed"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230509Z:31d1e875-0e35-4ce4-94b7-063aa4732eed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
+ ],
+ "x-ms-request-id": [
+ "00219d30-6aa2-4939-b8f7-d0cb74e8fbcd"
+ ],
+ "x-ms-correlation-request-id": [
+ "00219d30-6aa2-4939-b8f7-d0cb74e8fbcd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230509Z:00219d30-6aa2-4939-b8f7-d0cb74e8fbcd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14948"
+ ],
+ "x-ms-request-id": [
+ "c2098aa3-5fbe-45ec-bd38-7b173502dce6"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2098aa3-5fbe-45ec-bd38-7b173502dce6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230525Z:c2098aa3-5fbe-45ec-bd38-7b173502dce6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-request-id": [
+ "da07c927-fc34-46a9-a50f-8cb5ef0424cf"
+ ],
+ "x-ms-correlation-request-id": [
+ "da07c927-fc34-46a9-a50f-8cb5ef0424cf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230540Z:da07c927-fc34-46a9-a50f-8cb5ef0424cf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14946"
+ ],
+ "x-ms-request-id": [
+ "4f71f8db-552c-4f89-a964-5cdca1a9d62b"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f71f8db-552c-4f89-a964-5cdca1a9d62b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230555Z:4f71f8db-552c-4f89-a964-5cdca1a9d62b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:05:54 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-request-id": [
+ "cd5823e6-9963-47c6-aa42-87e44b26fc7e"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd5823e6-9963-47c6-aa42-87e44b26fc7e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230611Z:cd5823e6-9963-47c6-aa42-87e44b26fc7e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:06:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-request-id": [
+ "a4b49b2b-d3fe-4c45-94a7-9309e34e2039"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4b49b2b-d3fe-4c45-94a7-9309e34e2039"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230626Z:a4b49b2b-d3fe-4c45-94a7-9309e34e2039"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:06:26 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-request-id": [
+ "faaf4d53-44be-4658-8e38-e170d74c5d18"
+ ],
+ "x-ms-correlation-request-id": [
+ "faaf4d53-44be-4658-8e38-e170d74c5d18"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230641Z:faaf4d53-44be-4658-8e38-e170d74c5d18"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:06:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NDQyLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRORFF5TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-request-id": [
+ "249579be-9a88-4bfd-b19b-94fe9de6bf54"
+ ],
+ "x-ms-correlation-request-id": [
+ "249579be-9a88-4bfd-b19b-94fe9de6bf54"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230656Z:249579be-9a88-4bfd-b19b-94fe9de6bf54"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:06:56 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3809?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4MDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-request-id": [
+ "cdfd66d6-e2a8-4f7b-a31a-5cd8147186ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "cdfd66d6-e2a8-4f7b-a31a-5cd8147186ad"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230658Z:cdfd66d6-e2a8-4f7b-a31a-5cd8147186ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:06:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-request-id": [
+ "fc549e2c-0def-4d43-91cd-cb30d9e28a40"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc549e2c-0def-4d43-91cd-cb30d9e28a40"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230659Z:fc549e2c-0def-4d43-91cd-cb30d9e28a40"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:06:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-request-id": [
+ "ba29384a-9eb3-49c2-b79f-c5c91f6221e5"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba29384a-9eb3-49c2-b79f-c5c91f6221e5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230714Z:ba29384a-9eb3-49c2-b79f-c5c91f6221e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:07:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-request-id": [
+ "a180a4b1-a734-4e15-b6da-cca45578a36b"
+ ],
+ "x-ms-correlation-request-id": [
+ "a180a4b1-a734-4e15-b6da-cca45578a36b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230729Z:a180a4b1-a734-4e15-b6da-cca45578a36b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:07:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-request-id": [
+ "b6af2d73-0b60-4b1e-89ef-20c6c712094d"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6af2d73-0b60-4b1e-89ef-20c6c712094d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230744Z:b6af2d73-0b60-4b1e-89ef-20c6c712094d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:07:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-request-id": [
+ "aaa021c6-97c5-4ad7-9c0f-e0f86b02804a"
+ ],
+ "x-ms-correlation-request-id": [
+ "aaa021c6-97c5-4ad7-9c0f-e0f86b02804a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230800Z:aaa021c6-97c5-4ad7-9c0f-e0f86b02804a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:07:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "a463967e-16fc-46b5-b299-c0a6fd72ddec"
+ ],
+ "x-ms-correlation-request-id": [
+ "a463967e-16fc-46b5-b299-c0a6fd72ddec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230815Z:a463967e-16fc-46b5-b299-c0a6fd72ddec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:08:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODA5LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPREE1TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-request-id": [
+ "607a6ce4-4d43-4201-b39a-bc0082418d4e"
+ ],
+ "x-ms-correlation-request-id": [
+ "607a6ce4-4d43-4201-b39a-bc0082418d4e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230830Z:607a6ce4-4d43-4201-b39a-bc0082418d4e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:08:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateSecondaryDatabase": [
+ "onesdk8442",
+ "onesdk1554",
+ "onesdk7221",
+ "onesdk3809",
+ "onesdk1097"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseV2.json
new file mode 100644
index 000000000000..df1e95e3e358
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestCreateSecondaryDatabaseV2.json
@@ -0,0 +1,2443 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-request-id": [
+ "1d1e08f4-c37a-43f1-9255-a295469162eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d1e08f4-c37a-43f1-9255-a295469162eb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230912Z:1d1e08f4-c37a-43f1-9255-a295469162eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:11 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-request-id": [
+ "7dc51050-ff8b-4355-807a-8802c58b3e76"
+ ],
+ "x-ms-correlation-request-id": [
+ "7dc51050-ff8b-4355-807a-8802c58b3e76"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231029Z:7dc51050-ff8b-4355-807a-8802c58b3e76"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:29 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823\",\r\n \"name\": \"onesdk9823\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "181"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-request-id": [
+ "148057bf-2fc5-4c73-bd34-e9c98d2d94ea"
+ ],
+ "x-ms-correlation-request-id": [
+ "148057bf-2fc5-4c73-bd34-e9c98d2d94ea"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230912Z:148057bf-2fc5-4c73-bd34-e9c98d2d94ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:11 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-request-id": [
+ "81c722be-1dec-458f-99c6-313ee849192a"
+ ],
+ "x-ms-correlation-request-id": [
+ "81c722be-1dec-458f-99c6-313ee849192a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230912Z:81c722be-1dec-458f-99c6-313ee849192a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:b1b97ef4-4db2-4077-be58-e8c81f46caa3"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8c37494-5dd1-4677-95ab-00b11d8aa905"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230912Z:a8c37494-5dd1-4677-95ab-00b11d8aa905"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "fe6ff0bf-9368-4d01-9d9a-0d403ccb78b9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5473' under resource group 'onesdk9823' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "2ca33ea1-73f0-4b26-b268-a687924c6a78"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ca33ea1-73f0-4b26-b268-a687924c6a78"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230913Z:2ca33ea1-73f0-4b26-b268-a687924c6a78"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:13 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0f397b16-3be6-471b-aee7-a2ddb0b997ef"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473\",\r\n \"name\": \"onesdk5473\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5473.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "ca777773-8d49-48a8-b7f2-1b785ad45dbd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3df51fd-7f9a-4cab-a17c-d722c27e2a75"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230918Z:c3df51fd-7f9a-4cab-a17c-d722c27e2a75"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5d6d32b9-baee-42da-984e-f59a57bc2a9a"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473\",\r\n \"name\": \"onesdk5473\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5473.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "93695d4e-4123-4c6d-b104-2c88a86cc4fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4546bcf-f9e7-406a-800b-f9db02abf150"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230918Z:f4546bcf-f9e7-406a-800b-f9db02abf150"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "96f219e9-33dd-430e-abed-15e760d4dbbe"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5473/databases/onesdk9885' under resource group 'onesdk9823' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "1f142c96-ed51-4526-811a-cb03433f58fb"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f142c96-ed51-4526-811a-cb03433f58fb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230918Z:1f142c96-ed51-4526-811a-cb03433f58fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:17 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "130"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5972e20b-538e-473a-ae87-07bbd6b02a60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:09:19.582Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "9c8ad148-5e68-49dd-be68-1ca327b308cb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f131b16-53e6-4c0e-b9fb-c359b66b27bd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230920Z:2f131b16-53e6-4c0e-b9fb-c359b66b27bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvN2VjMTk0ZTYtOTc5Ny00MzUxLTkzNTktZWNlOWI3YTdmMWY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5972e20b-538e-473a-ae87-07bbd6b02a60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:09:19.02Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "cd9987a2-dcc2-4251-8f11-419e1fce5ed9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a167d17-a217-40af-bc2e-451d44d2bcba"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230920Z:2a167d17-a217-40af-bc2e-451d44d2bcba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/operationResults/7ec194e6-9797-4351-9359-ece9b7a7f1f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvN2VjMTk0ZTYtOTc5Ny00MzUxLTkzNTktZWNlOWI3YTdmMWY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5972e20b-538e-473a-ae87-07bbd6b02a60"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885\",\r\n \"name\": \"onesdk9885\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3f45756a-6fb6-4b80-8290-0cff30354587\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:09:19.37Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:10:19.37Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "776"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "53f5b1ce-e3c2-425c-898c-ab5d739e6544"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "28f5da9a-f9bc-47dc-b9e0-db86ba08e48c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230950Z:28f5da9a-f9bc-47dc-b9e0-db86ba08e48c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:49 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-request-id": [
+ "d4bfa762-aca6-4fd2-9709-e5aad39de76b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4bfa762-aca6-4fd2-9709-e5aad39de76b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230950Z:d4bfa762-aca6-4fd2-9709-e5aad39de76b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:50 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-request-id": [
+ "aa854ba6-22b3-472b-8d21-cf9a1c5c7bb3"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa854ba6-22b3-472b-8d21-cf9a1c5c7bb3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231215Z:aa854ba6-22b3-472b-8d21-cf9a1c5c7bb3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:12:15 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550\",\r\n \"name\": \"onesdk3550\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "181"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-request-id": [
+ "203b5757-92f2-42bf-a01a-e56e0069ffca"
+ ],
+ "x-ms-correlation-request-id": [
+ "203b5757-92f2-42bf-a01a-e56e0069ffca"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230951Z:203b5757-92f2-42bf-a01a-e56e0069ffca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:50 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-request-id": [
+ "3d1a4bb7-f252-46d4-a00d-18157c763795"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d1a4bb7-f252-46d4-a00d-18157c763795"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230951Z:3d1a4bb7-f252-46d4-a00d-18157c763795"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:9388178e-9538-41ac-b076-e4f8cb525a17"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "2be25cfb-67ad-4087-bafa-9867c6895001"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230951Z:2be25cfb-67ad-4087-bafa-9867c6895001"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "265bc188-7b60-44e9-996e-f897a551eae6"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6381' under resource group 'onesdk3550' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "0d5cd3d4-0ea3-4bc1-bd45-ba159ad8656d"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d5cd3d4-0ea3-4bc1-bd45-ba159ad8656d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230951Z:0d5cd3d4-0ea3-4bc1-bd45-ba159ad8656d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:50 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "6c0df943-ffa3-4149-b88a-c3655b7101e2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381\",\r\n \"name\": \"onesdk6381\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6381.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "64e1ef2e-e7ff-424f-8189-9623f95857a2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f9d242b-4865-4d87-a44c-71fabff23834"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230958Z:0f9d242b-4865-4d87-a44c-71fabff23834"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:58 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "fdae9c9b-9ed7-4740-97df-7cb498819ea8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381\",\r\n \"name\": \"onesdk6381\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6381.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "75651036-45d3-452b-9924-5045f1229dec"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-correlation-request-id": [
+ "2dbc172c-6df7-4d7a-9d27-78b98ff05770"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230957Z:2dbc172c-6df7-4d7a-9d27-78b98ff05770"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:56 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3ca07147-5edd-4c01-a954-3588ce19b4c9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6381/databases/onesdk9885' under resource group 'onesdk3550' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "e11200e7-eb04-4af8-a2e5-c203e62a92ab"
+ ],
+ "x-ms-correlation-request-id": [
+ "e11200e7-eb04-4af8-a2e5-c203e62a92ab"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T230957Z:e11200e7-eb04-4af8-a2e5-c203e62a92ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:09:56 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/Servers/onesdk5473/databases/onesdk9885\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "305"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b348d8fe-3503-4844-9aee-cf2598d0cab2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:10:02.361Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "beb63a3e-cb34-4a30-ba2e-783cdb490795"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba5c7f48-f55a-4c48-a126-3c1af2bb1d26"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231002Z:ba5c7f48-f55a-4c48-a126-3c1af2bb1d26"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:02 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvOWZmZWU2MGQtNDY5ZS00NGU2LWE1MTctMGJiOTEwZjJhYWExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b348d8fe-3503-4844-9aee-cf2598d0cab2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:09:58.86Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2972467e-ba1b-4d18-b4ef-17eec290b904"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cdc0219-91ee-4875-8bf6-c6b437fea747"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231003Z:3cdc0219-91ee-4875-8bf6-c6b437fea747"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvOWZmZWU2MGQtNDY5ZS00NGU2LWE1MTctMGJiOTEwZjJhYWExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b348d8fe-3503-4844-9aee-cf2598d0cab2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:09:58.86Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ea9ccd4f-a29a-4883-99f0-b888675680f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "1608f748-b643-4bab-a730-b3823ca698c4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231013Z:1608f748-b643-4bab-a730-b3823ca698c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885/operationResults/9ffee60d-469e-44e6-a517-0bb910f2aaa1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2MzgxL2RhdGFiYXNlcy9vbmVzZGs5ODg1L29wZXJhdGlvblJlc3VsdHMvOWZmZWU2MGQtNDY5ZS00NGU2LWE1MTctMGJiOTEwZjJhYWExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b348d8fe-3503-4844-9aee-cf2598d0cab2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381/databases/onesdk9885\",\r\n \"name\": \"onesdk9885\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"256d1ebe-ceab-42fe-a446-8d4fe02d3cd9\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:10:17.78Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:11:17.78Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "766"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "0d90afa1-4766-4385-8741-51b11e7cfac8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d8e5dd7-0459-4086-a4d4-f51a2d13ad3c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231028Z:0d8e5dd7-0459-4086-a4d4-f51a2d13ad3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:28 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4f357a94-9515-45f0-8898-3e4cfe36e8b4"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3550/providers/Microsoft.Sql/servers/onesdk6381\",\r\n \"name\": \"onesdk6381\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6381.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "90a96bb0-47c4-4897-a816-9fbdc473c2db"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "25c3c6e1-974e-4d30-af0f-b9e7b1760d0f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231029Z:25c3c6e1-974e-4d30-af0f-b9e7b1760d0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:28 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk4MjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDczL2RhdGFiYXNlcy9vbmVzZGs5ODg1L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0fb28d95-a568-4f8f-8cf3-024ab2facc6f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9823/providers/Microsoft.Sql/servers/onesdk5473/databases/onesdk9885/replicationLinks/9ffee60d-469e-44e6-a517-0bb910f2aaa1\",\r\n \"name\": \"9ffee60d-469e-44e6-a517-0bb910f2aaa1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6381\",\r\n \"partnerDatabase\": \"onesdk9885\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:10:01.54Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "623"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "bd8bdc50-79be-4eb4-964c-5c66bbc2825a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "0442086a-d716-495c-8e32-e0692c17925e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231029Z:0442086a-d716-495c-8e32-e0692c17925e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:29 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9823?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk4MjM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-request-id": [
+ "e9f0c570-7cc9-4a1a-82ae-158d4859bda2"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9f0c570-7cc9-4a1a-82ae-158d4859bda2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231030Z:e9f0c570-7cc9-4a1a-82ae-158d4859bda2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-request-id": [
+ "30ea6131-6415-43b7-86a9-ecc89aa190a5"
+ ],
+ "x-ms-correlation-request-id": [
+ "30ea6131-6415-43b7-86a9-ecc89aa190a5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231030Z:30ea6131-6415-43b7-86a9-ecc89aa190a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "842fda26-fd86-4ce5-8af9-615577749e85"
+ ],
+ "x-ms-correlation-request-id": [
+ "842fda26-fd86-4ce5-8af9-615577749e85"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231045Z:842fda26-fd86-4ce5-8af9-615577749e85"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:45 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "440fee8e-5608-4c00-88c3-121abe909647"
+ ],
+ "x-ms-correlation-request-id": [
+ "440fee8e-5608-4c00-88c3-121abe909647"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231100Z:440fee8e-5608-4c00-88c3-121abe909647"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:10:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-request-id": [
+ "daf33bfc-dc9d-414e-a9e9-933782806819"
+ ],
+ "x-ms-correlation-request-id": [
+ "daf33bfc-dc9d-414e-a9e9-933782806819"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231115Z:daf33bfc-dc9d-414e-a9e9-933782806819"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:11:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-request-id": [
+ "c6efe45e-d534-418f-a466-354232e3abdf"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6efe45e-d534-418f-a466-354232e3abdf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231130Z:c6efe45e-d534-418f-a466-354232e3abdf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:11:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-request-id": [
+ "946d70fb-80c9-43ec-b297-23da1353851e"
+ ],
+ "x-ms-correlation-request-id": [
+ "946d70fb-80c9-43ec-b297-23da1353851e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231145Z:946d70fb-80c9-43ec-b297-23da1353851e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:11:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-request-id": [
+ "2cfd0ecc-8136-4f8e-9633-b9040e227305"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cfd0ecc-8136-4f8e-9633-b9040e227305"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231200Z:2cfd0ecc-8136-4f8e-9633-b9040e227305"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:12:00 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5ODIzLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPREl6TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-request-id": [
+ "55e2f0e8-45de-4ffd-8141-1ac07263c2da"
+ ],
+ "x-ms-correlation-request-id": [
+ "55e2f0e8-45de-4ffd-8141-1ac07263c2da"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231215Z:55e2f0e8-45de-4ffd-8141-1ac07263c2da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:12:15 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3550?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-request-id": [
+ "971dd4b9-a958-4bca-a346-81639303ed94"
+ ],
+ "x-ms-correlation-request-id": [
+ "971dd4b9-a958-4bca-a346-81639303ed94"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231216Z:971dd4b9-a958-4bca-a346-81639303ed94"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:12:16 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-request-id": [
+ "1943e5aa-459b-4d33-a540-ee99c9bde1eb"
+ ],
+ "x-ms-correlation-request-id": [
+ "1943e5aa-459b-4d33-a540-ee99c9bde1eb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231216Z:1943e5aa-459b-4d33-a540-ee99c9bde1eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:12:16 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-request-id": [
+ "89982bef-4b76-45c8-8bb4-d172379ae928"
+ ],
+ "x-ms-correlation-request-id": [
+ "89982bef-4b76-45c8-8bb4-d172379ae928"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231231Z:89982bef-4b76-45c8-8bb4-d172379ae928"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:12:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-request-id": [
+ "4b439c4b-6316-4f16-b7aa-252ba41c4462"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b439c4b-6316-4f16-b7aa-252ba41c4462"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231246Z:4b439c4b-6316-4f16-b7aa-252ba41c4462"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:12:46 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
+ ],
+ "x-ms-request-id": [
+ "42779019-5d3e-4b88-a6b1-e62d7fd6c368"
+ ],
+ "x-ms-correlation-request-id": [
+ "42779019-5d3e-4b88-a6b1-e62d7fd6c368"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231302Z:42779019-5d3e-4b88-a6b1-e62d7fd6c368"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:13:01 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14948"
+ ],
+ "x-ms-request-id": [
+ "00979a0a-6821-4272-b6a8-f6ecb501c1f5"
+ ],
+ "x-ms-correlation-request-id": [
+ "00979a0a-6821-4272-b6a8-f6ecb501c1f5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231317Z:00979a0a-6821-4272-b6a8-f6ecb501c1f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:13:16 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-request-id": [
+ "f5d82457-78a0-4a67-8cfc-90ab43d7260e"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5d82457-78a0-4a67-8cfc-90ab43d7260e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231332Z:f5d82457-78a0-4a67-8cfc-90ab43d7260e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:13:31 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14946"
+ ],
+ "x-ms-request-id": [
+ "757540e3-5728-4a71-9c49-90a67597e3b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "757540e3-5728-4a71-9c49-90a67597e3b3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231347Z:757540e3-5728-4a71-9c49-90a67597e3b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:13:46 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTUwLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVFV3TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-request-id": [
+ "6416656f-51f0-4665-b18d-471a086dd4ab"
+ ],
+ "x-ms-correlation-request-id": [
+ "6416656f-51f0-4665-b18d-471a086dd4ab"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T231402Z:6416656f-51f0-4665-b18d-471a086dd4ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:14:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateSecondaryDatabaseV2": [
+ "onesdk9823",
+ "onesdk5473",
+ "onesdk9885",
+ "onesdk3550",
+ "onesdk6381"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLink.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLink.json
new file mode 100644
index 000000000000..0ed75404f52b
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLink.json
@@ -0,0 +1,2911 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-request-id": [
+ "4db7ad0a-eab1-40bf-9766-ee5af00289b4"
+ ],
+ "x-ms-correlation-request-id": [
+ "4db7ad0a-eab1-40bf-9766-ee5af00289b4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232127Z:4db7ad0a-eab1-40bf-9766-ee5af00289b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:21:27 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14933"
+ ],
+ "x-ms-request-id": [
+ "4625beb3-fc5d-4ae1-be7a-dd519b47346a"
+ ],
+ "x-ms-correlation-request-id": [
+ "4625beb3-fc5d-4ae1-be7a-dd519b47346a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232541Z:4625beb3-fc5d-4ae1-be7a-dd519b47346a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:41 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904\",\r\n \"name\": \"onesdk1904\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1181"
+ ],
+ "x-ms-request-id": [
+ "5659270e-c00d-48f2-8248-3263e369b1d3"
+ ],
+ "x-ms-correlation-request-id": [
+ "5659270e-c00d-48f2-8248-3263e369b1d3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232129Z:5659270e-c00d-48f2-8248-3263e369b1d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:21:28 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-request-id": [
+ "a971a4aa-a449-4c09-ba30-28e3ee188d5a"
+ ],
+ "x-ms-correlation-request-id": [
+ "a971a4aa-a449-4c09-ba30-28e3ee188d5a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232129Z:a971a4aa-a449-4c09-ba30-28e3ee188d5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:21:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:13a7f16a-1406-4e58-8e27-f74c1d75060d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-correlation-request-id": [
+ "f930864d-a3f8-4626-8333-d6b056942b85"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232129Z:f930864d-a3f8-4626-8333-d6b056942b85"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:21:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a8882d93-3633-4ed2-b293-0b257a9dca24"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2003' under resource group 'onesdk1904' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "abd9f59e-422d-477b-8b2b-ded0b59d6bae"
+ ],
+ "x-ms-correlation-request-id": [
+ "abd9f59e-422d-477b-8b2b-ded0b59d6bae"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232130Z:abd9f59e-422d-477b-8b2b-ded0b59d6bae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:21:30 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dcbc1539-8a0e-44ba-811c-ea4e1bc9536d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003\",\r\n \"name\": \"onesdk2003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2003.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "94eed0c6-457c-44aa-b185-c01dc5060d06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a909bd3-a500-4e86-acd9-0ed58a6815a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232216Z:8a909bd3-a500-4e86-acd9-0ed58a6815a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:22:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9ea2f467-eac1-46bb-b522-e9c4182835c4"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003\",\r\n \"name\": \"onesdk2003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2003.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "c7aa6265-2770-4f20-919a-483d350d5d35"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "479f06f0-63b0-425e-a8c1-4a1d5aafa2d9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232215Z:479f06f0-63b0-425e-a8c1-4a1d5aafa2d9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:22:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "847eb7f7-359d-4944-9fe8-f14a17160eb3"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2003/databases/onesdk2524' under resource group 'onesdk1904' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "cee2c99a-edc0-4766-a372-ac89316c1215"
+ ],
+ "x-ms-correlation-request-id": [
+ "cee2c99a-edc0-4766-a372-ac89316c1215"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232215Z:cee2c99a-edc0-4766-a372-ac89316c1215"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:22:15 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "126"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "df753c5f-0f33-464b-a5ce-212c10c77b03"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:22:17.168-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "4d68c546-bd53-40da-a5f2-ceed3aa98cb4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-correlation-request-id": [
+ "c02710de-4043-45b5-8640-8035dec92a83"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232218Z:c02710de-4043-45b5-8640-8035dec92a83"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:22:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "df753c5f-0f33-464b-a5ce-212c10c77b03"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "4297e5dc-64de-4abe-89e8-b14371c7ab22"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e63288a-437b-4550-bb28-7992951edb60"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232219Z:9e63288a-437b-4550-bb28-7992951edb60"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:22:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "df753c5f-0f33-464b-a5ce-212c10c77b03"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "ec5dd14d-cd77-4004-93e2-abf73347a880"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-correlation-request-id": [
+ "28c64687-5940-439a-9f51-3a6fe71db2c8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232249Z:28c64687-5940-439a-9f51-3a6fe71db2c8"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:22:49 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "df753c5f-0f33-464b-a5ce-212c10c77b03"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "0611d8fb-9c8e-4f63-84db-c45e270b1947"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
+ ],
+ "x-ms-correlation-request-id": [
+ "21633dce-bcc9-4449-94b8-bdee6f875b23"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232305Z:21633dce-bcc9-4449-94b8-bdee6f875b23"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:05 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "df753c5f-0f33-464b-a5ce-212c10c77b03"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:22:17.137Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "8e42370f-b5d4-4f99-8317-ea55db8782b8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14948"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b1e38d1-84ea-457b-9bbc-d471dd9fa3ce"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232321Z:1b1e38d1-84ea-457b-9bbc-d471dd9fa3ce"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:21 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/operationResults/4d68c546-bd53-40da-a5f2-ceed3aa98cb4?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNGQ2OGM1NDYtYmQ1My00MGRhLWE1ZjItY2VlZDNhYTk4Y2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "df753c5f-0f33-464b-a5ce-212c10c77b03"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524\",\r\n \"name\": \"onesdk2524\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"6f37e908-827d-4f58-a8c5-54477f1b1db2\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:22:17.467Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:33:28.603Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "821"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "84cdcd54-46da-48de-9420-077ee791f2f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9ea17b1-51cb-4c68-aed6-3dfa7611eb06"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232337Z:a9ea17b1-51cb-4c68-aed6-3dfa7611eb06"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:37 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-request-id": [
+ "d99cddf1-2ce8-461d-b0c3-c1ba68c5cdd9"
+ ],
+ "x-ms-correlation-request-id": [
+ "d99cddf1-2ce8-461d-b0c3-c1ba68c5cdd9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232337Z:d99cddf1-2ce8-461d-b0c3-c1ba68c5cdd9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:36 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-request-id": [
+ "29ba001e-2bc0-4c69-80f3-af2724b0efa2"
+ ],
+ "x-ms-correlation-request-id": [
+ "29ba001e-2bc0-4c69-80f3-af2724b0efa2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232730Z:29ba001e-2bc0-4c69-80f3-af2724b0efa2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:27:30 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354\",\r\n \"name\": \"onesdk7354\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-request-id": [
+ "95c6d47b-1879-46b5-b2e5-06e4835b83a9"
+ ],
+ "x-ms-correlation-request-id": [
+ "95c6d47b-1879-46b5-b2e5-06e4835b83a9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232339Z:95c6d47b-1879-46b5-b2e5-06e4835b83a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:39 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-request-id": [
+ "015904ad-d1da-4267-9ab4-b466220f3ad4"
+ ],
+ "x-ms-correlation-request-id": [
+ "015904ad-d1da-4267-9ab4-b466220f3ad4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232339Z:015904ad-d1da-4267-9ab4-b466220f3ad4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:60c6254e-8375-4163-b996-6d6b123c36c7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e93ab22-d85a-42c9-8545-4729eda00702"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232339Z:9e93ab22-d85a-42c9-8545-4729eda00702"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "943352a9-cd3e-4650-bec1-5c6aa1eaa09d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3994' under resource group 'onesdk7354' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "56b3c8f6-65de-45bc-af4a-b62086d2f98c"
+ ],
+ "x-ms-correlation-request-id": [
+ "56b3c8f6-65de-45bc-af4a-b62086d2f98c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232339Z:56b3c8f6-65de-45bc-af4a-b62086d2f98c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:23:39 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "12f9f541-3c3d-4077-8a20-5b6682da95eb"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "eec1bf25-714c-4e4f-8ca9-5ea067bda16b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-correlation-request-id": [
+ "91b8fceb-7315-4363-b91e-2b8073cd36c0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232421Z:91b8fceb-7315-4363-b91e-2b8073cd36c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:24:20 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "d79ecf45-c98a-4e2c-9e6b-e7b283353d40"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b0960495-ef63-4f2f-b573-75eed2da7c08"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1182"
+ ],
+ "x-ms-correlation-request-id": [
+ "43a5086d-4fc8-4e70-8a28-92d5afd447a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232421Z:43a5086d-4fc8-4e70-8a28-92d5afd447a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:24:20 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "bd95b792-063c-4750-bb01-3684da40d165"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3994/databases/onesdk2524' under resource group 'onesdk7354' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "be2ea4bc-78bb-4c03-a069-c1137a64a8aa"
+ ],
+ "x-ms-correlation-request-id": [
+ "be2ea4bc-78bb-4c03-a069-c1137a64a8aa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232421Z:be2ea4bc-78bb-4c03-a069-c1137a64a8aa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:24:20 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/Servers/onesdk2003/databases/onesdk2524\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "301"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ddb6fa92-19bc-4a94-87bb-97ea66d5663c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:24:22.569-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "77e4cd03-4276-497a-a086-0e0b84c70f87"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1181"
+ ],
+ "x-ms-correlation-request-id": [
+ "6984fe55-d446-4965-9539-c33d925dbd90"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232423Z:6984fe55-d446-4965-9539-c33d925dbd90"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:24:23 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ddb6fa92-19bc-4a94-87bb-97ea66d5663c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e6779060-0a9a-4f42-92f7-385facec345c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f54b4e2-ecd6-4666-99ee-b98e28951a2f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232424Z:3f54b4e2-ecd6-4666-99ee-b98e28951a2f"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:24:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ddb6fa92-19bc-4a94-87bb-97ea66d5663c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3573b766-aea4-4560-b562-a34e46f1e176"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cb8bf79-231f-4f8f-a9b9-52af202ce699"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232435Z:4cb8bf79-231f-4f8f-a9b9-52af202ce699"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:24:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ddb6fa92-19bc-4a94-87bb-97ea66d5663c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d7bcae50-9c6e-4798-9958-a7387f7bc175"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-correlation-request-id": [
+ "26173826-4962-48d2-918e-1b9e1f99c42b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232451Z:26173826-4962-48d2-918e-1b9e1f99c42b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:24:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ddb6fa92-19bc-4a94-87bb-97ea66d5663c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "4535c850-0c24-4d11-b2f7-b68621b40bc8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca38d271-258e-4f29-bb2a-6c84b2b61a79"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232507Z:ca38d271-258e-4f29-bb2a-6c84b2b61a79"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ddb6fa92-19bc-4a94-87bb-97ea66d5663c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:24:22.96Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f099058d-3e30-41b3-906a-83afc6bba6d3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4d3059a-9b7b-4a63-a4c4-be22204695c5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232522Z:c4d3059a-9b7b-4a63-a4c4-be22204695c5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:22 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524/operationResults/77e4cd03-4276-497a-a086-0e0b84c70f87?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszOTk0L2RhdGFiYXNlcy9vbmVzZGsyNTI0L29wZXJhdGlvblJlc3VsdHMvNzdlNGNkMDMtNDI3Ni00OTdhLWEwODYtMGUwYjg0YzcwZjg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ddb6fa92-19bc-4a94-87bb-97ea66d5663c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994/databases/onesdk2524\",\r\n \"name\": \"onesdk2524\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1c963a19-431a-4461-93e3-d2863f39e523\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:24:23.743Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:35:25.597Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "821"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "e6379389-378e-45bc-98bd-bd45504929fa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e1e6d5b-fe3e-4e11-8954-529a7c3649bf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232538Z:3e1e6d5b-fe3e-4e11-8954-529a7c3649bf"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0cb7fc80-38f3-4f81-90ab-fbe87ed3aacc"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "479"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "610532b5-c44f-4ec4-8a2d-5e9e08d4f123"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-correlation-request-id": [
+ "5093ef20-cb8c-4fe9-a55a-8678e7848eda"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232539Z:5093ef20-cb8c-4fe9-a55a-8678e7848eda"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazczNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "44746292-b61e-497c-819b-013d96ed4fda"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7354/providers/Microsoft.Sql/servers/onesdk3994\",\r\n \"name\": \"onesdk3994\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3994.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "479"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "1b26f5fc-d4ed-4d8a-95ba-8b568f79c6eb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-correlation-request-id": [
+ "c488c016-693b-4c06-aea8-a91630671ee1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232540Z:c488c016-693b-4c06-aea8-a91630671ee1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:40 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3c69c607-619b-4c25-95c3-7574ca36fdac"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks/e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"name\": \"e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk3994\",\r\n \"partnerDatabase\": \"onesdk2524\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:25:04.023\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "615"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "e60aee16-3e76-41c8-bc94-ef8ff875b2c3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-correlation-request-id": [
+ "469bb86f-a2e0-4f52-bd4f-7ffbd04149ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232540Z:469bb86f-a2e0-4f52-bd4f-7ffbd04149ec"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazE5MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDAzL2RhdGFiYXNlcy9vbmVzZGsyNTI0L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4663da32-df2c-4509-893c-aa99d375707d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk1904/providers/Microsoft.Sql/servers/onesdk2003/databases/onesdk2524/replicationLinks/e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"name\": \"e3cdcb48-0cb3-42b8-bc1e-3bed4ceff1d0\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk3994\",\r\n \"partnerDatabase\": \"onesdk2524\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:25:04.023\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "615"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7836a29a-9559-4777-9ac7-5d76e749985f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-correlation-request-id": [
+ "55f973a0-5ebc-4e9f-9dd5-c5528f6e7de5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232540Z:55f973a0-5ebc-4e9f-9dd5-c5528f6e7de5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:40 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk1904?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazE5MDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-request-id": [
+ "7def5cd7-df8e-44f9-9327-9fc55138e44a"
+ ],
+ "x-ms-correlation-request-id": [
+ "7def5cd7-df8e-44f9-9327-9fc55138e44a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232543Z:7def5cd7-df8e-44f9-9327-9fc55138e44a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14932"
+ ],
+ "x-ms-request-id": [
+ "e3172aad-9098-4f87-8986-c7605aec1795"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3172aad-9098-4f87-8986-c7605aec1795"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232543Z:e3172aad-9098-4f87-8986-c7605aec1795"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-request-id": [
+ "391ae865-7a23-4411-849a-1ae4cac56b02"
+ ],
+ "x-ms-correlation-request-id": [
+ "391ae865-7a23-4411-849a-1ae4cac56b02"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232558Z:391ae865-7a23-4411-849a-1ae4cac56b02"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:25:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-request-id": [
+ "23b9435b-d615-4fc5-9e72-1903c941902b"
+ ],
+ "x-ms-correlation-request-id": [
+ "23b9435b-d615-4fc5-9e72-1903c941902b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232613Z:23b9435b-d615-4fc5-9e72-1903c941902b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:26:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-request-id": [
+ "acd7016f-ebd5-4f8b-8c00-b420254e7823"
+ ],
+ "x-ms-correlation-request-id": [
+ "acd7016f-ebd5-4f8b-8c00-b420254e7823"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232629Z:acd7016f-ebd5-4f8b-8c00-b420254e7823"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:26:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-request-id": [
+ "a160efd4-2679-46dc-8af7-72a919b52d2d"
+ ],
+ "x-ms-correlation-request-id": [
+ "a160efd4-2679-46dc-8af7-72a919b52d2d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232644Z:a160efd4-2679-46dc-8af7-72a919b52d2d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:26:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-request-id": [
+ "cb21ad5b-da9e-4e7b-be0f-a4879434a0b0"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb21ad5b-da9e-4e7b-be0f-a4879434a0b0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232659Z:cb21ad5b-da9e-4e7b-be0f-a4879434a0b0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:26:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-request-id": [
+ "be609f48-54ae-4344-8018-1b94b76f2f91"
+ ],
+ "x-ms-correlation-request-id": [
+ "be609f48-54ae-4344-8018-1b94b76f2f91"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232715Z:be609f48-54ae-4344-8018-1b94b76f2f91"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:27:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxOTA0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hPVEEwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-request-id": [
+ "e1a3d00e-3d68-4382-8085-ee8514b9de3e"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1a3d00e-3d68-4382-8085-ee8514b9de3e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232730Z:e1a3d00e-3d68-4382-8085-ee8514b9de3e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:27:30 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7354?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazczNTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-request-id": [
+ "b90c8ad2-fae8-4fd2-b19a-e0dfdabff3db"
+ ],
+ "x-ms-correlation-request-id": [
+ "b90c8ad2-fae8-4fd2-b19a-e0dfdabff3db"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232732Z:b90c8ad2-fae8-4fd2-b19a-e0dfdabff3db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:27:31 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "c74ca0e4-249d-49c4-ae89-9e66695ccefd"
+ ],
+ "x-ms-correlation-request-id": [
+ "c74ca0e4-249d-49c4-ae89-9e66695ccefd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232732Z:c74ca0e4-249d-49c4-ae89-9e66695ccefd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:27:31 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "04df39c5-7413-4c51-b88a-1e5a04f44ef9"
+ ],
+ "x-ms-correlation-request-id": [
+ "04df39c5-7413-4c51-b88a-1e5a04f44ef9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232747Z:04df39c5-7413-4c51-b88a-1e5a04f44ef9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:27:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-request-id": [
+ "2de2cc07-7e0f-48fc-a85b-f32deca00760"
+ ],
+ "x-ms-correlation-request-id": [
+ "2de2cc07-7e0f-48fc-a85b-f32deca00760"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232803Z:2de2cc07-7e0f-48fc-a85b-f32deca00760"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:28:02 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-request-id": [
+ "76d48c3c-a240-45c0-ba31-3c14cf136a28"
+ ],
+ "x-ms-correlation-request-id": [
+ "76d48c3c-a240-45c0-ba31-3c14cf136a28"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232818Z:76d48c3c-a240-45c0-ba31-3c14cf136a28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:28:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14919"
+ ],
+ "x-ms-request-id": [
+ "08477715-60ff-494c-8446-59dee83d3c08"
+ ],
+ "x-ms-correlation-request-id": [
+ "08477715-60ff-494c-8446-59dee83d3c08"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232833Z:08477715-60ff-494c-8446-59dee83d3c08"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:28:33 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14918"
+ ],
+ "x-ms-request-id": [
+ "44900092-5d06-4c12-8889-e9443482e495"
+ ],
+ "x-ms-correlation-request-id": [
+ "44900092-5d06-4c12-8889-e9443482e495"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232848Z:44900092-5d06-4c12-8889-e9443482e495"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:28:48 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14917"
+ ],
+ "x-ms-request-id": [
+ "384357e3-14be-4a1a-a94d-01e32eed038e"
+ ],
+ "x-ms-correlation-request-id": [
+ "384357e3-14be-4a1a-a94d-01e32eed038e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232904Z:384357e3-14be-4a1a-a94d-01e32eed038e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:29:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MzU0LU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNelUwTFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14916"
+ ],
+ "x-ms-request-id": [
+ "9a1dec5b-9f65-420e-af9e-0d30950e3ced"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a1dec5b-9f65-420e-af9e-0d30950e3ced"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T232919Z:9a1dec5b-9f65-420e-af9e-0d30950e3ced"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:29:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-GetReplicationLink": [
+ "onesdk1904",
+ "onesdk2003",
+ "onesdk2524",
+ "onesdk7354",
+ "onesdk3994"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLinkV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLinkV2.json
new file mode 100644
index 000000000000..f1c8ec95656f
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestGetReplicationLinkV2.json
@@ -0,0 +1,2551 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-request-id": [
+ "5fbc373f-de5c-4a21-8b6a-cee1fa99354e"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fbc373f-de5c-4a21-8b6a-cee1fa99354e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233000Z:5fbc373f-de5c-4a21-8b6a-cee1fa99354e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:00 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "d8eb08c2-352d-4f81-a559-54bed930795a"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8eb08c2-352d-4f81-a559-54bed930795a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233118Z:d8eb08c2-352d-4f81-a559-54bed930795a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:17 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818\",\r\n \"name\": \"onesdk5818\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "181"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-request-id": [
+ "7a3ec6a5-0dfe-4d2a-9b9f-ded81a43eea7"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a3ec6a5-0dfe-4d2a-9b9f-ded81a43eea7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233000Z:7a3ec6a5-0dfe-4d2a-9b9f-ded81a43eea7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:00 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-request-id": [
+ "5616b29c-f0ae-44a2-a50c-88cddbf5abc6"
+ ],
+ "x-ms-correlation-request-id": [
+ "5616b29c-f0ae-44a2-a50c-88cddbf5abc6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233000Z:5616b29c-f0ae-44a2-a50c-88cddbf5abc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:ebe44428-9160-428b-a353-181c95ce51d1"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-correlation-request-id": [
+ "5edaf375-fd1d-48e9-8cee-46fc8c71893c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233001Z:5edaf375-fd1d-48e9-8cee-46fc8c71893c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dc0c8f10-b34f-4d91-89b5-2ba79325d86a"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7181' under resource group 'onesdk5818' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "2735d719-f7fa-4f29-82ce-ce5fcea92561"
+ ],
+ "x-ms-correlation-request-id": [
+ "2735d719-f7fa-4f29-82ce-ce5fcea92561"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233001Z:2735d719-f7fa-4f29-82ce-ce5fcea92561"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:01 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b1673b9e-e0b1-411c-a404-334bd7293994"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181\",\r\n \"name\": \"onesdk7181\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7181.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "5e4dadbf-614e-44e4-825a-0df3c4a0da13"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-correlation-request-id": [
+ "be984ee0-fbf4-4b63-84cd-34103f4e6e5b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233008Z:be984ee0-fbf4-4b63-84cd-34103f4e6e5b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:07 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "edecf180-008a-4897-94c4-b516918ddb46"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181\",\r\n \"name\": \"onesdk7181\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7181.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "c1cc1964-816d-4263-897a-b30b3092d1f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "7caeec73-2489-412c-95c9-b6d212d534c3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233007Z:7caeec73-2489-412c-95c9-b6d212d534c3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:07 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "63aec438-70e4-4a10-a276-547dcd4a2b61"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7181/databases/onesdk9079' under resource group 'onesdk5818' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "21d0b2df-70a2-435e-93dd-2d5d75653320"
+ ],
+ "x-ms-correlation-request-id": [
+ "21d0b2df-70a2-435e-93dd-2d5d75653320"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233008Z:21d0b2df-70a2-435e-93dd-2d5d75653320"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:07 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "130"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3fe215b8-cd58-40e1-ab9a-60916c367367"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:30:09.653Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "aec90f8e-397d-40f0-bed3-6475dd248e5c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a9a4a41-90fc-46b7-80d9-b43933a10abe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233009Z:0a9a4a41-90fc-46b7-80d9-b43933a10abe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvYWE0M2ZjNGItMDFmNS00NTcyLThhZTEtODFhOTc2MDExZTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3fe215b8-cd58-40e1-ab9a-60916c367367"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-19T23:30:08.933Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "c654c9a9-72d3-41a2-9a38-36aa002dbf45"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-correlation-request-id": [
+ "078bcf83-b9e4-4677-a2eb-078c5dfb678b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233010Z:078bcf83-b9e4-4677-a2eb-078c5dfb678b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/operationResults/aa43fc4b-01f5-4572-8ae1-81a976011e1c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvYWE0M2ZjNGItMDFmNS00NTcyLThhZTEtODFhOTc2MDExZTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3fe215b8-cd58-40e1-ab9a-60916c367367"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079\",\r\n \"name\": \"onesdk9079\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fded1b07-3923-4099-aef5-cb52518cf516\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:30:09.213Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:31:09.213Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "778"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "52f442e1-2d55-4b50-9fca-10b4ee357407"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fbad3de-dbf5-4522-a595-f28dffcdaf9e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233040Z:0fbad3de-dbf5-4522-a595-f28dffcdaf9e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:40 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "02abd1b2-e7bf-4fe2-a063-cdc0931c7855"
+ ],
+ "x-ms-correlation-request-id": [
+ "02abd1b2-e7bf-4fe2-a063-cdc0931c7855"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233040Z:02abd1b2-e7bf-4fe2-a063-cdc0931c7855"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:40 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14914"
+ ],
+ "x-ms-request-id": [
+ "b536958a-c08e-4e8b-84fa-c83cad4cb1a1"
+ ],
+ "x-ms-correlation-request-id": [
+ "b536958a-c08e-4e8b-84fa-c83cad4cb1a1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233304Z:b536958a-c08e-4e8b-84fa-c83cad4cb1a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:33:04 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949\",\r\n \"name\": \"onesdk9949\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "181"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-request-id": [
+ "203c4a84-7fd5-4d62-8c8c-df8e5bf3932e"
+ ],
+ "x-ms-correlation-request-id": [
+ "203c4a84-7fd5-4d62-8c8c-df8e5bf3932e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233041Z:203c4a84-7fd5-4d62-8c8c-df8e5bf3932e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:40 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-request-id": [
+ "b25e8fa4-5b41-4bc8-91e4-2c9e9bc5d0db"
+ ],
+ "x-ms-correlation-request-id": [
+ "b25e8fa4-5b41-4bc8-91e4-2c9e9bc5d0db"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233041Z:b25e8fa4-5b41-4bc8-91e4-2c9e9bc5d0db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:ba23706b-ea82-4b9c-8fc9-170cb7ce85ed"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "c456837c-34d2-4a93-b347-155c1291cb21"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233041Z:c456837c-34d2-4a93-b347-155c1291cb21"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "461eb149-1363-4695-9146-105bf7413224"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9051' under resource group 'onesdk9949' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "2269bca3-a36a-4760-906d-7970e666d666"
+ ],
+ "x-ms-correlation-request-id": [
+ "2269bca3-a36a-4760-906d-7970e666d666"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233041Z:2269bca3-a36a-4760-906d-7970e666d666"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:40 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "6484c360-bd67-4cb9-b052-42a2597f8077"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "42b68ada-e387-4eb0-afce-cd4d48b73b06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-correlation-request-id": [
+ "175ef328-9fbe-417e-bff8-dc0244945538"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233046Z:175ef328-9fbe-417e-bff8-dc0244945538"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:46 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a66d57b4-0d27-436e-a807-a1cfd5d3e6f2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "dac0e9ca-bbe4-4d28-924e-50870c9a07ad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1182"
+ ],
+ "x-ms-correlation-request-id": [
+ "b03a7125-362c-4b1a-ac0e-dbb70454b370"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233046Z:b03a7125-362c-4b1a-ac0e-dbb70454b370"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:45 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "8753f0d3-3778-46e9-b322-58e9c4b15bf5"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9051/databases/onesdk9079' under resource group 'onesdk9949' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "e0ff889d-b6a9-4079-9de6-1e1e6db1f308"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0ff889d-b6a9-4079-9de6-1e1e6db1f308"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233046Z:e0ff889d-b6a9-4079-9de6-1e1e6db1f308"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:45 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/Servers/onesdk7181/databases/onesdk9079\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "305"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:30:50.671Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "fab1fde8-9aa8-47bd-8494-ab3640380856"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1181"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9f45dbc-9fe2-4d4a-9bcd-592c94a1c39e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233050Z:d9f45dbc-9fe2-4d4a-9bcd-592c94a1c39e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvMmFlNmIxZTItMWFkOC00ZDM1LTk4NTYtZWI4NDBmZGM1YzIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:30:47.25Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cfc0fa48-f641-4a7c-9939-208f9e1456e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b317139-f444-4ee4-b386-86bb5661c362"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233051Z:4b317139-f444-4ee4-b386-86bb5661c362"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:30:51 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvMmFlNmIxZTItMWFkOC00ZDM1LTk4NTYtZWI4NDBmZGM1YzIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-19T23:30:47.25Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "47652ef2-e119-4a75-92db-6d2a91bca6c9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5c93e81-84f1-4dc6-b4ae-ebf6e21b3cb7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233101Z:d5c93e81-84f1-4dc6-b4ae-ebf6e21b3cb7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:01 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079/operationResults/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDUxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L29wZXJhdGlvblJlc3VsdHMvMmFlNmIxZTItMWFkOC00ZDM1LTk4NTYtZWI4NDBmZGM1YzIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1dbd295f-e380-40ca-a5ea-0ddfebb6d2ed"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051/databases/onesdk9079\",\r\n \"name\": \"onesdk9079\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dc45f2ef-09c5-4b4a-9097-983ec069caaf\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:31:02.307Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-19T23:32:02.307Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "768"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "5254ef6c-a5a5-426f-b910-476154de71b1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0b4f5c1-d4c9-4495-bda8-8a30d202b5c2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233117Z:c0b4f5c1-d4c9-4495-bda8-8a30d202b5c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:16 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3a767b29-3c5a-461c-a4d4-24aead99a725"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b87bc1d4-4704-4cef-ae20-c776cd8eda09"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-correlation-request-id": [
+ "8adaaab5-0d7a-4bf5-b7e6-501020876f90"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233117Z:8adaaab5-0d7a-4bf5-b7e6-501020876f90"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:16 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5NDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2bef9c07-db7d-43fa-9514-8b5a80f42405"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9949/providers/Microsoft.Sql/servers/onesdk9051\",\r\n \"name\": \"onesdk9051\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9051.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b1261fed-509e-45d7-ac49-dd4b90086275"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3521566-77dc-4407-89ce-6a6634d961d4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233117Z:c3521566-77dc-4407-89ce-6a6634d961d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e7c100ae-630e-4e8c-8e07-5cbf8c90b925"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"name\": \"2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9051\",\r\n \"partnerDatabase\": \"onesdk9079\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:30:50.03Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "623"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "a0b38251-5132-400d-b0d6-df2142996776"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-correlation-request-id": [
+ "e89d48bf-1145-4ce6-8772-c478acc4cfe8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233117Z:e89d48bf-1145-4ce6-8772-c478acc4cfe8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU4MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MTgxL2RhdGFiYXNlcy9vbmVzZGs5MDc5L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "cb5a2cd6-274c-4772-bd86-d90d75ea9155"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5818/providers/Microsoft.Sql/servers/onesdk7181/databases/onesdk9079/replicationLinks/2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"name\": \"2ae6b1e2-1ad8-4d35-9856-eb840fdc5c21\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9051\",\r\n \"partnerDatabase\": \"onesdk9079\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:30:50.03Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "623"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "07903825-cbb6-4943-82b1-7e6798955dbb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b98b0b4-d246-4280-be32-0c885cd0262d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233118Z:2b98b0b4-d246-4280-be32-0c885cd0262d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5818?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU4MTg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-request-id": [
+ "8a2d6a18-0566-47b3-94e2-95628f16058e"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a2d6a18-0566-47b3-94e2-95628f16058e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233118Z:8a2d6a18-0566-47b3-94e2-95628f16058e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "a361b971-498f-4414-9c46-c579055f5cc8"
+ ],
+ "x-ms-correlation-request-id": [
+ "a361b971-498f-4414-9c46-c579055f5cc8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233118Z:a361b971-498f-4414-9c46-c579055f5cc8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-request-id": [
+ "64a526df-d383-409d-94bc-9badf96a0e05"
+ ],
+ "x-ms-correlation-request-id": [
+ "64a526df-d383-409d-94bc-9badf96a0e05"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233134Z:64a526df-d383-409d-94bc-9badf96a0e05"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-request-id": [
+ "c6d6ca17-381b-4d75-9a86-748157345d37"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6d6ca17-381b-4d75-9a86-748157345d37"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233149Z:c6d6ca17-381b-4d75-9a86-748157345d37"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:31:48 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14919"
+ ],
+ "x-ms-request-id": [
+ "bf0a67d5-0a38-436d-ae56-75cedaa8eff2"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf0a67d5-0a38-436d-ae56-75cedaa8eff2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233204Z:bf0a67d5-0a38-436d-ae56-75cedaa8eff2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:32:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14918"
+ ],
+ "x-ms-request-id": [
+ "34024295-447c-419d-a08d-72810c63af92"
+ ],
+ "x-ms-correlation-request-id": [
+ "34024295-447c-419d-a08d-72810c63af92"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233219Z:34024295-447c-419d-a08d-72810c63af92"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:32:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14917"
+ ],
+ "x-ms-request-id": [
+ "ac84c4d0-2253-4002-a758-388db531b9b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac84c4d0-2253-4002-a758-388db531b9b6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233234Z:ac84c4d0-2253-4002-a758-388db531b9b6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:32:33 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14916"
+ ],
+ "x-ms-request-id": [
+ "aae7f9f8-a938-416d-9e61-999d4fae640e"
+ ],
+ "x-ms-correlation-request-id": [
+ "aae7f9f8-a938-416d-9e61-999d4fae640e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233249Z:aae7f9f8-a938-416d-9e61-999d4fae640e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:32:49 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1ODE4LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFPREU0TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14915"
+ ],
+ "x-ms-request-id": [
+ "2b6eed90-4483-431c-af29-cfe323b04e34"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b6eed90-4483-431c-af29-cfe323b04e34"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233304Z:2b6eed90-4483-431c-af29-cfe323b04e34"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:33:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9949?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5NDk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-request-id": [
+ "8965c5fa-ae2d-48b9-acbf-a5f7802025c2"
+ ],
+ "x-ms-correlation-request-id": [
+ "8965c5fa-ae2d-48b9-acbf-a5f7802025c2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233305Z:8965c5fa-ae2d-48b9-acbf-a5f7802025c2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:33:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14913"
+ ],
+ "x-ms-request-id": [
+ "75b365eb-c06c-47f6-af29-59c81784e876"
+ ],
+ "x-ms-correlation-request-id": [
+ "75b365eb-c06c-47f6-af29-59c81784e876"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233305Z:75b365eb-c06c-47f6-af29-59c81784e876"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:33:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14912"
+ ],
+ "x-ms-request-id": [
+ "f15ec4b3-ba42-4471-94a0-cc2cc86c968e"
+ ],
+ "x-ms-correlation-request-id": [
+ "f15ec4b3-ba42-4471-94a0-cc2cc86c968e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233320Z:f15ec4b3-ba42-4471-94a0-cc2cc86c968e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:33:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14911"
+ ],
+ "x-ms-request-id": [
+ "1b9ecd84-3563-484b-b974-7739013b8668"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b9ecd84-3563-484b-b974-7739013b8668"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233335Z:1b9ecd84-3563-484b-b974-7739013b8668"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:33:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14910"
+ ],
+ "x-ms-request-id": [
+ "38cf8ee2-98a6-44ca-8b67-c914be4d6f3e"
+ ],
+ "x-ms-correlation-request-id": [
+ "38cf8ee2-98a6-44ca-8b67-c914be4d6f3e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233350Z:38cf8ee2-98a6-44ca-8b67-c914be4d6f3e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:33:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14909"
+ ],
+ "x-ms-request-id": [
+ "ffc2dc70-76e5-46d7-bb5e-b4b3b1195270"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffc2dc70-76e5-46d7-bb5e-b4b3b1195270"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233405Z:ffc2dc70-76e5-46d7-bb5e-b4b3b1195270"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:34:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14908"
+ ],
+ "x-ms-request-id": [
+ "77a71a28-3a92-402c-97ba-daaf8b9991d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "77a71a28-3a92-402c-97ba-daaf8b9991d6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233420Z:77a71a28-3a92-402c-97ba-daaf8b9991d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:34:20 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14907"
+ ],
+ "x-ms-request-id": [
+ "0c9f6305-c1e7-4d0e-9c2f-8dd03bd3fe66"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c9f6305-c1e7-4d0e-9c2f-8dd03bd3fe66"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233435Z:0c9f6305-c1e7-4d0e-9c2f-8dd03bd3fe66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:34:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTQ5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVFE1TFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14906"
+ ],
+ "x-ms-request-id": [
+ "0577c519-f99a-4d26-a1d1-e37ff26c19b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "0577c519-f99a-4d26-a1d1-e37ff26c19b8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T233450Z:0577c519-f99a-4d26-a1d1-e37ff26c19b8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:34:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-GetReplicationLinkV2": [
+ "onesdk5818",
+ "onesdk7181",
+ "onesdk9079",
+ "onesdk9949",
+ "onesdk9051"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json
new file mode 100644
index 000000000000..88c92f639b0d
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabase.json
@@ -0,0 +1,3193 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-request-id": [
+ "9a6d3763-4c2f-4ecc-8c40-3530eb1400d5"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a6d3763-4c2f-4ecc-8c40-3530eb1400d5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235208Z:9a6d3763-4c2f-4ecc-8c40-3530eb1400d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:52:07 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-request-id": [
+ "f3ffa284-df8c-43c5-a7cb-c717882781d4"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3ffa284-df8c-43c5-a7cb-c717882781d4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235705Z:f3ffa284-df8c-43c5-a7cb-c717882781d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:04 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821\",\r\n \"name\": \"onesdk2821\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-request-id": [
+ "0cbb400b-0b47-4d08-bfb6-28a21b2d7d39"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cbb400b-0b47-4d08-bfb6-28a21b2d7d39"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235209Z:0cbb400b-0b47-4d08-bfb6-28a21b2d7d39"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:52:09 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-request-id": [
+ "9352ec4d-d36f-4ad9-8195-f7251faf4410"
+ ],
+ "x-ms-correlation-request-id": [
+ "9352ec4d-d36f-4ad9-8195-f7251faf4410"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235209Z:9352ec4d-d36f-4ad9-8195-f7251faf4410"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:52:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:4200f299-4126-4e40-8d09-28b122d9f4ae"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5ccff43-08ba-4cc8-ae5b-8e9a75cec1a0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235210Z:b5ccff43-08ba-4cc8-ae5b-8e9a75cec1a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:52:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a804a0ae-9e46-4bd6-8f79-e96564389cbe"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk475' under resource group 'onesdk2821' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "145"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "115c94e9-59d2-4eba-8b63-7e1d2607961e"
+ ],
+ "x-ms-correlation-request-id": [
+ "115c94e9-59d2-4eba-8b63-7e1d2607961e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235211Z:115c94e9-59d2-4eba-8b63-7e1d2607961e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:52:10 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b709f492-8505-4330-b003-6a1724523b56"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475\",\r\n \"name\": \"onesdk475\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk475.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "464"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "118730b2-91de-40b5-84b4-94065818102d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f0e2ac0-0e92-4492-8cb6-ae3b8c219154"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235301Z:1f0e2ac0-0e92-4492-8cb6-ae3b8c219154"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:53:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzU/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9571b6d6-2640-4d2b-83f4-2a194b354198"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475\",\r\n \"name\": \"onesdk475\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk475.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "89873dd2-46cd-491b-8e53-56642f33543d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a59382a-6bfd-4b01-8b96-01f1bbe2d6a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235301Z:8a59382a-6bfd-4b01-8b96-01f1bbe2d6a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:53:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dd097a5f-03d6-4609-befb-8a42c2474e24"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk475/databases/onesdk5033' under resource group 'onesdk2821' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "ace8a99e-874d-43a4-b2a9-c4d9221ff8de"
+ ],
+ "x-ms-correlation-request-id": [
+ "ace8a99e-874d-43a4-b2a9-c4d9221ff8de"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235301Z:ace8a99e-874d-43a4-b2a9-c4d9221ff8de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:53:00 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "126"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "74e92bdb-5f0a-46b7-87da-7d333f4513aa"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T16:53:02.754-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "82dcd537-12ba-4d39-915e-a9a74f1663a9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-correlation-request-id": [
+ "74fa586b-dab6-454a-b07d-84d06ace8e41"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235304Z:74fa586b-dab6-454a-b07d-84d06ace8e41"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:53:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "74e92bdb-5f0a-46b7-87da-7d333f4513aa"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f5718156-dd11-4992-86a9-4f52f4ea6a26"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "277f623d-ee09-4de4-bcab-b13b0a40d9c6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235304Z:277f623d-ee09-4de4-bcab-b13b0a40d9c6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:53:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "74e92bdb-5f0a-46b7-87da-7d333f4513aa"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "e7ed5b45-7125-4927-8f39-317772e17f0f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ab48806-dbd2-4fa8-b605-fa60c9e7dd01"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235335Z:4ab48806-dbd2-4fa8-b605-fa60c9e7dd01"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:53:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "74e92bdb-5f0a-46b7-87da-7d333f4513aa"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "cade7e78-d1bc-4cb2-bd14-3c4f4a95ae51"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-correlation-request-id": [
+ "346febc3-890d-4713-8d08-e69f94cfe5a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235351Z:346febc3-890d-4713-8d08-e69f94cfe5a8"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:53:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "74e92bdb-5f0a-46b7-87da-7d333f4513aa"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-19T23:53:02.74Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "6e930561-d331-4745-8ba6-a85eba6ddb42"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "858cb176-5524-43ac-8386-39d0b78c67e1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235407Z:858cb176-5524-43ac-8386-39d0b78c67e1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:54:06 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/operationResults/82dcd537-12ba-4d39-915e-a9a74f1663a9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvb3BlcmF0aW9uUmVzdWx0cy84MmRjZDUzNy0xMmJhLTRkMzktOTE1ZS1hOWE3NGYxNjYzYTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "74e92bdb-5f0a-46b7-87da-7d333f4513aa"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033\",\r\n \"name\": \"onesdk5033\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ef55d43f-954c-4829-ba7b-193359586fa0\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:53:03.147Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:04:17.267Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "820"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "54af87ed-4f3f-4979-ba29-8dc9321c5807"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-correlation-request-id": [
+ "605a7548-9cd5-4623-85c5-3f5dd02775c0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235423Z:605a7548-9cd5-4623-85c5-3f5dd02775c0"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:54:23 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-request-id": [
+ "6e672da9-e18f-42c8-aaa7-c514d9926bad"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e672da9-e18f-42c8-aaa7-c514d9926bad"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235423Z:6e672da9-e18f-42c8-aaa7-c514d9926bad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:54:23 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-request-id": [
+ "a1d1eafa-abd7-412b-8241-36ab82a1c6b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1d1eafa-abd7-412b-8241-36ab82a1c6b8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235855Z:a1d1eafa-abd7-412b-8241-36ab82a1c6b8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:58:54 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "34"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890\",\r\n \"name\": \"onesdk3890\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "178"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-request-id": [
+ "1dee6712-4d91-48a7-87a7-7557c40a42d1"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dee6712-4d91-48a7-87a7-7557c40a42d1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235425Z:1dee6712-4d91-48a7-87a7-7557c40a42d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:54:25 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-request-id": [
+ "022ef8ac-57fd-4a8e-aeb6-ba5afa49b3ce"
+ ],
+ "x-ms-correlation-request-id": [
+ "022ef8ac-57fd-4a8e-aeb6-ba5afa49b3ce"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235425Z:022ef8ac-57fd-4a8e-aeb6-ba5afa49b3ce"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:54:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:e5dfddb5-f926-43ac-83a6-bec9f3942866"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "c43e0e37-8c3e-443a-8e3d-ba88b0f08563"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235425Z:c43e0e37-8c3e-443a-8e3d-ba88b0f08563"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:54:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2a5ab04b-b084-4bee-b933-b897d72af72c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6923' under resource group 'onesdk3890' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "2d7000b6-9f22-4269-b3c8-9f7ff27fe880"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d7000b6-9f22-4269-b3c8-9f7ff27fe880"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235425Z:2d7000b6-9f22-4269-b3c8-9f7ff27fe880"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:54:25 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7280e1dc-8f04-4db2-ad11-2de24ed5d593"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "dd6ce2ac-82af-4672-9f9f-456e8061cbbd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccd58e4e-a4cc-4c24-b958-959a547d9b60"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235511Z:ccd58e4e-a4cc-4c24-b958-959a547d9b60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:11 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2bece510-abb6-4fae-8b50-f331628d87a6"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d257ee2d-cafb-4ccb-b425-ae94793cc93b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "09aead74-67bf-40a9-b556-83650e1d2623"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235511Z:09aead74-67bf-40a9-b556-83650e1d2623"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:10 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9abd73b8-c45c-45c6-b8ca-7d6939435886"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6923/databases/onesdk5033' under resource group 'onesdk3890' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "cfb33098-7298-4bc2-9446-5c5fb50de748"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfb33098-7298-4bc2-9446-5c5fb50de748"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235511Z:cfb33098-7298-4bc2-9446-5c5fb50de748"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:10 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/Servers/onesdk475/databases/onesdk5033\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "300"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T16:55:12.55-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ab2c9399-5541-4fc9-9cd2-a66e1122cdc8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "63fd3d53-8f2f-4ecf-bbc4-ecaf254b2652"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235513Z:63fd3d53-8f2f-4ecf-bbc4-ecaf254b2652"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "30e9e6e0-c0cc-49ba-aa65-c76e340e73b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3e3f61e-f415-4786-b535-67cc77e1ed9b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235514Z:f3e3f61e-f415-4786-b535-67cc77e1ed9b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "cbf563d1-4a89-443d-a5d4-a76b2010b84e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba273167-e8d0-42c7-9510-a2502fd4f030"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235525Z:ba273167-e8d0-42c7-9510-a2502fd4f030"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "29d640c0-4660-40ff-96d1-2bbff038859d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-correlation-request-id": [
+ "31ceb3c9-f907-4d3c-89dd-b3a5178c4abc"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235541Z:31ceb3c9-f907-4d3c-89dd-b3a5178c4abc"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "acbb4c19-6713-4d32-9ca6-797400c9296b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab1496ff-3fa3-49c2-8f96-42026f279c43"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235557Z:ab1496ff-3fa3-49c2-8f96-42026f279c43"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:55:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "3db27e3b-6bfb-4fb9-aab6-20d601e53c6d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e38a07c-bff9-4256-8d00-52fd90d20e0f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235612Z:0e38a07c-bff9-4256-8d00-52fd90d20e0f"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:56:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "337a625d-4a9a-4408-a02a-5da6f85defc3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-correlation-request-id": [
+ "b75fa0ad-f8a1-4403-9dba-84d1f28adc0b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235628Z:b75fa0ad-f8a1-4403-9dba-84d1f28adc0b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:56:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-19T23:55:12.863Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "7d9f4e78-1490-47de-bb64-63c2e3a9264b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6828e13-3b6b-41cf-9e6f-94cc706802ab"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235644Z:e6828e13-3b6b-41cf-9e6f-94cc706802ab"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:56:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033/operationResults/ab2c9399-5541-4fc9-9cd2-a66e1122cdc8?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTIzL2RhdGFiYXNlcy9vbmVzZGs1MDMzL29wZXJhdGlvblJlc3VsdHMvYWIyYzkzOTktNTU0MS00ZmM5LTljZDItYTY2ZTExMjJjZGM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b63780f3-77fe-45c6-8cdb-4b3b89f3152f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923/databases/onesdk5033\",\r\n \"name\": \"onesdk5033\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8ede921c-10f8-4ec9-b0c2-9c7f8e783bf1\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-19T23:55:13.943Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:06:50.017Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "821"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "ce905f62-529d-47e2-a770-1e5a4521863f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-correlation-request-id": [
+ "98aa5b0b-47e0-41d3-9f5b-cd79f2461945"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235700Z:98aa5b0b-47e0-41d3-9f5b-cd79f2461945"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:56:59 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f40df16-3f6b-41a1-ba2e-8a8063a4e035"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "479"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "408b2252-464c-422f-96f7-50856063951c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7d38907-03a9-49a3-b995-6bafff924a5e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235700Z:d7d38907-03a9-49a3-b995-6bafff924a5e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0b267d9e-4a13-4d13-9770-9b81d01e17a2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "479"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "174ec36a-4c48-469d-a1fb-a9735e5ffe1d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c6c2115-0180-45ab-84aa-069dd8eb849a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235701Z:3c6c2115-0180-45ab-84aa-069dd8eb849a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM4OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a15fbe89-fddd-4c2e-84ed-f1a796346e82"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3890/providers/Microsoft.Sql/servers/onesdk6923\",\r\n \"name\": \"onesdk6923\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6923.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "479"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b4497162-6e7f-4f4a-88c5-83b389a06b33"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-correlation-request-id": [
+ "b96e4671-c893-4db7-bac8-566a907cfb45"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235702Z:b96e4671-c893-4db7-bac8-566a907cfb45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:02 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a3b5d080-340f-4ca9-ac15-818ec19c764c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"name\": \"adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6923\",\r\n \"partnerDatabase\": \"onesdk5033\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:55:54.167\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "614"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "e557d071-610e-484f-845d-9106bcbabf71"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-correlation-request-id": [
+ "38fa41ef-5885-4a33-a57f-9d1f9ca96231"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235701Z:38fa41ef-5885-4a33-a57f-9d1f9ca96231"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ea2d5399-473a-4a79-8794-d470be615325"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"name\": \"adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6923\",\r\n \"partnerDatabase\": \"onesdk5033\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:55:54.167\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "614"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "66246e49-0c52-488c-b674-128a3799cb23"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-correlation-request-id": [
+ "512a93c8-e05c-4aa4-b52a-c383a8b72ba9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235702Z:512a93c8-e05c-4aa4-b52a-c383a8b72ba9"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:02 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "6274b4bc-3ba4-43c6-8a8c-735be8dfae30"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"name\": \"adb7e074-9fb1-45c2-a024-98091f8f2b74\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6923\",\r\n \"partnerDatabase\": \"onesdk5033\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-19T23:55:54.167\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "614"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "a6b19723-57d2-4127-b51a-3fb89d9fea81"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f3365ef-388c-4133-9024-f3867f14554e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235703Z:5f3365ef-388c-4133-9024-f3867f14554e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:03 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2821/providers/Microsoft.Sql/servers/onesdk475/databases/onesdk5033/replicationLinks/adb7e074-9fb1-45c2-a024-98091f8f2b74?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NzUvZGF0YWJhc2VzL29uZXNkazUwMzMvcmVwbGljYXRpb25MaW5rcy9hZGI3ZTA3NC05ZmIxLTQ1YzItYTAyNC05ODA5MWY4ZjJiNzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "8e79bed0-a2e6-4914-8d5e-57cdd103d086"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "ecad56a7-037c-4115-b684-c03d15ce771a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "1.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "46321ce0-03c9-4cac-8ec9-24331d5ba0d2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235705Z:46321ce0-03c9-4cac-8ec9-24331d5ba0d2"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:05 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2821?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4MjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-request-id": [
+ "d7507b92-e653-42e9-b8d9-b51df2e65f60"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7507b92-e653-42e9-b8d9-b51df2e65f60"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235707Z:d7507b92-e653-42e9-b8d9-b51df2e65f60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-request-id": [
+ "321cf1c9-dc28-434d-971b-2893dd3655c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "321cf1c9-dc28-434d-971b-2893dd3655c7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235708Z:321cf1c9-dc28-434d-971b-2893dd3655c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:08 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-request-id": [
+ "47de3965-733e-4f47-bf3b-76c3640549d2"
+ ],
+ "x-ms-correlation-request-id": [
+ "47de3965-733e-4f47-bf3b-76c3640549d2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235723Z:47de3965-733e-4f47-bf3b-76c3640549d2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:22 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-request-id": [
+ "d0636e51-c495-4b7d-824a-df8a5f012afd"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0636e51-c495-4b7d-824a-df8a5f012afd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235738Z:d0636e51-c495-4b7d-824a-df8a5f012afd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:38 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-request-id": [
+ "36bf6c3b-257b-4e0e-a71e-48ef78f3be6c"
+ ],
+ "x-ms-correlation-request-id": [
+ "36bf6c3b-257b-4e0e-a71e-48ef78f3be6c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235754Z:36bf6c3b-257b-4e0e-a71e-48ef78f3be6c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:57:54 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-request-id": [
+ "7d0804ef-154e-4833-ac99-5aea493de679"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d0804ef-154e-4833-ac99-5aea493de679"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235809Z:7d0804ef-154e-4833-ac99-5aea493de679"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:58:08 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-request-id": [
+ "b2ff1d86-8cf8-4fdf-9cbf-bd8a5fe28550"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2ff1d86-8cf8-4fdf-9cbf-bd8a5fe28550"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235824Z:b2ff1d86-8cf8-4fdf-9cbf-bd8a5fe28550"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:58:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-request-id": [
+ "eb01d080-8f32-4fcf-b9c5-d632512e3336"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb01d080-8f32-4fcf-b9c5-d632512e3336"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235839Z:eb01d080-8f32-4fcf-b9c5-d632512e3336"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:58:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODIxLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPREl4TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-request-id": [
+ "193727b2-6243-4087-b565-2d05b685340f"
+ ],
+ "x-ms-correlation-request-id": [
+ "193727b2-6243-4087-b565-2d05b685340f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235855Z:193727b2-6243-4087-b565-2d05b685340f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:58:54 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3890?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM4OTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-request-id": [
+ "c8be8166-12c5-434f-983f-b349cd43aba4"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8be8166-12c5-434f-983f-b349cd43aba4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235857Z:c8be8166-12c5-434f-983f-b349cd43aba4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:58:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-request-id": [
+ "1a1f70e5-ecc6-487c-86ae-cb5af3ecd51a"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a1f70e5-ecc6-487c-86ae-cb5af3ecd51a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235857Z:1a1f70e5-ecc6-487c-86ae-cb5af3ecd51a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:58:57 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-request-id": [
+ "cd21d782-0c10-485c-a012-3039ef754309"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd21d782-0c10-485c-a012-3039ef754309"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235912Z:cd21d782-0c10-485c-a012-3039ef754309"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:59:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "1b9d8e0d-d09e-41b9-9d56-bbf2d20b18b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b9d8e0d-d09e-41b9-9d56-bbf2d20b18b1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235927Z:1b9d8e0d-d09e-41b9-9d56-bbf2d20b18b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:59:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "36300edf-693a-4b34-95bf-9e1c2d639d48"
+ ],
+ "x-ms-correlation-request-id": [
+ "36300edf-693a-4b34-95bf-9e1c2d639d48"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235943Z:36300edf-693a-4b34-95bf-9e1c2d639d48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:59:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-request-id": [
+ "c7efe702-85e6-4d2c-8563-3e5e21a11068"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7efe702-85e6-4d2c-8563-3e5e21a11068"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150819T235958Z:c7efe702-85e6-4d2c-8563-3e5e21a11068"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 19 Aug 2015 23:59:57 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-request-id": [
+ "a660258c-a385-406b-ab44-84ba8b6cff14"
+ ],
+ "x-ms-correlation-request-id": [
+ "a660258c-a385-406b-ab44-84ba8b6cff14"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000013Z:a660258c-a385-406b-ab44-84ba8b6cff14"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:00:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-request-id": [
+ "5d026262-a385-428d-9ad6-5ce6e47aa0bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d026262-a385-428d-9ad6-5ce6e47aa0bd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000029Z:5d026262-a385-428d-9ad6-5ce6e47aa0bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:00:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszODkwLU5PUlRIRVVST1BFIiwiam9iTG9jYXRpb24iOiJub3J0aGV1cm9wZSJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPRGt3TFU1UFVsUklSVlZTVDFCRklpd2lhbTlpVEc5allYUnBiMjRpT2lKdWIzSjBhR1YxY205d1pTSjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-request-id": [
+ "80081d0a-eb4b-46af-9e69-468c3e1765d1"
+ ],
+ "x-ms-correlation-request-id": [
+ "80081d0a-eb4b-46af-9e69-468c3e1765d1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000044Z:80081d0a-eb4b-46af-9e69-468c3e1765d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:00:43 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RemoveSecondaryDatabase": [
+ "onesdk2821",
+ "onesdk475",
+ "onesdk5033",
+ "onesdk3890",
+ "onesdk6923"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabaseV2.json
new file mode 100644
index 000000000000..a04209db2407
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseReplicationTests/TestRemoveSecondaryDatabaseV2.json
@@ -0,0 +1,2710 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "101"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-request-id": [
+ "85f7e972-c8d4-4d8f-abb2-961a7ebd08a9"
+ ],
+ "x-ms-correlation-request-id": [
+ "85f7e972-c8d4-4d8f-abb2-961a7ebd08a9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000218Z:85f7e972-c8d4-4d8f-abb2-961a7ebd08a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:18 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-request-id": [
+ "120a6216-f6de-4ecd-9bf0-b1b4d5c8509f"
+ ],
+ "x-ms-correlation-request-id": [
+ "120a6216-f6de-4ecd-9bf0-b1b4d5c8509f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000342Z:120a6216-f6de-4ecd-9bf0-b1b4d5c8509f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:42 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765\",\r\n \"name\": \"onesdk765\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "179"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-request-id": [
+ "c1aebcb1-ca88-4343-ac7b-84b0072aa906"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1aebcb1-ca88-4343-ac7b-84b0072aa906"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000218Z:c1aebcb1-ca88-4343-ac7b-84b0072aa906"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:18 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-request-id": [
+ "5c4c6ab0-d998-4d27-87f2-6c51ee63b8bb"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c4c6ab0-d998-4d27-87f2-6c51ee63b8bb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000218Z:5c4c6ab0-d998-4d27-87f2-6c51ee63b8bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:7331f270-79f8-4010-9316-98f6a3d24a3a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14948"
+ ],
+ "x-ms-correlation-request-id": [
+ "e72b4f5e-f025-49ab-859e-82aa1ce1d2af"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000218Z:e72b4f5e-f025-49ab-859e-82aa1ce1d2af"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "387d7228-d8d7-4eb1-b356-e618cd913bc6"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7531' under resource group 'onesdk765' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "145"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "c931ed72-aa46-4162-945b-003e3da89aa1"
+ ],
+ "x-ms-correlation-request-id": [
+ "c931ed72-aa46-4162-945b-003e3da89aa1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000219Z:c931ed72-aa46-4162-945b-003e3da89aa1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:18 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b00cfb3e-cccb-469b-89cc-410802aadcd3"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531\",\r\n \"name\": \"onesdk7531\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7531.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "468"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "c56070bb-9b25-443e-b98c-4a544d61287e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-correlation-request-id": [
+ "0774f343-33b9-406e-8a84-affb4b7508da"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000224Z:0774f343-33b9-406e-8a84-affb4b7508da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:23 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3c71bc41-4931-49fb-ab6f-334dab8ad3db"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531\",\r\n \"name\": \"onesdk7531\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7531.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "482"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "fac2b0dd-a73d-4905-8282-8abe838f7c7e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ec8b875-a599-4788-855b-d12e767a32e7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000224Z:7ec8b875-a599-4788-855b-d12e767a32e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:23 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "84e8992c-d887-469a-91ab-1e3c69fed435"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7531/databases/onesdk9931' under resource group 'onesdk765' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "f2ba23b2-e4c5-462c-b96f-36d05444bcdf"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2ba23b2-e4c5-462c-b96f-36d05444bcdf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000224Z:f2ba23b2-e4c5-462c-b96f-36d05444bcdf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:23 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Premium\",\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "130"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "63c69976-dd32-49a8-ac0b-6a36de90f8e8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-20T00:02:26.186Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "0066e3bb-c754-4ded-9100-19b0304cbeb6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1182"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f1ae316-5053-40b1-853c-f70ee4078b32"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000226Z:0f1ae316-5053-40b1-853c-f70ee4078b32"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvb3BlcmF0aW9uUmVzdWx0cy9lZTRlZjk2Yi0xYTBlLTQ1NDgtOWU0Zi02NjdiMDE5ZjRlNTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "63c69976-dd32-49a8-ac0b-6a36de90f8e8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE DATABASE\",\r\n \"startTime\": \"2015-08-20T00:02:25.483Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f51f343d-aa9e-4a51-9898-c7b378d702ff"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-correlation-request-id": [
+ "794708cc-e776-4d78-99f8-34469d38610a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000226Z:794708cc-e776-4d78-99f8-34469d38610a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:26 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/operationResults/ee4ef96b-1a0e-4548-9e4f-667b019f4e52?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvb3BlcmF0aW9uUmVzdWx0cy9lZTRlZjk2Yi0xYTBlLTQ1NDgtOWU0Zi02NjdiMDE5ZjRlNTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "63c69976-dd32-49a8-ac0b-6a36de90f8e8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931\",\r\n \"name\": \"onesdk9931\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ff608baf-eefd-4b3d-823b-3de2ed649254\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-20T00:02:25.79Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:03:25.79Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "775"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "4e1cf72d-bfd9-44a1-93df-d633fa73cc53"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f348f75-7e50-4bf0-adc2-3b7f1a30e90a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000257Z:4f348f75-7e50-4bf0-adc2-3b7f1a30e90a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:56 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-request-id": [
+ "cc7804ab-4f39-4674-bb59-8297c61b2e01"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc7804ab-4f39-4674-bb59-8297c61b2e01"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000257Z:cc7804ab-4f39-4674-bb59-8297c61b2e01"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:56 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-request-id": [
+ "e38e7112-5d42-41a4-9eb4-15722c7851b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "e38e7112-5d42-41a4-9eb4-15722c7851b9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000528Z:e38e7112-5d42-41a4-9eb4-15722c7851b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:05:28 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936\",\r\n \"name\": \"onesdk3936\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "181"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-request-id": [
+ "9cc8bbae-3d8d-4b71-b452-96cd15d04a00"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cc8bbae-3d8d-4b71-b452-96cd15d04a00"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000257Z:9cc8bbae-3d8d-4b71-b452-96cd15d04a00"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:57 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-request-id": [
+ "1cd27203-1841-42d2-9cac-ada9fc9786b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "1cd27203-1841-42d2-9cac-ada9fc9786b9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000257Z:1cd27203-1841-42d2-9cac-ada9fc9786b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:dfbece4b-1854-4498-a2f7-a8a6ca349508"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2f4e5ca-0f2a-4872-b216-809521247cec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000257Z:b2f4e5ca-0f2a-4872-b216-809521247cec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:56 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5c7c5034-6cc2-4c33-9fcb-b5f6e0a7c6df"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5438' under resource group 'onesdk3936' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "984ac9ff-fb0e-4273-aa4b-b6fc23bde8ab"
+ ],
+ "x-ms-correlation-request-id": [
+ "984ac9ff-fb0e-4273-aa4b-b6fc23bde8ab"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000257Z:984ac9ff-fb0e-4273-aa4b-b6fc23bde8ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:02:56 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "75d8dd2b-f541-484a-bf17-90e93105dc64"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "fa2bdaaa-7aff-492b-b9ad-68ad03dca4ad"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-correlation-request-id": [
+ "139c74e4-947d-4a19-9faa-d6679b761a32"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000302Z:139c74e4-947d-4a19-9faa-d6679b761a32"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:01 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "32d1d3c3-d50c-4df6-948c-0f26bca7fda7"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "e954502d-059d-4953-915a-9ba066b780f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1181"
+ ],
+ "x-ms-correlation-request-id": [
+ "80d116fa-7d95-4781-a499-c5cd1419e464"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000302Z:80d116fa-7d95-4781-a499-c5cd1419e464"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:01 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3a0d84a6-782e-46c4-85ca-04dfe159af84"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk5438/databases/onesdk9931' under resource group 'onesdk3936' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "6b8bf681-5ddc-4703-ba57-641f5b6c2d5a"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b8bf681-5ddc-4703-ba57-641f5b6c2d5a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000302Z:6b8bf681-5ddc-4703-ba57-641f5b6c2d5a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:01 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\",\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/Servers/onesdk7531/databases/onesdk9931\",\r\n \"createMode\": \"Secondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "304"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ecc182f0-b562-4589-92e0-aee4a7567d91"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-20T00:03:11.946Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dd8703de-6cd7-4b6a-ae22-501a276ae5ac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec8606c8-b1b4-4218-932b-f9d75562824a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000312Z:ec8606c8-b1b4-4218-932b-f9d75562824a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxL29wZXJhdGlvblJlc3VsdHMvYzhjMjEyM2QtZTFlNy00MWYzLThlMDAtNjM3M2E0ZDUyY2E2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ecc182f0-b562-4589-92e0-aee4a7567d91"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-20T00:03:03.01Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "95a3a436-bc79-4f57-9bc3-2f5d9438c5f2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-correlation-request-id": [
+ "e90623a9-77aa-4de2-bd60-dc41f670a77a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000312Z:e90623a9-77aa-4de2-bd60-dc41f670a77a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxL29wZXJhdGlvblJlc3VsdHMvYzhjMjEyM2QtZTFlNy00MWYzLThlMDAtNjM3M2E0ZDUyY2E2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ecc182f0-b562-4589-92e0-aee4a7567d91"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CREATE CONTINUOUS DATABASE COPY\",\r\n \"startTime\": \"2015-08-20T00:03:03.01Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "85"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "89e7bb40-3014-4f75-89e7-b0049607f1ae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fa96f3a-f648-4297-aa32-37445b535b65"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000322Z:9fa96f3a-f648-4297-aa32-37445b535b65"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:22 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931/operationResults/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs1NDM4L2RhdGFiYXNlcy9vbmVzZGs5OTMxL29wZXJhdGlvblJlc3VsdHMvYzhjMjEyM2QtZTFlNy00MWYzLThlMDAtNjM3M2E0ZDUyY2E2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ecc182f0-b562-4589-92e0-aee4a7567d91"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438/databases/onesdk9931\",\r\n \"name\": \"onesdk9931\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"7013d348-3d01-4c38-bf2e-d373b499a948\",\r\n \"edition\": \"Premium\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"P1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"536870912000\",\r\n \"creationDate\": \"2015-08-20T00:03:24.34Z\",\r\n \"currentServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveId\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-20T00:04:24.34Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "766"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "837edefc-4302-4633-8f76-83cb598bb7d0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd5777cd-6728-49a7-94a4-a557240dfef6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000338Z:dd5777cd-6728-49a7-94a4-a557240dfef6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5c7e9b40-426f-4633-ac5b-f16989b857c9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "6c6dfc2d-e82d-4eda-8b72-ba038860208d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b41e157-de2f-4c8d-9399-c14126a7e8ab"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000338Z:3b41e157-de2f-4c8d-9399-c14126a7e8ab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e1e5b6c6-c3de-4d6b-ad06-ce0ceeda9c5c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2500e921-2980-41eb-8897-4e1da4a31f7f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14933"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d1e01eb-eeed-4714-8f49-1b261c2b9a68"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000339Z:7d1e01eb-eeed-4714-8f49-1b261c2b9a68"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM5MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5ba6f8d8-71ae-4c86-a4cf-82fc3dce9517"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3936/providers/Microsoft.Sql/servers/onesdk5438\",\r\n \"name\": \"onesdk5438\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk5438.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "f600af00-d35d-4f57-a9f1-20830e9dd4d7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-correlation-request-id": [
+ "553e421a-dc8b-4f5a-99bd-e46fb0092e19"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000339Z:553e421a-dc8b-4f5a-99bd-e46fb0092e19"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5b3e3deb-7897-4efc-af96-3af577452354"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"name\": \"c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk5438\",\r\n \"partnerDatabase\": \"onesdk9931\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-20T00:03:11.287Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "623"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "ea70b09a-b8f1-4297-a073-7f36d1a0dcde"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfb81d24-8cc4-4e1b-9d54-ad1e1accb41b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000339Z:bfb81d24-8cc4-4e1b-9d54-ad1e1accb41b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c559bc33-a265-4de4-bae9-ad2c710d529d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"name\": \"c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk5438\",\r\n \"partnerDatabase\": \"onesdk9931\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-20T00:03:11.287Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "623"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "638e1da6-919d-46cf-9794-e4bafbe12264"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14932"
+ ],
+ "x-ms-correlation-request-id": [
+ "a496bf53-e74e-421b-bc5c-0378ce66092a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000339Z:a496bf53-e74e-421b-bc5c-0378ce66092a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "76b329a7-4972-4e6d-99fe-0aaf7491a87e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"name\": \"c8c2123d-e1e7-41f3-8e00-6373a4d52ca6\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Central US\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk5438\",\r\n \"partnerDatabase\": \"onesdk9931\",\r\n \"partnerLocation\": \"North Central US\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"Secondary\",\r\n \"startTime\": \"2015-08-20T00:03:11.287Z\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "623"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "76887391-6069-4b84-b73b-295b698497b4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b99fe2a-c62b-4749-b41e-ec1e5ad5f7fb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000339Z:9b99fe2a-c62b-4749-b41e-ec1e5ad5f7fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:39 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk765/providers/Microsoft.Sql/servers/onesdk7531/databases/onesdk9931/replicationLinks/c8c2123d-e1e7-41f3-8e00-6373a4d52ca6?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazc2NS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazc1MzEvZGF0YWJhc2VzL29uZXNkazk5MzEvcmVwbGljYXRpb25MaW5rcy9jOGMyMTIzZC1lMWU3LTQxZjMtOGUwMC02MzczYTRkNTJjYTY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c547a13a-3a58-4ff4-9c64-f5b1523d8442"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-request-id": [
+ "779f74ce-c1bb-41d7-9f34-cf480a0660be"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "1.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-correlation-request-id": [
+ "f53a23cb-3eaf-4de6-b21e-f13f3bbaf27f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000342Z:f53a23cb-3eaf-4de6-b21e-f13f3bbaf27f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:41 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk765?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2NT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-request-id": [
+ "b10dde7e-7b54-43a2-91f1-6136fb0a0f42"
+ ],
+ "x-ms-correlation-request-id": [
+ "b10dde7e-7b54-43a2-91f1-6136fb0a0f42"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000342Z:b10dde7e-7b54-43a2-91f1-6136fb0a0f42"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-request-id": [
+ "df8b2a33-3adc-40d1-a768-b26a2cafd8e3"
+ ],
+ "x-ms-correlation-request-id": [
+ "df8b2a33-3adc-40d1-a768-b26a2cafd8e3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000342Z:df8b2a33-3adc-40d1-a768-b26a2cafd8e3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "10607f32-b137-46eb-bdab-fd6469f9a018"
+ ],
+ "x-ms-correlation-request-id": [
+ "10607f32-b137-46eb-bdab-fd6469f9a018"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000357Z:10607f32-b137-46eb-bdab-fd6469f9a018"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:03:57 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-request-id": [
+ "f33c29af-3b07-4866-85b7-3c3132f89b85"
+ ],
+ "x-ms-correlation-request-id": [
+ "f33c29af-3b07-4866-85b7-3c3132f89b85"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000413Z:f33c29af-3b07-4866-85b7-3c3132f89b85"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:04:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14933"
+ ],
+ "x-ms-request-id": [
+ "1eb79629-2372-44d8-b71c-57c98ea66084"
+ ],
+ "x-ms-correlation-request-id": [
+ "1eb79629-2372-44d8-b71c-57c98ea66084"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000428Z:1eb79629-2372-44d8-b71c-57c98ea66084"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:04:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14932"
+ ],
+ "x-ms-request-id": [
+ "a7d68d67-bfbb-4364-8c0d-93a7a15d5121"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7d68d67-bfbb-4364-8c0d-93a7a15d5121"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000443Z:a7d68d67-bfbb-4364-8c0d-93a7a15d5121"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:04:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-request-id": [
+ "6dc77f71-58c1-4ec0-828a-f61965b24048"
+ ],
+ "x-ms-correlation-request-id": [
+ "6dc77f71-58c1-4ec0-828a-f61965b24048"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000458Z:6dc77f71-58c1-4ec0-828a-f61965b24048"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:04:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-request-id": [
+ "8fd59a9b-77cc-418e-862e-caad8916e165"
+ ],
+ "x-ms-correlation-request-id": [
+ "8fd59a9b-77cc-418e-862e-caad8916e165"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000513Z:8fd59a9b-77cc-418e-862e-caad8916e165"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:05:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjUtTk9SVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Im5vcnRoY2VudHJhbHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOalV0VGs5U1ZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltNXZjblJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-request-id": [
+ "5d86662b-215e-4294-8209-9eb1ef0530b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d86662b-215e-4294-8209-9eb1ef0530b3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000528Z:5d86662b-215e-4294-8209-9eb1ef0530b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:05:28 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3936?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-request-id": [
+ "8cb35a87-2ff8-4c4e-9e1a-506cff4c01e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cb35a87-2ff8-4c4e-9e1a-506cff4c01e6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000528Z:8cb35a87-2ff8-4c4e-9e1a-506cff4c01e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:05:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-request-id": [
+ "f4fb78d8-1423-436f-9cbe-b06451b9c31e"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4fb78d8-1423-436f-9cbe-b06451b9c31e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000528Z:f4fb78d8-1423-436f-9cbe-b06451b9c31e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:05:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-request-id": [
+ "45da8b93-9eff-42f5-a63d-1c99a1ebf4a5"
+ ],
+ "x-ms-correlation-request-id": [
+ "45da8b93-9eff-42f5-a63d-1c99a1ebf4a5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000543Z:45da8b93-9eff-42f5-a63d-1c99a1ebf4a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:05:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-request-id": [
+ "6cf12d7b-1d21-4a3a-a8d5-727d7055c853"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cf12d7b-1d21-4a3a-a8d5-727d7055c853"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000559Z:6cf12d7b-1d21-4a3a-a8d5-727d7055c853"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:05:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-request-id": [
+ "dd9580ba-e6a5-4149-8311-2d8cb205a15e"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd9580ba-e6a5-4149-8311-2d8cb205a15e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000614Z:dd9580ba-e6a5-4149-8311-2d8cb205a15e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:06:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "5accf9cc-d869-4a17-8895-2c96e7895810"
+ ],
+ "x-ms-correlation-request-id": [
+ "5accf9cc-d869-4a17-8895-2c96e7895810"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000629Z:5accf9cc-d869-4a17-8895-2c96e7895810"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:06:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "9d1390c4-8fb0-41f3-b63c-a8ff141edcaf"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d1390c4-8fb0-41f3-b63c-a8ff141edcaf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000644Z:9d1390c4-8fb0-41f3-b63c-a8ff141edcaf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:06:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-request-id": [
+ "0cd1248e-975e-4b9c-8f11-1d6e345a8a38"
+ ],
+ "x-ms-correlation-request-id": [
+ "0cd1248e-975e-4b9c-8f11-1d6e345a8a38"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000659Z:0cd1248e-975e-4b9c-8f11-1d6e345a8a38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:06:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTM2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVE0yTFU1UFVsUklRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnViM0owYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-request-id": [
+ "b7fdb9c0-83ab-44fe-82f4-bbf09dad2c75"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7fdb9c0-83ab-44fe-82f4-bbf09dad2c75"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150820T000714Z:b7fdb9c0-83ab-44fe-82f4-bbf09dad2c75"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 20 Aug 2015 00:07:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RemoveSecondaryDatabaseV2": [
+ "onesdk765",
+ "onesdk7531",
+ "onesdk9931",
+ "onesdk3936",
+ "onesdk5438"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e",
+ "TenantId": "d094cc24-ab4d-442f-a5f1-d190227b216b",
+ "Domain": "aztestorg114.ccsctp.net",
+ "User": "admin@aztestorg114.ccsctp.net"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopy.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopy.json
new file mode 100644
index 000000000000..9c34b1c39161
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopy.json
@@ -0,0 +1,3677 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-request-id": [
+ "6f3aa0da-2fdc-494d-849f-8b06f0c5ba97"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f3aa0da-2fdc-494d-849f-8b06f0c5ba97"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082122Z:6f3aa0da-2fdc-494d-849f-8b06f0c5ba97"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:22 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-request-id": [
+ "9c9c6708-7498-4828-a85f-60ef9be89e1a"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c9c6708-7498-4828-a85f-60ef9be89e1a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082755Z:9c9c6708-7498-4828-a85f-60ef9be89e1a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:54 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774\",\r\n \"name\": \"onesdk4774\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-request-id": [
+ "74f6fb23-067a-426f-a4c4-3ff87e7e1798"
+ ],
+ "x-ms-correlation-request-id": [
+ "74f6fb23-067a-426f-a4c4-3ff87e7e1798"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082122Z:74f6fb23-067a-426f-a4c4-3ff87e7e1798"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:22 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-request-id": [
+ "a5e62b68-e1ca-42f8-8bb4-d0bd090a0536"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5e62b68-e1ca-42f8-8bb4-d0bd090a0536"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082122Z:a5e62b68-e1ca-42f8-8bb4-d0bd090a0536"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:48e7c791-a2e1-47a1-880b-1923c463707d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14990"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e810e02-c644-4432-acb5-8be75b9ebc38"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082123Z:0e810e02-c644-4432-acb5-8be75b9ebc38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "8b853e20-6a73-444c-89c7-accf42c46566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6448' under resource group 'onesdk4774' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "da3a8651-0461-48d3-a487-23079a518054"
+ ],
+ "x-ms-correlation-request-id": [
+ "da3a8651-0461-48d3-a487-23079a518054"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082123Z:da3a8651-0461-48d3-a487-23079a518054"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:23 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7c9dce08-4466-485d-8251-591f6b8b9082"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "04e22f59-7891-413a-aa2c-5d6038ab9556"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
+ "x-ms-correlation-request-id": [
+ "f797f6c6-f4c6-409f-8fad-6ca8f6c5f8a1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082213Z:f797f6c6-f4c6-409f-8fad-6ca8f6c5f8a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "61e90fdc-ab86-4f31-8ca3-f27e362239e9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "acac9565-fa83-4ded-81c2-d25dc8b7dcd0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea2fa2cb-805f-44ed-84ab-6bcb152a5549"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082415Z:ea2fa2cb-805f-44ed-84ab-6bcb152a5549"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "fed3316b-8f71-4bbf-9e2e-57e7b639c14e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "ea3220a0-46f1-4d0b-814f-5567b09cfd54"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4ebd7fe-4617-4883-bcf9-090738d68e0b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082415Z:f4ebd7fe-4617-4883-bcf9-090738d68e0b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ebff31c2-6d32-4194-951f-eb447fe6fd62"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "4cd7ecda-6745-448a-a7f4-4e11e704fc5c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-correlation-request-id": [
+ "a46297c3-b86b-4e7b-885c-046010627628"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082604Z:a46297c3-b86b-4e7b-885c-046010627628"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "6437c158-095f-421e-b496-299787f5b63c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "593fc9df-c2a9-4c00-9183-2a8f605ab8cc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a18b672-c71b-474d-9563-c8124c41fa1b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082604Z:6a18b672-c71b-474d-9563-c8124c41fa1b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "db90e225-5163-4d62-94ce-80296429c739"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "5bc823a1-e05f-46c4-8026-fa99d4f3aa28"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-correlation-request-id": [
+ "25fb22b8-d2ac-4d42-9d83-a57d2ec860de"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082755Z:25fb22b8-d2ac-4d42-9d83-a57d2ec860de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:54 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "285c8526-305b-475a-ae20-63d4b7299d52"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448\",\r\n \"name\": \"onesdk6448\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6448.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "c89e1373-df43-469a-add6-0001c347ffcd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca99bdb1-cf2d-49a1-b619-0735ff457bb5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082213Z:ca99bdb1-cf2d-49a1-b619-0735ff457bb5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:13 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b12c94d8-d8e2-4c6f-aa1a-287aea78b8b1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6448/databases/onesdk1626' under resource group 'onesdk4774' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "4d3faadc-915e-41b3-ae7b-3321e4a884e1"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d3faadc-915e-41b3-ae7b-3321e4a884e1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082213Z:4d3faadc-915e-41b3-ae7b-3321e4a884e1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:13 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "135"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "679afa8d-d67a-41c5-8641-cda980057f8d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T01:22:14.301-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "e3be2825-e132-4e39-adbf-157d424377a1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "d50d77ca-2517-459a-b8bf-493cfd74e356"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082214Z:d50d77ca-2517-459a-b8bf-493cfd74e356"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "679afa8d-d67a-41c5-8641-cda980057f8d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "23fa7434-1c27-4cb0-abfc-ae14245cb34c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
+ ],
+ "x-ms-correlation-request-id": [
+ "7290098d-5a33-4fb1-98d5-b31448788ee5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082215Z:7290098d-5a33-4fb1-98d5-b31448788ee5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "679afa8d-d67a-41c5-8641-cda980057f8d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "67d8fd06-e5f0-414b-9fcd-dace3fd3cc72"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e045eb2-8e86-433b-a926-10fa723efd48"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082246Z:6e045eb2-8e86-433b-a926-10fa723efd48"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:46 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "679afa8d-d67a-41c5-8641-cda980057f8d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f88279d6-216c-4f87-88f6-85ca7d2f98b6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6fbf9e5-e8c7-4688-bfb9-d0cbdc7d384e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082302Z:a6fbf9e5-e8c7-4688-bfb9-d0cbdc7d384e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:01 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "679afa8d-d67a-41c5-8641-cda980057f8d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:22:14.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "30522881-1ea8-4088-a961-9d275af9bc72"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-correlation-request-id": [
+ "e66f7a2f-1ba2-4b37-a9b5-9bcd2a729b95"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082317Z:e66f7a2f-1ba2-4b37-a9b5-9bcd2a729b95"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626/operationResults/e3be2825-e132-4e39-adbf-157d424377a1?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGsxNjI2L29wZXJhdGlvblJlc3VsdHMvZTNiZTI4MjUtZTEzMi00ZTM5LWFkYmYtMTU3ZDQyNDM3N2ExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "679afa8d-d67a-41c5-8641-cda980057f8d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk1626\",\r\n \"name\": \"onesdk1626\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ebcd0b01-279b-4431-ac32-1ee0aa949175\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:22:14.707Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:33:23.36Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "818"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "92609fab-9267-448f-b9f2-2e2293553e1c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-correlation-request-id": [
+ "99518d7f-1a0a-4740-be39-baecbf4c9e00"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082333Z:99518d7f-1a0a-4740-be39-baecbf4c9e00"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:32 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-request-id": [
+ "f2edd13e-0086-44de-887c-1ffa1f48c37b"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2edd13e-0086-44de-887c-1ffa1f48c37b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082334Z:f2edd13e-0086-44de-887c-1ffa1f48c37b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:33 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-request-id": [
+ "ec652e55-4983-44ae-9437-32b9e204e7fe"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec652e55-4983-44ae-9437-32b9e204e7fe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082941Z:ec652e55-4983-44ae-9437-32b9e204e7fe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:40 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579\",\r\n \"name\": \"onesdk3579\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-request-id": [
+ "b18d6105-2415-455d-b70f-4de1401bd21e"
+ ],
+ "x-ms-correlation-request-id": [
+ "b18d6105-2415-455d-b70f-4de1401bd21e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082334Z:b18d6105-2415-455d-b70f-4de1401bd21e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:33 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-request-id": [
+ "bd9afaf7-9b55-4bc4-bac9-f992d63dd547"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd9afaf7-9b55-4bc4-bac9-f992d63dd547"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082334Z:bd9afaf7-9b55-4bc4-bac9-f992d63dd547"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:33 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:112a7a0e-61ea-49ed-8504-9dd88d1eb6ef"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbd1d4ac-946c-4b2c-b602-3960268c16be"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082334Z:bbd1d4ac-946c-4b2c-b602-3960268c16be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7ebd45aa-cd9a-4f2d-829f-76c260a4617f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4673' under resource group 'onesdk3579' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "441dab49-adaf-4575-9516-a9f5eb53e2a7"
+ ],
+ "x-ms-correlation-request-id": [
+ "441dab49-adaf-4575-9516-a9f5eb53e2a7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082334Z:441dab49-adaf-4575-9516-a9f5eb53e2a7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:33 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "60ba666c-0aeb-41d8-a3f5-320295c29f2d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673\",\r\n \"name\": \"onesdk4673\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4673.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "27ca6842-f488-4394-b5be-363ed7191ab9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "53d0f613-09c2-43ad-a84a-fd9c37fbc9ba"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082604Z:53d0f613-09c2-43ad-a84a-fd9c37fbc9ba"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4d7f662a-f3ef-4581-bf1e-a981901aab13"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673\",\r\n \"name\": \"onesdk4673\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4673.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "5112a1f8-1481-476c-8dda-f2f5a1d7f393"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-correlation-request-id": [
+ "1bbb1289-4e9d-4563-bc05-1d7214586ca9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082415Z:1bbb1289-4e9d-4563-bc05-1d7214586ca9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c537db19-e545-407b-ac5c-0c0d8269e263"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6448/databases/onesdk846' under resource group 'onesdk4774' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "51dcc8b2-e13a-4170-9bbe-3fc5d8ec668c"
+ ],
+ "x-ms-correlation-request-id": [
+ "51dcc8b2-e13a-4170-9bbe-3fc5d8ec668c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082415Z:51dcc8b2-e13a-4170-9bbe-3fc5d8ec668c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:15 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/Servers/onesdk6448/databases/onesdk1626\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:24:16.636-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "e8806be1-ce7d-439e-9019-18efc99da8f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-correlation-request-id": [
+ "406e117c-fbca-406e-8d18-d72fc06b29db"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082417Z:406e117c-fbca-406e-8d18-d72fc06b29db"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:16.527Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "6a7d835a-4ed2-42f4-897d-a5a5fad35e10"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7f20140-81b5-4fce-9875-bad95a2b542b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082417Z:f7f20140-81b5-4fce-9875-bad95a2b542b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f9560280-4bb3-438c-83ec-7fed4c0594f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "68fed7a1-95da-43dd-8c55-d9ce1e5bb79c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082428Z:68fed7a1-95da-43dd-8c55-d9ce1e5bb79c"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "54dd1ddb-0a5f-40d9-a4fd-625da2249402"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "799042a6-6e1b-406f-b703-5ecf70b8301b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082444Z:799042a6-6e1b-406f-b703-5ecf70b8301b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "29e27ae8-ae1e-4a90-88cd-cc10fdf0fc54"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "932bee03-10ee-4eb8-ac48-02e085f9156b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082500Z:932bee03-10ee-4eb8-ac48-02e085f9156b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b6afba57-57ac-43fa-b0e0-74a595c0d9c8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcfb4d5e-a4f6-4f9f-ac24-6c4722cee3d8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082516Z:fcfb4d5e-a4f6-4f9f-ac24-6c4722cee3d8"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:25:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "4dcbc17c-49ba-47c6-91f2-4c542b155f56"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-correlation-request-id": [
+ "235c2390-ff26-4c2f-a29b-f971bbe8ecb0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082532Z:235c2390-ff26-4c2f-a29b-f971bbe8ecb0"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:25:32 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:24:17.56Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "bdda7fde-e905-4c32-8771-b7b220929506"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd8eae6b-3c51-40f7-9b4a-9b70b236a747"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082547Z:fd8eae6b-3c51-40f7-9b4a-9b70b236a747"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:25:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846/operationResults/e8806be1-ce7d-439e-9019-18efc99da8f9?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ3NzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NDQ4L2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy9lODgwNmJlMS1jZTdkLTQzOWUtOTAxOS0xOGVmYzk5ZGE4Zjk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "708cc8ab-d0dc-4915-91be-63f60abdc86e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/servers/onesdk6448/databases/onesdk846\",\r\n \"name\": \"onesdk846\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1379781f-0975-42de-abe8-0fefbaf6477f\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-07T08:24:18.543Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:36:01.42Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "819"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "c6f73c69-d6a8-45a9-b7d3-6f7308a05f83"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-correlation-request-id": [
+ "6817071d-bbd4-4394-befb-61fbce15ef49"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082603Z:6817071d-bbd4-4394-befb-61fbce15ef49"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:02 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c5b87bee-257e-41ce-af10-f5477da1ccd4"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4673/databases/onesdk846' under resource group 'onesdk3579' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "1b2d2ccf-eb4d-4ac9-adbd-e583286480a5"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b2d2ccf-eb4d-4ac9-adbd-e583286480a5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082604Z:1b2d2ccf-eb4d-4ac9-adbd-e583286480a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:04 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4774/providers/Microsoft.Sql/Servers/onesdk6448/databases/onesdk1626\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "270"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:26:06.94-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "182d09b4-6046-4bcb-9f86-03c3dd62f106"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-correlation-request-id": [
+ "70d301ed-56b7-426b-8bec-f116f4e04643"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082607Z:70d301ed-56b7-426b-8bec-f116f4e04643"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f4a38507-6e8a-46fe-9e37-2ad94a44aaf7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "ddfef490-8b1d-400c-936f-6817bfd8b9b9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082608Z:ddfef490-8b1d-400c-936f-6817bfd8b9b9"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "718a77b7-1d8e-40e9-9377-5a0f9662de08"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "08060932-1936-4695-b170-5e595df227a6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082619Z:08060932-1936-4695-b170-5e595df227a6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "92cf05b7-13d5-431c-9e31-f8670fcb423d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ea5af7d-add4-441a-ba9e-7c39eecff818"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082635Z:9ea5af7d-add4-441a-ba9e-7c39eecff818"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a836ff34-74e5-4e1e-ad56-19a545a6637a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c1e651e-1661-46cb-af7c-6acd9647aea1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082651Z:8c1e651e-1661-46cb-af7c-6acd9647aea1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "ff742259-46a8-476b-9476-9b57d740c1ab"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-correlation-request-id": [
+ "684b1957-cdeb-4ccf-9751-ebc33b8dbd85"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082707Z:684b1957-cdeb-4ccf-9751-ebc33b8dbd85"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:06 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "28931580-980d-4366-a8a8-708db23765c4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "10c36b73-f62a-4503-8ee8-76c4f993009a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082723Z:10c36b73-f62a-4503-8ee8-76c4f993009a"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:23 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:26:07.05Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "ea09af17-10d0-422b-b88c-080370ae49f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f932634-e9e8-4117-8f52-b7f6f52d3ac5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082738Z:5f932634-e9e8-4117-8f52-b7f6f52d3ac5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:38 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846/operationResults/182d09b4-6046-4bcb-9f86-03c3dd62f106?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazM1NzkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NjczL2RhdGFiYXNlcy9vbmVzZGs4NDYvb3BlcmF0aW9uUmVzdWx0cy8xODJkMDliNC02MDQ2LTRiY2ItOWY4Ni0wM2MzZGQ2MmYxMDY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f871237-2d34-434e-bec9-e44c91b12275"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk3579/providers/Microsoft.Sql/servers/onesdk4673/databases/onesdk846\",\r\n \"name\": \"onesdk846\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0b645d84-6ec3-48e8-9b46-50e8ae932275\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-08-07T08:26:07.973Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:37:47.963Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "820"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d079f593-a201-4327-96e6-39dbce7c62b4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "db1693ae-8484-4205-924b-89f3c85a58fe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082754Z:db1693ae-8484-4205-924b-89f3c85a58fe"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:54 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4774?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ3NzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-request-id": [
+ "9427f2ed-d39f-4ba8-9462-f26a9060d862"
+ ],
+ "x-ms-correlation-request-id": [
+ "9427f2ed-d39f-4ba8-9462-f26a9060d862"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082755Z:9427f2ed-d39f-4ba8-9462-f26a9060d862"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-request-id": [
+ "d33001f9-5167-4518-b153-d998a9dd8a16"
+ ],
+ "x-ms-correlation-request-id": [
+ "d33001f9-5167-4518-b153-d998a9dd8a16"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082755Z:d33001f9-5167-4518-b153-d998a9dd8a16"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-request-id": [
+ "51d7c068-1b5b-46dc-bf57-99bc1a352de2"
+ ],
+ "x-ms-correlation-request-id": [
+ "51d7c068-1b5b-46dc-bf57-99bc1a352de2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082810Z:51d7c068-1b5b-46dc-bf57-99bc1a352de2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:10 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "93409a75-6a5b-4e29-b962-cd85494c22b5"
+ ],
+ "x-ms-correlation-request-id": [
+ "93409a75-6a5b-4e29-b962-cd85494c22b5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082825Z:93409a75-6a5b-4e29-b962-cd85494c22b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "490b55f5-fce0-4ad3-a359-069bfbee6784"
+ ],
+ "x-ms-correlation-request-id": [
+ "490b55f5-fce0-4ad3-a359-069bfbee6784"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082841Z:490b55f5-fce0-4ad3-a359-069bfbee6784"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:40 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-request-id": [
+ "a49c9587-6bf2-4982-a0c6-601954784902"
+ ],
+ "x-ms-correlation-request-id": [
+ "a49c9587-6bf2-4982-a0c6-601954784902"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082856Z:a49c9587-6bf2-4982-a0c6-601954784902"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-request-id": [
+ "bd06554d-b6c6-438f-9738-b6b734ceea36"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd06554d-b6c6-438f-9738-b6b734ceea36"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082911Z:bd06554d-b6c6-438f-9738-b6b734ceea36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-request-id": [
+ "d7227c0d-7034-46f0-89c6-e5a37e8a0a5d"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7227c0d-7034-46f0-89c6-e5a37e8a0a5d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082926Z:d7227c0d-7034-46f0-89c6-e5a37e8a0a5d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:26 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0Nzc0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOemMwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-request-id": [
+ "1c90d773-fbd3-4376-bf0d-55160238d080"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c90d773-fbd3-4376-bf0d-55160238d080"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082941Z:1c90d773-fbd3-4376-bf0d-55160238d080"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk3579?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazM1Nzk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-request-id": [
+ "3845272a-5a9c-4c6f-a9b9-c617b9d939e9"
+ ],
+ "x-ms-correlation-request-id": [
+ "3845272a-5a9c-4c6f-a9b9-c617b9d939e9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082941Z:3845272a-5a9c-4c6f-a9b9-c617b9d939e9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-request-id": [
+ "3ad6f577-ed3b-4fe4-8446-160b64f88d1c"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ad6f577-ed3b-4fe4-8446-160b64f88d1c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082941Z:3ad6f577-ed3b-4fe4-8446-160b64f88d1c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-request-id": [
+ "8531197f-a54d-4d96-ae69-8d0089f4a447"
+ ],
+ "x-ms-correlation-request-id": [
+ "8531197f-a54d-4d96-ae69-8d0089f4a447"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082956Z:8531197f-a54d-4d96-ae69-8d0089f4a447"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-request-id": [
+ "f697e231-b910-4683-bc46-b33557c3dfec"
+ ],
+ "x-ms-correlation-request-id": [
+ "f697e231-b910-4683-bc46-b33557c3dfec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083011Z:f697e231-b910-4683-bc46-b33557c3dfec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:30:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-request-id": [
+ "c1106818-be07-49b8-a6e4-f66f2b4441e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1106818-be07-49b8-a6e4-f66f2b4441e6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083027Z:c1106818-be07-49b8-a6e4-f66f2b4441e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:30:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-request-id": [
+ "afd7d7cc-b6c5-4122-a6be-b8f26f0dda1f"
+ ],
+ "x-ms-correlation-request-id": [
+ "afd7d7cc-b6c5-4122-a6be-b8f26f0dda1f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083042Z:afd7d7cc-b6c5-4122-a6be-b8f26f0dda1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:30:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-request-id": [
+ "1d29364c-ee61-4823-aa15-bd5671c5891d"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d29364c-ee61-4823-aa15-bd5671c5891d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083057Z:1d29364c-ee61-4823-aa15-bd5671c5891d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:30:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
+ ],
+ "x-ms-request-id": [
+ "1bf41c06-9da0-4d22-a896-d76b376fd80a"
+ ],
+ "x-ms-correlation-request-id": [
+ "1bf41c06-9da0-4d22-a896-d76b376fd80a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083112Z:1bf41c06-9da0-4d22-a896-d76b376fd80a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:31:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszNTc5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pOVGM1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14948"
+ ],
+ "x-ms-request-id": [
+ "c6067e6e-e996-4874-8f6e-680c64ae7c9a"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6067e6e-e996-4874-8f6e-680c64ae7c9a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083127Z:c6067e6e-e996-4874-8f6e-680c64ae7c9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:31:27 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateDatabaseCopy": [
+ "onesdk4774",
+ "onesdk6448",
+ "onesdk1626",
+ "onesdk3579",
+ "onesdk4673",
+ "onesdk846"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopyV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopyV2.json
new file mode 100644
index 000000000000..448923a6c13e
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateDatabaseCopyV2.json
@@ -0,0 +1,2087 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14988"
+ ],
+ "x-ms-request-id": [
+ "d1218424-5237-452f-a74c-8f6372c29770"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1218424-5237-452f-a74c-8f6372c29770"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081653Z:d1218424-5237-452f-a74c-8f6372c29770"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:16:53 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-request-id": [
+ "3d3bf6fd-d4b5-4e39-895f-2762f1d12802"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d3bf6fd-d4b5-4e39-895f-2762f1d12802"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081712Z:3d3bf6fd-d4b5-4e39-895f-2762f1d12802"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:11 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855\",\r\n \"name\": \"onesdk2855\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-request-id": [
+ "aba805b5-ec0c-42e4-a088-a116eb39c8f7"
+ ],
+ "x-ms-correlation-request-id": [
+ "aba805b5-ec0c-42e4-a088-a116eb39c8f7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081654Z:aba805b5-ec0c-42e4-a088-a116eb39c8f7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:16:53 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14987"
+ ],
+ "x-ms-request-id": [
+ "6fb90e9f-05e5-452c-bc91-6b0e13bab4bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fb90e9f-05e5-452c-bc91-6b0e13bab4bd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081654Z:6fb90e9f-05e5-452c-bc91-6b0e13bab4bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:16:53 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:a64d0b8c-6ed1-485f-916e-1b260c67f9c8"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9dd4780-0189-4e54-b8ee-39c9007d9f33"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081654Z:d9dd4780-0189-4e54-b8ee-39c9007d9f33"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:16:54 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "65960da2-ca51-4f4c-8b7d-b0f89606a869"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2719' under resource group 'onesdk2855' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "dff1d91d-6841-4288-89b8-10be06cb3d2d"
+ ],
+ "x-ms-correlation-request-id": [
+ "dff1d91d-6841-4288-89b8-10be06cb3d2d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081655Z:dff1d91d-6841-4288-89b8-10be06cb3d2d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:16:54 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0d65ba10-5d80-49d7-8bba-a28ae6ba5b73"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "4f5ddc43-fac6-4338-bdf5-2dfb76a811aa"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-correlation-request-id": [
+ "04c60c00-5306-42f2-8959-48c5a595b6ae"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081700Z:04c60c00-5306-42f2-8959-48c5a595b6ae"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "262eb636-40ff-475e-b93e-3b28523cd6d2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "edb9155c-13fb-4d23-a454-2c55020f15a8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3b0ccb5-8249-4c13-82ba-4d1327a0cd3a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081710Z:c3b0ccb5-8249-4c13-82ba-4d1327a0cd3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:10 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3f153826-4618-452a-9104-e96bdd89eed9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "22ad3441-0fec-41c0-a5ca-a1a1355be005"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-correlation-request-id": [
+ "de67a4ad-09ed-4b61-b489-d737b3447f00"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081711Z:de67a4ad-09ed-4b61-b489-d737b3447f00"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:10 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "cc5fa0ca-a828-4746-a376-a37c82ddf32a"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719\",\r\n \"name\": \"onesdk2719\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2719.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "66b36f7c-39c6-42a4-9f1f-3a659a03b869"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0930b76-65eb-4700-a584-bb38ef4a18da"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081700Z:f0930b76-65eb-4700-a584-bb38ef4a18da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk8152?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs4MTUyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b1969a61-865b-497e-8187-efafb4f5b995"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2719/databases/onesdk8152' under resource group 'onesdk2855' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "852fba86-a251-4243-ac50-2b5dd3e01c23"
+ ],
+ "x-ms-correlation-request-id": [
+ "852fba86-a251-4243-ac50-2b5dd3e01c23"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081700Z:852fba86-a251-4243-ac50-2b5dd3e01c23"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:00 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk8152?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs4MTUyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "139"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "970f3946-8b8e-47a6-a39e-6c6aa78da3a7"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk8152\",\r\n \"name\": \"onesdk8152\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"6397be6a-63d7-4956-9e4b-6c46d3904692\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:17:03.3Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:18:03.3Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "772"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "a205459f-55d4-4269-9def-72a279b95e94"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee54156a-2831-4223-99f5-63e6e6991afe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081705Z:ee54156a-2831-4223-99f5-63e6e6991afe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
+ ],
+ "x-ms-request-id": [
+ "55ab5d74-e9fb-4e01-8f24-71ef0f071bb2"
+ ],
+ "x-ms-correlation-request-id": [
+ "55ab5d74-e9fb-4e01-8f24-71ef0f071bb2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081705Z:55ab5d74-e9fb-4e01-8f24-71ef0f071bb2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:04 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-request-id": [
+ "f3cb1455-ed5b-42d1-8daa-d93e58cb2424"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3cb1455-ed5b-42d1-8daa-d93e58cb2424"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081858Z:f3cb1455-ed5b-42d1-8daa-d93e58cb2424"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:57 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908\",\r\n \"name\": \"onesdk9908\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-request-id": [
+ "f7703c6a-7635-4287-af9f-ed9abd28b4cb"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7703c6a-7635-4287-af9f-ed9abd28b4cb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081705Z:f7703c6a-7635-4287-af9f-ed9abd28b4cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:04 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MDgvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-request-id": [
+ "19f428f3-8297-42d3-b60a-040a101f1536"
+ ],
+ "x-ms-correlation-request-id": [
+ "19f428f3-8297-42d3-b60a-040a101f1536"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081705Z:19f428f3-8297-42d3-b60a-040a101f1536"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:4f5f2b73-54de-4ce8-bdc9-2622ac9d3c8d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "35853433-6dda-4e7f-9efd-fb506afed4a1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081705Z:35853433-6dda-4e7f-9efd-fb506afed4a1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/providers/Microsoft.Sql/servers/onesdk1006?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDA2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2f693dc-bc3c-4366-a571-5acce5f49153"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk1006' under resource group 'onesdk9908' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "9a90d615-e3ba-432c-9cc3-93eb9a5f413e"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a90d615-e3ba-432c-9cc3-93eb9a5f413e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081705Z:9a90d615-e3ba-432c-9cc3-93eb9a5f413e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:04 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/providers/Microsoft.Sql/servers/onesdk1006?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMDA2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "71cb1794-8bb3-4e10-9046-a62de86fbae2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk9908/providers/Microsoft.Sql/servers/onesdk1006\",\r\n \"name\": \"onesdk1006\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1006.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "6c8bfcb7-8440-43a2-b71a-fe2772d7edfe"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "656f2eea-d60d-4cd1-93a5-a73133b58c7b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081710Z:656f2eea-d60d-4cd1-93a5-a73133b58c7b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:10 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk9102?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs5MTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f65f55f9-1f17-4532-b237-414983fa2320"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2719/databases/onesdk9102' under resource group 'onesdk2855' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "af7dab81-d6e9-45c6-892a-a69a3c84f660"
+ ],
+ "x-ms-correlation-request-id": [
+ "af7dab81-d6e9-45c6-892a-a69a3c84f660"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081710Z:af7dab81-d6e9-45c6-892a-a69a3c84f660"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:10 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/servers/onesdk2719/databases/onesdk9102?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyNzE5L2RhdGFiYXNlcy9vbmVzZGs5MTAyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2855/providers/Microsoft.Sql/Servers/onesdk2719/databases/onesdk8152\",\r\n \"createMode\": \"Copy\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "274"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2660de68-0727-4861-a3c6-b7d077d58b03"
+ ]
+ },
+ "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "151bc3b9-495e-40bb-8488-0aed59272b52"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-correlation-request-id": [
+ "3384ae4f-af8c-42fc-a584-cffa9ee66e40"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081711Z:3384ae4f-af8c-42fc-a584-cffa9ee66e40"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:11 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 400
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2855?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI4NTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-request-id": [
+ "be87ce89-fe81-497f-89c5-1f9fdfc754f2"
+ ],
+ "x-ms-correlation-request-id": [
+ "be87ce89-fe81-497f-89c5-1f9fdfc754f2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081712Z:be87ce89-fe81-497f-89c5-1f9fdfc754f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-request-id": [
+ "26da21fa-29fe-4f55-8597-bcc470399548"
+ ],
+ "x-ms-correlation-request-id": [
+ "26da21fa-29fe-4f55-8597-bcc470399548"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081712Z:26da21fa-29fe-4f55-8597-bcc470399548"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-request-id": [
+ "95faf65b-0bcb-4b93-b71a-4b925f9f9532"
+ ],
+ "x-ms-correlation-request-id": [
+ "95faf65b-0bcb-4b93-b71a-4b925f9f9532"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081727Z:95faf65b-0bcb-4b93-b71a-4b925f9f9532"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:26 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-request-id": [
+ "2f45e26f-0f21-4023-9f1e-e1dc2d89909c"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f45e26f-0f21-4023-9f1e-e1dc2d89909c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081742Z:2f45e26f-0f21-4023-9f1e-e1dc2d89909c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-request-id": [
+ "c7688de6-740c-4c6c-8431-ac4f1cadd8ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7688de6-740c-4c6c-8431-ac4f1cadd8ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081757Z:c7688de6-740c-4c6c-8431-ac4f1cadd8ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
+ ],
+ "x-ms-request-id": [
+ "0697d92a-a04c-4f7b-9982-a59180035f33"
+ ],
+ "x-ms-correlation-request-id": [
+ "0697d92a-a04c-4f7b-9982-a59180035f33"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081812Z:0697d92a-a04c-4f7b-9982-a59180035f33"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-request-id": [
+ "59660a96-4846-4c16-8223-d308c034a042"
+ ],
+ "x-ms-correlation-request-id": [
+ "59660a96-4846-4c16-8223-d308c034a042"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081827Z:59660a96-4846-4c16-8223-d308c034a042"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-request-id": [
+ "bd91387c-459f-42ec-978f-23653bf57b9c"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd91387c-459f-42ec-978f-23653bf57b9c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081842Z:bd91387c-459f-42ec-978f-23653bf57b9c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyODU1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPRFUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-request-id": [
+ "cde053c8-4441-437d-8f9d-26c66dc3c03a"
+ ],
+ "x-ms-correlation-request-id": [
+ "cde053c8-4441-437d-8f9d-26c66dc3c03a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081857Z:cde053c8-4441-437d-8f9d-26c66dc3c03a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk9908?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-request-id": [
+ "56263544-7553-41c1-a5ce-a77130028fe1"
+ ],
+ "x-ms-correlation-request-id": [
+ "56263544-7553-41c1-a5ce-a77130028fe1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081858Z:56263544-7553-41c1-a5ce-a77130028fe1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-request-id": [
+ "73a4ee52-b4b4-43a2-a333-5fc1fc32f137"
+ ],
+ "x-ms-correlation-request-id": [
+ "73a4ee52-b4b4-43a2-a333-5fc1fc32f137"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081858Z:73a4ee52-b4b4-43a2-a333-5fc1fc32f137"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-request-id": [
+ "deba4ae4-5749-4096-8173-a1549ee96c98"
+ ],
+ "x-ms-correlation-request-id": [
+ "deba4ae4-5749-4096-8173-a1549ee96c98"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081913Z:deba4ae4-5749-4096-8173-a1549ee96c98"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-request-id": [
+ "753683ab-bc15-427f-ab33-087224a4bba4"
+ ],
+ "x-ms-correlation-request-id": [
+ "753683ab-bc15-427f-ab33-087224a4bba4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081928Z:753683ab-bc15-427f-ab33-087224a4bba4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-request-id": [
+ "821cfc54-ed7c-4c32-9c8a-77d22cf99859"
+ ],
+ "x-ms-correlation-request-id": [
+ "821cfc54-ed7c-4c32-9c8a-77d22cf99859"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081943Z:821cfc54-ed7c-4c32-9c8a-77d22cf99859"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-request-id": [
+ "ecc7e947-ccb9-4826-bb33-160d104dfad8"
+ ],
+ "x-ms-correlation-request-id": [
+ "ecc7e947-ccb9-4826-bb33-160d104dfad8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T081958Z:ecc7e947-ccb9-4826-bb33-160d104dfad8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-request-id": [
+ "58ef8c7e-3ea6-4a35-b7d5-43e90cb6bdbd"
+ ],
+ "x-ms-correlation-request-id": [
+ "58ef8c7e-3ea6-4a35-b7d5-43e90cb6bdbd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082013Z:58ef8c7e-3ea6-4a35-b7d5-43e90cb6bdbd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
+ ],
+ "x-ms-request-id": [
+ "db1fc7db-483d-4068-855e-b45212ee6a81"
+ ],
+ "x-ms-correlation-request-id": [
+ "db1fc7db-483d-4068-855e-b45212ee6a81"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082029Z:db1fc7db-483d-4068-855e-b45212ee6a81"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTA4LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVEE0TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-request-id": [
+ "ba576a67-367b-4b94-bea4-de111dde8330"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba576a67-367b-4b94-bea4-de111dde8330"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T082044Z:ba576a67-367b-4b94-bea4-de111dde8330"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateDatabaseCopyV2": [
+ "onesdk2855",
+ "onesdk2719",
+ "onesdk8152",
+ "onesdk9908",
+ "onesdk1006",
+ "onesdk9102"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabase.json
new file mode 100644
index 000000000000..0d7f52fe19b6
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabase.json
@@ -0,0 +1,3166 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-request-id": [
+ "4c8f725a-3f88-4912-a410-4687e9233c9e"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c8f725a-3f88-4912-a410-4687e9233c9e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084129Z:4c8f725a-3f88-4912-a410-4687e9233c9e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:41:29 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-request-id": [
+ "15ed83d2-cab3-4a18-9f2d-f569c4da0e5b"
+ ],
+ "x-ms-correlation-request-id": [
+ "15ed83d2-cab3-4a18-9f2d-f569c4da0e5b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084809Z:15ed83d2-cab3-4a18-9f2d-f569c4da0e5b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:09 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932\",\r\n \"name\": \"onesdk2932\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-request-id": [
+ "555ce0f6-44a3-4917-8b63-d7a898ae762a"
+ ],
+ "x-ms-correlation-request-id": [
+ "555ce0f6-44a3-4917-8b63-d7a898ae762a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084129Z:555ce0f6-44a3-4917-8b63-d7a898ae762a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:41:29 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "00525a98-baf7-45cf-bcc9-1f1edec17f36"
+ ],
+ "x-ms-correlation-request-id": [
+ "00525a98-baf7-45cf-bcc9-1f1edec17f36"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084129Z:00525a98-baf7-45cf-bcc9-1f1edec17f36"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:41:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:1afff3ad-1691-4cc1-b75c-2dc3213d146b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "876a3383-9396-43a7-9e57-f22ef14eaae7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084129Z:876a3383-9396-43a7-9e57-f22ef14eaae7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:41:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9912142f-3eee-4019-85aa-69b7821b49b1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3401' under resource group 'onesdk2932' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "0de117f8-4545-44bf-acf9-4806f043b249"
+ ],
+ "x-ms-correlation-request-id": [
+ "0de117f8-4545-44bf-acf9-4806f043b249"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084130Z:0de117f8-4545-44bf-acf9-4806f043b249"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:41:30 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "84f3468e-4674-4b9b-92b8-d577f04e131a"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401\",\r\n \"name\": \"onesdk3401\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3401.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d4918bfa-397c-4e32-a83d-e5510eaed3e8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14916"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cb0fc91-2fbf-4158-972b-8259936b8794"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084223Z:2cb0fc91-2fbf-4158-972b-8259936b8794"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:42:22 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "fc059639-0cb2-48f8-8e1c-1dc06d41f4d6"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401\",\r\n \"name\": \"onesdk3401\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3401.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "8e8469e2-9ae4-4f3f-ac11-68ee518a97e6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-correlation-request-id": [
+ "83fce129-019e-4c1d-a90d-6584996c9968"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084222Z:83fce129-019e-4c1d-a90d-6584996c9968"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:42:22 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ff2c9876-d098-488e-accd-80db759a441c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3401/databases/onesdk7487' under resource group 'onesdk2932' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "db779b91-67c3-4367-b39b-fb948296fef9"
+ ],
+ "x-ms-correlation-request-id": [
+ "db779b91-67c3-4367-b39b-fb948296fef9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084222Z:db779b91-67c3-4367-b39b-fb948296fef9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:42:22 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "135"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4804cdaf-ed6d-4589-9c4d-4eacb85a8624"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T01:42:24-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "1f637989-0e8f-472f-a3f5-61f7f0872ba5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1178"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bb0cf15-84d9-4d94-9fdc-2298548c284b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084224Z:7bb0cf15-84d9-4d94-9fdc-2298548c284b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:42:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4804cdaf-ed6d-4589-9c4d-4eacb85a8624"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "569dbacb-64f9-4799-a5fd-22d7e181effd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14915"
+ ],
+ "x-ms-correlation-request-id": [
+ "02070ae0-9faf-4d7e-949d-331509dec5b2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084225Z:02070ae0-9faf-4d7e-949d-331509dec5b2"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:42:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4804cdaf-ed6d-4589-9c4d-4eacb85a8624"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "b0a2512c-2a37-4b71-a73e-2994d890ed1b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14914"
+ ],
+ "x-ms-correlation-request-id": [
+ "697f6ba7-f4a7-4d1b-885f-297c7f4ae816"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084256Z:697f6ba7-f4a7-4d1b-885f-297c7f4ae816"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:42:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4804cdaf-ed6d-4589-9c4d-4eacb85a8624"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "026a0d32-9298-4ae6-93e5-6fbe7b33b0a7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14913"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c8a2477-9dc3-4cc3-8419-53220f425ecf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084312Z:3c8a2477-9dc3-4cc3-8419-53220f425ecf"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4804cdaf-ed6d-4589-9c4d-4eacb85a8624"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:42:23.983Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "2603d7e0-9e1b-40a9-91e4-1b773eb3bd92"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14912"
+ ],
+ "x-ms-correlation-request-id": [
+ "4325c72d-05e3-43b0-9c53-5b6e6e7faa3d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084328Z:4325c72d-05e3-43b0-9c53-5b6e6e7faa3d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487/operationResults/1f637989-0e8f-472f-a3f5-61f7f0872ba5?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5MzIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNDAxL2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvMWY2Mzc5ODktMGU4Zi00NzJmLWEzZjUtNjFmN2YwODcyYmE1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4804cdaf-ed6d-4589-9c4d-4eacb85a8624"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/servers/onesdk3401/databases/onesdk7487\",\r\n \"name\": \"onesdk7487\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"722f3a29-65a9-42be-9f0a-c4be4266ba89\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:42:24.47Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:53:29.527Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "818"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7b938aa5-5ddb-4cf9-a7c3-bec83a0cf2b3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14911"
+ ],
+ "x-ms-correlation-request-id": [
+ "546fa41a-e49d-4d77-901e-a039e1f5491e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084344Z:546fa41a-e49d-4d77-901e-a039e1f5491e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:43 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-request-id": [
+ "9c7bfafe-ef3f-4c1c-bb64-8eb595dd9e40"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c7bfafe-ef3f-4c1c-bb64-8eb595dd9e40"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084344Z:9c7bfafe-ef3f-4c1c-bb64-8eb595dd9e40"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:43 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-request-id": [
+ "89487a1c-fd0c-4e14-9d75-1bcbe70fbd73"
+ ],
+ "x-ms-correlation-request-id": [
+ "89487a1c-fd0c-4e14-9d75-1bcbe70fbd73"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084955Z:89487a1c-fd0c-4e14-9d75-1bcbe70fbd73"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:49:55 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610\",\r\n \"name\": \"onesdk5610\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-request-id": [
+ "99a8366d-a6db-49a1-94a5-8a0ad332def2"
+ ],
+ "x-ms-correlation-request-id": [
+ "99a8366d-a6db-49a1-94a5-8a0ad332def2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084344Z:99a8366d-a6db-49a1-94a5-8a0ad332def2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:43 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-request-id": [
+ "89f32dd1-1e25-4b8d-a473-64da524f2da5"
+ ],
+ "x-ms-correlation-request-id": [
+ "89f32dd1-1e25-4b8d-a473-64da524f2da5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084344Z:89f32dd1-1e25-4b8d-a473-64da524f2da5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:173f47eb-58cc-4a00-be9a-85dc629a8e8e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-correlation-request-id": [
+ "749e3b0b-11d0-47ab-8705-f0b7af8bf463"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084344Z:749e3b0b-11d0-47ab-8705-f0b7af8bf463"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:44 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "190532f1-3dc1-4fc6-9aa2-5a811f292575"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8807' under resource group 'onesdk5610' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "8ea40910-868d-4463-9835-fec654a493d8"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ea40910-868d-4463-9835-fec654a493d8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084345Z:8ea40910-868d-4463-9835-fec654a493d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:43:44 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "0f40217d-daa2-454f-8f0f-4284ca89146b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807\",\r\n \"name\": \"onesdk8807\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8807.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "231cc278-73c4-482c-9667-57888bc56507"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14985"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd5b6d32-39d6-43da-a25a-0e081994035a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084501Z:dd5b6d32-39d6-43da-a25a-0e081994035a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:01 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "80f084fc-2e49-46a9-9d2d-1b884d51730d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807\",\r\n \"name\": \"onesdk8807\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8807.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "32cf7990-f17e-4d0c-8c77-6c47cf0bfdda"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-correlation-request-id": [
+ "134d3212-1b00-4e54-8520-eab911b77e42"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084501Z:134d3212-1b00-4e54-8520-eab911b77e42"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:01 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f3369670-0e75-460c-a215-db78ac41990c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8807/databases/onesdk7487' under resource group 'onesdk5610' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "c80223e6-b7a2-418c-abd8-0d38e537dc56"
+ ],
+ "x-ms-correlation-request-id": [
+ "c80223e6-b7a2-418c-abd8-0d38e537dc56"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084501Z:c80223e6-b7a2-418c-abd8-0d38e537dc56"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:01 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2932/providers/Microsoft.Sql/Servers/onesdk3401/databases/onesdk7487\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "286"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:45:02.628-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a3412480-4ea9-4548-88d4-dd50a9489bcc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb63906f-2312-4ba2-8fc7-540b2192b020"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084503Z:bb63906f-2312-4ba2-8fc7-540b2192b020"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:02.597Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c529ee97-516a-410f-b232-ea7a744ae63e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d4ee134-cc88-4281-acf0-5f7930d52967"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084503Z:0d4ee134-cc88-4281-acf0-5f7930d52967"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "b2541e80-8d9f-446f-9424-1e7550bf50f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14983"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4dd9519-56f7-4a6c-ada6-8e4678f9664e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084514Z:f4dd9519-56f7-4a6c-ada6-8e4678f9664e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d1b50cb5-92ae-420e-b6f7-41c11aa68645"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-correlation-request-id": [
+ "2002f389-0cec-4674-b19e-f9be66cd01c4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084530Z:2002f389-0cec-4674-b19e-f9be66cd01c4"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "52c1c0c4-1e0c-468d-b8cf-71ed4cf19067"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14981"
+ ],
+ "x-ms-correlation-request-id": [
+ "81725395-b3bb-4a8c-9043-f6bc26a1723b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084546Z:81725395-b3bb-4a8c-9043-f6bc26a1723b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:45:45 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c01aff1a-be49-4190-a109-d5e659aba3a4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-correlation-request-id": [
+ "16d6181f-09f0-450f-9c91-f421befd8e3b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084602Z:16d6181f-09f0-450f-9c91-f421befd8e3b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:46:02 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "f5192d36-b5b9-46b6-9234-2f37bcfd7ebd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cc0eeaa-9fb0-4a08-b06f-bee25f4c5e22"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084617Z:9cc0eeaa-9fb0-4a08-b06f-bee25f4c5e22"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:46:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "0d6e8495-c981-4bb6-b385-550741d158a0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-correlation-request-id": [
+ "72c239cd-7e03-44cf-b7f0-e4269f625fa5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084633Z:72c239cd-7e03-44cf-b7f0-e4269f625fa5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:46:33 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "7bfe5f70-afa6-454f-b1ec-3940c2137929"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e98a909-6a32-4fad-9cb8-edfef68439b5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084649Z:2e98a909-6a32-4fad-9cb8-edfef68439b5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:46:48 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "db8d1458-7df9-4daf-a1ec-0e8c3fc2ec74"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ac6af03-1eae-4827-8f50-0ac1aee74c40"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084705Z:8ac6af03-1eae-4827-8f50-0ac1aee74c40"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:47:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "37944bea-6d48-429c-83f6-7e54dcf08c20"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14975"
+ ],
+ "x-ms-correlation-request-id": [
+ "449e0227-b6ea-4a96-9c46-c39d517d75ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084720Z:449e0227-b6ea-4a96-9c46-c39d517d75ec"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:47:20 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "806d579e-3443-4b90-82c7-27c70998ad95"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "4699fd80-cb29-426f-8c97-108123665769"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084736Z:4699fd80-cb29-426f-8c97-108123665769"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:47:36 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:45:03.117Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "24129a8c-6239-4bc6-9511-fb2e2b1c2034"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fe06faf-eb86-4d6c-a80a-3d93c68f5cb6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084752Z:6fe06faf-eb86-4d6c-a80a-3d93c68f5cb6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:47:52 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/operationResults/a3412480-4ea9-4548-88d4-dd50a9489bcc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L29wZXJhdGlvblJlc3VsdHMvYTM0MTI0ODAtNGVhOS00NTQ4LTg4ZDQtZGQ1MGE5NDg5YmNjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2e7b131a-6c71-4880-991b-5e4bac120d49"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487\",\r\n \"name\": \"onesdk7487\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"3cba92b6-cb29-43f4-aa20-c02c70a3cd47\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:45:04.273Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:57:59.727Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "819"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7b2365c3-65c3-469b-8bb0-d7ebb744b31c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "df5be20b-544e-4004-a0e4-007dbf50cce1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084808Z:df5be20b-544e-4004-a0e4-007dbf50cce1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4ODA3L2RhdGFiYXNlcy9vbmVzZGs3NDg3L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e3dd610e-f0ee-4519-9455-b5257e264711"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5610/providers/Microsoft.Sql/servers/onesdk8807/databases/onesdk7487/replicationLinks/b7dad00a-0363-44ca-8481-176ed38959a2\",\r\n \"name\": \"b7dad00a-0363-44ca-8481-176ed38959a2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk3401\",\r\n \"partnerDatabase\": \"onesdk7487\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"NonReadableSecondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"startTime\": \"2015-08-07T08:45:46.8\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "624"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7f2cc341-6b3d-4cf7-bc3f-168dcb25f012"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a884f16-8e8b-49d9-a726-6c779f851312"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084809Z:2a884f16-8e8b-49d9-a726-6c779f851312"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2932?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5MzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-request-id": [
+ "5ed6e2bf-9950-4ebb-bbcb-52f3611390ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ed6e2bf-9950-4ebb-bbcb-52f3611390ad"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084809Z:5ed6e2bf-9950-4ebb-bbcb-52f3611390ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-request-id": [
+ "780e6418-6b98-4d7b-b12d-29eb9ffb50e9"
+ ],
+ "x-ms-correlation-request-id": [
+ "780e6418-6b98-4d7b-b12d-29eb9ffb50e9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084809Z:780e6418-6b98-4d7b-b12d-29eb9ffb50e9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-request-id": [
+ "ae59fc82-af59-433e-8a99-9428a4143fb3"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae59fc82-af59-433e-8a99-9428a4143fb3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084825Z:ae59fc82-af59-433e-8a99-9428a4143fb3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-request-id": [
+ "018793d7-467a-4aed-8c62-825e79d1c8b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "018793d7-467a-4aed-8c62-825e79d1c8b1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084840Z:018793d7-467a-4aed-8c62-825e79d1c8b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-request-id": [
+ "5d0eacc4-31a4-4d07-b6d7-5fba301647f2"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d0eacc4-31a4-4d07-b6d7-5fba301647f2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084855Z:5d0eacc4-31a4-4d07-b6d7-5fba301647f2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:48:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-request-id": [
+ "611d4c35-69b7-43f9-b0eb-28db6777a588"
+ ],
+ "x-ms-correlation-request-id": [
+ "611d4c35-69b7-43f9-b0eb-28db6777a588"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084910Z:611d4c35-69b7-43f9-b0eb-28db6777a588"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:49:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-request-id": [
+ "77fad4fa-301c-4c75-b1ae-c2302edd319e"
+ ],
+ "x-ms-correlation-request-id": [
+ "77fad4fa-301c-4c75-b1ae-c2302edd319e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084925Z:77fad4fa-301c-4c75-b1ae-c2302edd319e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:49:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-request-id": [
+ "40cdf888-ab87-4fd5-856a-f8b9891b74d2"
+ ],
+ "x-ms-correlation-request-id": [
+ "40cdf888-ab87-4fd5-856a-f8b9891b74d2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084940Z:40cdf888-ab87-4fd5-856a-f8b9891b74d2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:49:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTMyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVE15TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-request-id": [
+ "222122e9-6f13-452a-8b54-1458572a844e"
+ ],
+ "x-ms-correlation-request-id": [
+ "222122e9-6f13-452a-8b54-1458572a844e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084955Z:222122e9-6f13-452a-8b54-1458572a844e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:49:54 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5610?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU2MTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-request-id": [
+ "aa21c322-717e-4d09-bda9-addfd7d3e52e"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa21c322-717e-4d09-bda9-addfd7d3e52e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084955Z:aa21c322-717e-4d09-bda9-addfd7d3e52e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:49:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "0638d64a-6266-42ba-a345-20c72048146a"
+ ],
+ "x-ms-correlation-request-id": [
+ "0638d64a-6266-42ba-a345-20c72048146a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084955Z:0638d64a-6266-42ba-a345-20c72048146a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:49:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "699889ee-cbd4-4620-bd9f-7570a9ee0458"
+ ],
+ "x-ms-correlation-request-id": [
+ "699889ee-cbd4-4620-bd9f-7570a9ee0458"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085010Z:699889ee-cbd4-4620-bd9f-7570a9ee0458"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:50:10 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-request-id": [
+ "39f52d69-23ba-4a83-9e59-3a75a28f96ef"
+ ],
+ "x-ms-correlation-request-id": [
+ "39f52d69-23ba-4a83-9e59-3a75a28f96ef"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085026Z:39f52d69-23ba-4a83-9e59-3a75a28f96ef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:50:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14933"
+ ],
+ "x-ms-request-id": [
+ "3f6644c3-ec04-4cb3-8773-b139fb191381"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f6644c3-ec04-4cb3-8773-b139fb191381"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085041Z:3f6644c3-ec04-4cb3-8773-b139fb191381"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:50:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14932"
+ ],
+ "x-ms-request-id": [
+ "f340c794-5dec-4fbc-b354-bd91314cd69f"
+ ],
+ "x-ms-correlation-request-id": [
+ "f340c794-5dec-4fbc-b354-bd91314cd69f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085056Z:f340c794-5dec-4fbc-b354-bd91314cd69f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:50:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-request-id": [
+ "9a96a5d5-14e1-45ba-9699-3a9db3cc04a4"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a96a5d5-14e1-45ba-9699-3a9db3cc04a4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085111Z:9a96a5d5-14e1-45ba-9699-3a9db3cc04a4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:51:10 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-request-id": [
+ "e3cb4512-d50d-4092-9c66-310754bca55e"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3cb4512-d50d-4092-9c66-310754bca55e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085126Z:e3cb4512-d50d-4092-9c66-310754bca55e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:51:26 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NjEwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOakV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-request-id": [
+ "46e6d241-65f5-4f6b-8b21-e358d2c55cd5"
+ ],
+ "x-ms-correlation-request-id": [
+ "46e6d241-65f5-4f6b-8b21-e358d2c55cd5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085141Z:46e6d241-65f5-4f6b-8b21-e358d2c55cd5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:51:41 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateSecondaryDatabase": [
+ "onesdk2932",
+ "onesdk3401",
+ "onesdk7487",
+ "onesdk5610",
+ "onesdk8807"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabaseV2.json
new file mode 100644
index 000000000000..ea2eda890abc
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestCreateSecondaryDatabaseV2.json
@@ -0,0 +1,2032 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-request-id": [
+ "c31e5772-b9fd-4409-a62d-88ccbde9d4ec"
+ ],
+ "x-ms-correlation-request-id": [
+ "c31e5772-b9fd-4409-a62d-88ccbde9d4ec"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083205Z:c31e5772-b9fd-4409-a62d-88ccbde9d4ec"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:05 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "8f913a24-4e0c-4f85-9ba6-f848bd41babc"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f913a24-4e0c-4f85-9ba6-f848bd41babc"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083228Z:8f913a24-4e0c-4f85-9ba6-f848bd41babc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:28 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513\",\r\n \"name\": \"onesdk5513\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1182"
+ ],
+ "x-ms-request-id": [
+ "c0395fb7-7e63-44fe-b056-942e784492c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0395fb7-7e63-44fe-b056-942e784492c7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083206Z:c0395fb7-7e63-44fe-b056-942e784492c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:05 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-request-id": [
+ "d56e8da0-9cb4-4844-a13a-ddfb7710439d"
+ ],
+ "x-ms-correlation-request-id": [
+ "d56e8da0-9cb4-4844-a13a-ddfb7710439d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083206Z:d56e8da0-9cb4-4844-a13a-ddfb7710439d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:05 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:14ca50da-cebd-4981-9a09-968e085829ab"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "6915fe6c-dc06-4c17-a3d3-a8a4c4b47d26"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083206Z:6915fe6c-dc06-4c17-a3d3-a8a4c4b47d26"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "99f49baa-dc64-40e0-afbc-267d0c3eba5e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4931' under resource group 'onesdk5513' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "49b00b7f-9745-4966-b0a7-7dfd7f533dc4"
+ ],
+ "x-ms-correlation-request-id": [
+ "49b00b7f-9745-4966-b0a7-7dfd7f533dc4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083206Z:49b00b7f-9745-4966-b0a7-7dfd7f533dc4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:06 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e4f2eb11-97b1-4bbb-bd27-f1986b6af7be"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931\",\r\n \"name\": \"onesdk4931\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4931.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2947c40b-c19e-46c9-8d76-dfb5119f0b07"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-correlation-request-id": [
+ "279fb4ce-f619-4f5b-b1a2-980cac8d4640"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083212Z:279fb4ce-f619-4f5b-b1a2-980cac8d4640"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:12 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "12c6ae65-be42-4fbd-aee3-61e757a6a2e0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931\",\r\n \"name\": \"onesdk4931\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4931.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b36c318f-f356-49ed-8a7d-b398ddd8b9ee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-correlation-request-id": [
+ "316b9dca-6362-4b04-988c-944705b63e27"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083212Z:316b9dca-6362-4b04-988c-944705b63e27"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:12 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931/databases/onesdk1223?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxL2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e0b894bc-dd32-41a4-8a16-1d1717a97ff0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk4931/databases/onesdk1223' under resource group 'onesdk5513' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "e03dbc9c-eef9-4ee1-bdea-c5ee232f844b"
+ ],
+ "x-ms-correlation-request-id": [
+ "e03dbc9c-eef9-4ee1-bdea-c5ee232f844b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083212Z:e03dbc9c-eef9-4ee1-bdea-c5ee232f844b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:12 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931/databases/onesdk1223?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazU1MTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0OTMxL2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "139"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "bab674d4-6084-4802-b9a3-80225807242e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/servers/onesdk4931/databases/onesdk1223\",\r\n \"name\": \"onesdk1223\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a2c46ffd-44fb-4fee-b049-92a0f05cfa84\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:32:20.327Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:33:20.327Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "776"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "db7f5f36-65cc-4181-99e3-d2c95cfa2cd0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-correlation-request-id": [
+ "27d01519-703f-4d22-88f3-c1b9fe6925c5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083222Z:27d01519-703f-4d22-88f3-c1b9fe6925c5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:22 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-request-id": [
+ "11e20198-7198-4b93-8101-7738f9f05096"
+ ],
+ "x-ms-correlation-request-id": [
+ "11e20198-7198-4b93-8101-7738f9f05096"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083222Z:11e20198-7198-4b93-8101-7738f9f05096"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:21 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-request-id": [
+ "42ac2e67-52e6-4844-b3a1-451e4d9d8fd1"
+ ],
+ "x-ms-correlation-request-id": [
+ "42ac2e67-52e6-4844-b3a1-451e4d9d8fd1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083414Z:42ac2e67-52e6-4844-b3a1-451e4d9d8fd1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:34:14 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941\",\r\n \"name\": \"onesdk2941\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1181"
+ ],
+ "x-ms-request-id": [
+ "2ce40db1-5c67-421f-9622-caad59d59ec3"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ce40db1-5c67-421f-9622-caad59d59ec3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083222Z:2ce40db1-5c67-421f-9622-caad59d59ec3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:22 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-request-id": [
+ "0e381d25-27d1-427a-bd9b-23019babc3a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e381d25-27d1-427a-bd9b-23019babc3a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083222Z:0e381d25-27d1-427a-bd9b-23019babc3a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:9619eb3d-f248-45d1-95b3-e1a21b3968a9"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "560fd6b4-616e-4e4c-a5ce-b26a6dc04730"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083222Z:560fd6b4-616e-4e4c-a5ce-b26a6dc04730"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "82c32c06-810a-4ca6-91f5-ab1ccca217c0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8396' under resource group 'onesdk2941' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "a00b2cd3-80e7-46e4-a11d-0f879c9841c0"
+ ],
+ "x-ms-correlation-request-id": [
+ "a00b2cd3-80e7-46e4-a11d-0f879c9841c0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083223Z:a00b2cd3-80e7-46e4-a11d-0f879c9841c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:22 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b2c520d1-b729-44aa-b6a7-db58744c42fa"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396\",\r\n \"name\": \"onesdk8396\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8396.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "73bf797c-057a-47fc-a520-92d4f62873e6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f42047d-dd26-484e-9658-f5769ef449b4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083227Z:2f42047d-dd26-484e-9658-f5769ef449b4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:27 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "535181da-0bce-47b4-8008-cc0642cd2b73"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396\",\r\n \"name\": \"onesdk8396\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8396.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d45e2c2e-ac2f-4e9c-b881-ce97871b5e2d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1188"
+ ],
+ "x-ms-correlation-request-id": [
+ "25803adf-0501-434b-85d6-678a73d3c495"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083227Z:25803adf-0501-434b-85d6-678a73d3c495"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:27 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396/databases/onesdk1223?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2L2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "19256a53-8f1f-467e-886a-6dbc48be859f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk8396/databases/onesdk1223' under resource group 'onesdk2941' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "c1cab79b-571b-4f45-8d40-51be40dc4fcf"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1cab79b-571b-4f45-8d40-51be40dc4fcf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083227Z:c1cab79b-571b-4f45-8d40-51be40dc4fcf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:27 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2941/providers/Microsoft.Sql/servers/onesdk8396/databases/onesdk1223?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI5NDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4Mzk2L2RhdGFiYXNlcy9vbmVzZGsxMjIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk5513/providers/Microsoft.Sql/Servers/onesdk4931/databases/onesdk1223\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "290"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e1688ae6-e0bf-4796-8b57-a728ba4b5ce7"
+ ]
+ },
+ "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d1af2273-bf08-4b15-84ab-501f63a0edae"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a551a3a-75f0-4977-a14c-64b75585e10f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083228Z:2a551a3a-75f0-4977-a14c-64b75585e10f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:28 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 400
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk5513?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazU1MTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-request-id": [
+ "d1df68cb-20b1-4d9a-90f5-a14d7238b72c"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1df68cb-20b1-4d9a-90f5-a14d7238b72c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083229Z:d1df68cb-20b1-4d9a-90f5-a14d7238b72c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-request-id": [
+ "7814fe18-f483-4e01-988e-21aaef29735f"
+ ],
+ "x-ms-correlation-request-id": [
+ "7814fe18-f483-4e01-988e-21aaef29735f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083229Z:7814fe18-f483-4e01-988e-21aaef29735f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14933"
+ ],
+ "x-ms-request-id": [
+ "5ab6fc45-3260-4394-bf94-1b72942cc0ad"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ab6fc45-3260-4394-bf94-1b72942cc0ad"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083244Z:5ab6fc45-3260-4394-bf94-1b72942cc0ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14932"
+ ],
+ "x-ms-request-id": [
+ "0e9f4d41-f179-4e86-81bd-4d8c685b7145"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e9f4d41-f179-4e86-81bd-4d8c685b7145"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083259Z:0e9f4d41-f179-4e86-81bd-4d8c685b7145"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:32:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-request-id": [
+ "6dd84448-7491-48be-ba4f-1fde1b61c92d"
+ ],
+ "x-ms-correlation-request-id": [
+ "6dd84448-7491-48be-ba4f-1fde1b61c92d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083314Z:6dd84448-7491-48be-ba4f-1fde1b61c92d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:33:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-request-id": [
+ "e8d2cb6a-c9a9-4200-b445-29e0cc9cfc8d"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8d2cb6a-c9a9-4200-b445-29e0cc9cfc8d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083329Z:e8d2cb6a-c9a9-4200-b445-29e0cc9cfc8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:33:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-request-id": [
+ "c1df8ff5-20f1-4fc2-9943-97cee2d84d27"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1df8ff5-20f1-4fc2-9943-97cee2d84d27"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083344Z:c1df8ff5-20f1-4fc2-9943-97cee2d84d27"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:33:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-request-id": [
+ "911a2075-46f5-43f2-a152-7807c44e7c62"
+ ],
+ "x-ms-correlation-request-id": [
+ "911a2075-46f5-43f2-a152-7807c44e7c62"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083359Z:911a2075-46f5-43f2-a152-7807c44e7c62"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:33:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs1NTEzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczFOVEV6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-request-id": [
+ "8e136e6a-e0cb-40e4-ba4d-42ed084bfaad"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e136e6a-e0cb-40e4-ba4d-42ed084bfaad"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083414Z:8e136e6a-e0cb-40e4-ba4d-42ed084bfaad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:34:14 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2941?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5NDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-request-id": [
+ "512ebb58-9194-483d-ad4a-eaf0f3d6bbe6"
+ ],
+ "x-ms-correlation-request-id": [
+ "512ebb58-9194-483d-ad4a-eaf0f3d6bbe6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083415Z:512ebb58-9194-483d-ad4a-eaf0f3d6bbe6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:34:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-request-id": [
+ "6837e622-9f69-4166-904c-5f9367b039ea"
+ ],
+ "x-ms-correlation-request-id": [
+ "6837e622-9f69-4166-904c-5f9367b039ea"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083415Z:6837e622-9f69-4166-904c-5f9367b039ea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:34:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-request-id": [
+ "15c5accf-237d-4a77-80f2-1435efb166ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "15c5accf-237d-4a77-80f2-1435efb166ff"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083430Z:15c5accf-237d-4a77-80f2-1435efb166ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:34:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "a0d72c81-9c25-4796-925a-7247b4de5e68"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0d72c81-9c25-4796-925a-7247b4de5e68"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083445Z:a0d72c81-9c25-4796-925a-7247b4de5e68"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:34:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "93fc3c4a-02f3-42ff-ae8c-58015ee3253c"
+ ],
+ "x-ms-correlation-request-id": [
+ "93fc3c4a-02f3-42ff-ae8c-58015ee3253c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083500Z:93fc3c4a-02f3-42ff-ae8c-58015ee3253c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:35:00 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "03f0e006-aabd-489d-9acf-9c43f45618a3"
+ ],
+ "x-ms-correlation-request-id": [
+ "03f0e006-aabd-489d-9acf-9c43f45618a3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083515Z:03f0e006-aabd-489d-9acf-9c43f45618a3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:35:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-request-id": [
+ "1f5b6de1-c4ee-4219-98d0-ab3423acbeb4"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f5b6de1-c4ee-4219-98d0-ab3423acbeb4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083530Z:1f5b6de1-c4ee-4219-98d0-ab3423acbeb4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:35:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-request-id": [
+ "ec92ae72-72b1-4ca9-9dd1-95dece0219be"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec92ae72-72b1-4ca9-9dd1-95dece0219be"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083545Z:ec92ae72-72b1-4ca9-9dd1-95dece0219be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:35:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTQxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVFF4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14919"
+ ],
+ "x-ms-request-id": [
+ "e72d44eb-577b-4e09-a48a-2e5dc8e814cf"
+ ],
+ "x-ms-correlation-request-id": [
+ "e72d44eb-577b-4e09-a48a-2e5dc8e814cf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083600Z:e72d44eb-577b-4e09-a48a-2e5dc8e814cf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-CreateSecondaryDatabaseV2": [
+ "onesdk5513",
+ "onesdk4931",
+ "onesdk1223",
+ "onesdk2941",
+ "onesdk8396"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLink.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLink.json
new file mode 100644
index 000000000000..939b71aa8052
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLink.json
@@ -0,0 +1,2860 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "d5bf1c39-9645-4b04-9495-8322f5bcf383"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5bf1c39-9645-4b04-9495-8322f5bcf383"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090101Z:d5bf1c39-9645-4b04-9495-8322f5bcf383"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:01 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-request-id": [
+ "b3c72e0a-1750-4e48-90ad-e1fb3e4649e5"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3c72e0a-1750-4e48-90ad-e1fb3e4649e5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090525Z:b3c72e0a-1750-4e48-90ad-e1fb3e4649e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:25 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636\",\r\n \"name\": \"onesdk2636\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "29d9dbac-ce8a-4d1a-9990-de536fb3dd4f"
+ ],
+ "x-ms-correlation-request-id": [
+ "29d9dbac-ce8a-4d1a-9990-de536fb3dd4f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090102Z:29d9dbac-ce8a-4d1a-9990-de536fb3dd4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:01 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "e6a99eef-cb74-4b8e-8dcb-4be5c1cd723b"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6a99eef-cb74-4b8e-8dcb-4be5c1cd723b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090102Z:e6a99eef-cb74-4b8e-8dcb-4be5c1cd723b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:73ecdf8b-c092-4ec1-993c-d55f7345a32b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14977"
+ ],
+ "x-ms-correlation-request-id": [
+ "189d567b-f586-45b9-b374-4674efa7d1e5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090102Z:189d567b-f586-45b9-b374-4674efa7d1e5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:02 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c4687714-41b9-40bc-8ab4-7d7ac2a13c5f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2099' under resource group 'onesdk2636' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "3a901636-8990-4c50-88b7-a0c05685fcef"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a901636-8990-4c50-88b7-a0c05685fcef"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090102Z:3a901636-8990-4c50-88b7-a0c05685fcef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:02 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1281c8a6-b54d-4412-a253-47a34aae3e9c"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099\",\r\n \"name\": \"onesdk2099\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2099.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "adeb32ce-4e4c-4bc1-b124-3eb25ad525b4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a0ba2e1-c46b-43b0-aaf6-19ac9ab9ca8d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090148Z:5a0ba2e1-c46b-43b0-aaf6-19ac9ab9ca8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:48 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2b44e781-d184-47af-9ae3-3b3817534f15"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099\",\r\n \"name\": \"onesdk2099\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk2099.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "ad01a6bb-958a-4a03-990b-7e5119aeb342"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "02bfaea0-ea77-4a2d-ab1e-ed759bb45d71"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090148Z:02bfaea0-ea77-4a2d-ab1e-ed759bb45d71"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:48 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c88078fc-ddb7-47ff-a0f8-9a055084b42f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk2099/databases/onesdk686' under resource group 'onesdk2636' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "166"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "b570b171-79f4-42f1-a871-74fde7a0db04"
+ ],
+ "x-ms-correlation-request-id": [
+ "b570b171-79f4-42f1-a871-74fde7a0db04"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090148Z:b570b171-79f4-42f1-a871-74fde7a0db04"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:48 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODY/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "135"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5bbadd82-e8d3-4b4d-bd28-8fc742f79524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T02:01:49.893-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "04971737-986c-41b2-b919-9dbc1a35a5a0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1191"
+ ],
+ "x-ms-correlation-request-id": [
+ "093eca19-f599-4d5c-a4e8-c8704cf21ab8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090150Z:093eca19-f599-4d5c-a4e8-c8704cf21ab8"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5bbadd82-e8d3-4b4d-bd28-8fc742f79524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "57410cb5-caa5-4965-9d9e-bf330942e418"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14973"
+ ],
+ "x-ms-correlation-request-id": [
+ "dab04b62-4941-4043-9c90-a1a1d6305a04"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090151Z:dab04b62-4941-4043-9c90-a1a1d6305a04"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:01:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5bbadd82-e8d3-4b4d-bd28-8fc742f79524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "1a31d72f-0ebb-41dc-bd08-dc027167dc39"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14972"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccc211ed-4289-451a-977d-63b3ebe25d9b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090221Z:ccc211ed-4289-451a-977d-63b3ebe25d9b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:02:21 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5bbadd82-e8d3-4b4d-bd28-8fc742f79524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "26aed47d-9df9-4dcc-b167-fe8dc2c9e461"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f93465a-2d83-49ba-ac75-c7cfab16096a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090237Z:9f93465a-2d83-49ba-ac75-c7cfab16096a"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:02:37 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5bbadd82-e8d3-4b4d-bd28-8fc742f79524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T09:01:49.627Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "1fa2b573-a016-4c49-9484-19a7f6d3319e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-correlation-request-id": [
+ "66bf6054-3e30-42c9-a7ee-409fee352911"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090253Z:66bf6054-3e30-42c9-a7ee-409fee352911"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:02:53 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/operationResults/04971737-986c-41b2-b919-9dbc1a35a5a0?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvb3BlcmF0aW9uUmVzdWx0cy8wNDk3MTczNy05ODZjLTQxYjItYjkxOS05ZGJjMWEzNWE1YTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "5bbadd82-e8d3-4b4d-bd28-8fc742f79524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686\",\r\n \"name\": \"onesdk686\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d8faf1b4-b90f-4419-b5d2-5a996bc9fe71\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T09:01:50.207Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:12:53.347Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "817"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "91f414df-1ae9-4661-ae5a-e2ee4f5307d8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-correlation-request-id": [
+ "b74f25a4-259c-4d7a-8634-35d2594a07b6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090309Z:b74f25a4-259c-4d7a-8634-35d2594a07b6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "101"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "d747909c-0b41-48e0-b514-d19fcee7d9e6"
+ ],
+ "x-ms-correlation-request-id": [
+ "d747909c-0b41-48e0-b514-d19fcee7d9e6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090309Z:d747909c-0b41-48e0-b514-d19fcee7d9e6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:09 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14916"
+ ],
+ "x-ms-request-id": [
+ "ec7e6d53-c20d-4e52-80d4-d4ac5373dec5"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec7e6d53-c20d-4e52-80d4-d4ac5373dec5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090711Z:ec7e6d53-c20d-4e52-80d4-d4ac5373dec5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:07:11 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899\",\r\n \"name\": \"onesdk899\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "174"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "dc2e8b84-9e2b-4c0a-808f-325fcfa4abd6"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc2e8b84-9e2b-4c0a-808f-325fcfa4abd6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090309Z:dc2e8b84-9e2b-4c0a-808f-325fcfa4abd6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:09 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "62a4eaa0-4fc7-42c8-8b5a-58213dca1587"
+ ],
+ "x-ms-correlation-request-id": [
+ "62a4eaa0-4fc7-42c8-8b5a-58213dca1587"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090309Z:62a4eaa0-4fc7-42c8-8b5a-58213dca1587"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:8746eafc-5f98-423c-a48a-b894e8983059"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-correlation-request-id": [
+ "45bca86a-ec9f-4d6b-94ce-5fb433c8e16d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090310Z:45bca86a-ec9f-4d6b-94ce-5fb433c8e16d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "81731e8c-9891-4757-80eb-eea8b0936d0f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9984' under resource group 'onesdk899' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "145"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "e6727583-e990-48f3-bf8a-a33edfca3bf8"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6727583-e990-48f3-bf8a-a33edfca3bf8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090310Z:e6727583-e990-48f3-bf8a-a33edfca3bf8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:10 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "cd81f386-54a4-47c6-a44f-29f9ac3e9803"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984\",\r\n \"name\": \"onesdk9984\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9984.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "466"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "99d0e25a-d339-4818-aa4a-f92896b6309f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14966"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd247961-36b5-44a1-8136-a9bca392008c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090351Z:dd247961-36b5-44a1-8136-a9bca392008c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:51 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "de02fad5-ac62-4b48-936a-2512eaabd147"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984\",\r\n \"name\": \"onesdk9984\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9984.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "480"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2cfdab37-6c64-49d0-8d31-56ec7422388c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-correlation-request-id": [
+ "4482cdd4-9506-4f0e-8130-a2947055bff2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090351Z:4482cdd4-9506-4f0e-8130-a2947055bff2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:51 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "667f09ab-e982-4c33-841a-a1d70ab76d1e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9984/databases/onesdk686' under resource group 'onesdk899' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "8b5d8f57-aa6c-4d26-bf98-2e1e88149572"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b5d8f57-aa6c-4d26-bf98-2e1e88149572"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090351Z:8b5d8f57-aa6c-4d26-bf98-2e1e88149572"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:51 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Nj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/Servers/onesdk2099/databases/onesdk686\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "285"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T02:03:52.971-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "dc694465-df43-4f76-84de-a78461fbf53e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1189"
+ ],
+ "x-ms-correlation-request-id": [
+ "6123471c-b0d1-4d14-944d-f30f504f57a4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090353Z:6123471c-b0d1-4d14-944d-f30f504f57a4"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:53 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2b10dbd8-1a20-4f98-9c3b-ea25a232386e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b7c14ba-336b-4fd0-b8cf-16d7d8cf6a73"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090354Z:6b7c14ba-336b-4fd0-b8cf-16d7d8cf6a73"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:03:53 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9823222f-3315-490e-88f2-8c0891768173"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-correlation-request-id": [
+ "6860f7bb-c04d-4f35-ae24-1db35bd5ad01"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090404Z:6860f7bb-c04d-4f35-ae24-1db35bd5ad01"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:04:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "daa9e036-ae68-4749-8642-a1f338456c8f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "34586d39-0cb9-4edc-870f-fb9155ee8a58"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090420Z:34586d39-0cb9-4edc-870f-fb9155ee8a58"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:04:20 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9e8e01cb-8b06-42b7-949e-50cd9a703e77"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee3023c9-cec9-4ac3-bb3d-ec287f82409d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090436Z:ee3023c9-cec9-4ac3-bb3d-ec287f82409d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:04:36 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "9392cf6b-a830-461e-b40c-84c3cf81e322"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-correlation-request-id": [
+ "7715c7f9-688d-4c69-9dc1-4bd45043f67b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090452Z:7715c7f9-688d-4c69-9dc1-4bd45043f67b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:04:52 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T09:03:53.27Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "20"
+ ],
+ "x-ms-request-id": [
+ "2d70518d-c038-451a-b305-55fc7247ae82"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e469ea3-3dee-4d22-8ed2-cde8dffa7bf9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090508Z:2e469ea3-3dee-4d22-8ed2-cde8dffa7bf9"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/operationResults/dc694465-df43-4f76-84de-a78461fbf53e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9vcGVyYXRpb25SZXN1bHRzL2RjNjk0NDY1LWRmNDMtNGY3Ni04NGRlLWE3ODQ2MWZiZjUzZT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLVByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f766f75-fb9d-4345-a572-4cb7fa874043"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686\",\r\n \"name\": \"onesdk686\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"296113e5-a169-4723-8c0f-4323ddcd917b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T09:03:53.957Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:15:12.067Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "816"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "40cfa596-25bf-4e50-965c-f8d4e2ebf890"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-correlation-request-id": [
+ "09d5e592-4dcd-445f-9a7c-f5c227666336"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090523Z:09d5e592-4dcd-445f-9a7c-f5c227666336"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:23 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL29uZXNkazk5ODQvZGF0YWJhc2VzL29uZXNkazY4Ni9yZXBsaWNhdGlvbkxpbmtzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f7c8c0b3-3dcf-449a-9c4d-60e6c7c735c9"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk899/providers/Microsoft.Sql/servers/onesdk9984/databases/onesdk686/replicationLinks/70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"name\": \"70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk2099\",\r\n \"partnerDatabase\": \"onesdk686\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"NonReadableSecondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"startTime\": \"2015-08-07T09:04:14.97\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "622"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "54637148-6d40-42d9-838e-dcae41153d59"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a3cb375-f3c1-482b-b360-ffe0f88b738b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090524Z:3a3cb375-f3c1-482b-b360-ffe0f88b738b"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:23 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI2MzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsyMDk5L2RhdGFiYXNlcy9vbmVzZGs2ODYvcmVwbGljYXRpb25MaW5rcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "90cd4607-59e2-4cd9-b0f4-0a2120bdd631"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2636/providers/Microsoft.Sql/servers/onesdk2099/databases/onesdk686/replicationLinks/70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"name\": \"70ef3c79-a6e5-4733-99d4-007e7aec199f\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9984\",\r\n \"partnerDatabase\": \"onesdk686\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"NonReadableSecondary\",\r\n \"startTime\": \"2015-08-07T09:04:14.157\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "624"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "3d42d670-2cf1-4c29-b4f0-ba4a43e63b0f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14957"
+ ],
+ "x-ms-correlation-request-id": [
+ "c49752c5-9164-4370-aba9-8b9a3c9d5dee"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090525Z:c49752c5-9164-4370-aba9-8b9a3c9d5dee"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:25 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2636?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI2MzY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-request-id": [
+ "f1d553b3-8825-48a2-966a-c0997327040d"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1d553b3-8825-48a2-966a-c0997327040d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090526Z:f1d553b3-8825-48a2-966a-c0997327040d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-request-id": [
+ "3b894c15-c181-414e-8fb1-781cabca05b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b894c15-c181-414e-8fb1-781cabca05b1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090526Z:3b894c15-c181-414e-8fb1-781cabca05b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "4059f33b-cb29-460e-b4d9-0483692b765e"
+ ],
+ "x-ms-correlation-request-id": [
+ "4059f33b-cb29-460e-b4d9-0483692b765e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090541Z:4059f33b-cb29-460e-b4d9-0483692b765e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "30e1cdfc-d8bf-458b-b2d7-0d4f50b418d5"
+ ],
+ "x-ms-correlation-request-id": [
+ "30e1cdfc-d8bf-458b-b2d7-0d4f50b418d5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090556Z:30e1cdfc-d8bf-458b-b2d7-0d4f50b418d5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:05:55 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-request-id": [
+ "63424615-b784-4eaf-8cc3-40296fd9269d"
+ ],
+ "x-ms-correlation-request-id": [
+ "63424615-b784-4eaf-8cc3-40296fd9269d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090611Z:63424615-b784-4eaf-8cc3-40296fd9269d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:06:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-request-id": [
+ "51a78f18-8cac-4b39-8ccf-07346713f169"
+ ],
+ "x-ms-correlation-request-id": [
+ "51a78f18-8cac-4b39-8ccf-07346713f169"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090626Z:51a78f18-8cac-4b39-8ccf-07346713f169"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:06:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14919"
+ ],
+ "x-ms-request-id": [
+ "76e3f3b0-c02a-4bf0-90b6-b404994dbf8c"
+ ],
+ "x-ms-correlation-request-id": [
+ "76e3f3b0-c02a-4bf0-90b6-b404994dbf8c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090641Z:76e3f3b0-c02a-4bf0-90b6-b404994dbf8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:06:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14918"
+ ],
+ "x-ms-request-id": [
+ "b6ee52d1-a6c6-4297-82d8-fcf4836f0cc6"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6ee52d1-a6c6-4297-82d8-fcf4836f0cc6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090656Z:b6ee52d1-a6c6-4297-82d8-fcf4836f0cc6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:06:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNjM2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOak0yTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14917"
+ ],
+ "x-ms-request-id": [
+ "c200e826-fc6a-4295-807a-61bc0bb8d45a"
+ ],
+ "x-ms-correlation-request-id": [
+ "c200e826-fc6a-4295-807a-61bc0bb8d45a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090711Z:c200e826-fc6a-4295-807a-61bc0bb8d45a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:07:11 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk899?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg5OT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-request-id": [
+ "bca5ed8a-ebeb-4bfe-a388-36b21b20035d"
+ ],
+ "x-ms-correlation-request-id": [
+ "bca5ed8a-ebeb-4bfe-a388-36b21b20035d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090711Z:bca5ed8a-ebeb-4bfe-a388-36b21b20035d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:07:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14915"
+ ],
+ "x-ms-request-id": [
+ "d0d19690-641f-481b-bbb7-8fd30e5d50b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0d19690-641f-481b-bbb7-8fd30e5d50b7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090712Z:d0d19690-641f-481b-bbb7-8fd30e5d50b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:07:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14914"
+ ],
+ "x-ms-request-id": [
+ "4582fa4f-028a-4a04-a790-fd84368ffc8f"
+ ],
+ "x-ms-correlation-request-id": [
+ "4582fa4f-028a-4a04-a790-fd84368ffc8f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090727Z:4582fa4f-028a-4a04-a790-fd84368ffc8f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:07:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14913"
+ ],
+ "x-ms-request-id": [
+ "ec868342-46d5-4947-9c7c-a82ed4ed721c"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec868342-46d5-4947-9c7c-a82ed4ed721c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090742Z:ec868342-46d5-4947-9c7c-a82ed4ed721c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:07:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14912"
+ ],
+ "x-ms-request-id": [
+ "0d1e66ad-187d-4869-a58c-ba8d8f7a92d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d1e66ad-187d-4869-a58c-ba8d8f7a92d6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090757Z:0d1e66ad-187d-4869-a58c-ba8d8f7a92d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:07:56 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14911"
+ ],
+ "x-ms-request-id": [
+ "4de4afd0-9126-4664-87dc-9484326b7abf"
+ ],
+ "x-ms-correlation-request-id": [
+ "4de4afd0-9126-4664-87dc-9484326b7abf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090812Z:4de4afd0-9126-4664-87dc-9484326b7abf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:08:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14910"
+ ],
+ "x-ms-request-id": [
+ "9b673f25-4ebf-45d0-a668-a5c3a04a7016"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b673f25-4ebf-45d0-a668-a5c3a04a7016"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090827Z:9b673f25-4ebf-45d0-a668-a5c3a04a7016"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:08:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14909"
+ ],
+ "x-ms-request-id": [
+ "1ac5fcd3-bc42-4455-a530-a8205499c3fe"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ac5fcd3-bc42-4455-a530-a8205499c3fe"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090842Z:1ac5fcd3-bc42-4455-a530-a8205499c3fe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:08:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4OTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczRPVGt0U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14908"
+ ],
+ "x-ms-request-id": [
+ "652c1a1f-03c1-4ef7-8e57-9eb3e36db982"
+ ],
+ "x-ms-correlation-request-id": [
+ "652c1a1f-03c1-4ef7-8e57-9eb3e36db982"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090857Z:652c1a1f-03c1-4ef7-8e57-9eb3e36db982"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:08:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-GetReplicationLink": [
+ "onesdk2636",
+ "onesdk2099",
+ "onesdk686",
+ "onesdk899",
+ "onesdk9984"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLinkV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLinkV2.json
new file mode 100644
index 000000000000..6445b3e62c4b
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestGetReplicationLinkV2.json
@@ -0,0 +1,2032 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-request-id": [
+ "c90f2be4-395d-4341-a595-e15bff58dc8c"
+ ],
+ "x-ms-correlation-request-id": [
+ "c90f2be4-395d-4341-a595-e15bff58dc8c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083640Z:c90f2be4-395d-4341-a595-e15bff58dc8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:40 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14955"
+ ],
+ "x-ms-request-id": [
+ "740ae1b0-ae50-41a0-8c35-6ddb86d874c8"
+ ],
+ "x-ms-correlation-request-id": [
+ "740ae1b0-ae50-41a0-8c35-6ddb86d874c8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083718Z:740ae1b0-ae50-41a0-8c35-6ddb86d874c8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:18 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922\",\r\n \"name\": \"onesdk4922\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-request-id": [
+ "4bd83613-f09e-4378-b71c-e6da3b6aca12"
+ ],
+ "x-ms-correlation-request-id": [
+ "4bd83613-f09e-4378-b71c-e6da3b6aca12"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083640Z:4bd83613-f09e-4378-b71c-e6da3b6aca12"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:40 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14964"
+ ],
+ "x-ms-request-id": [
+ "268b7678-9371-485b-b75a-59826a9c4b11"
+ ],
+ "x-ms-correlation-request-id": [
+ "268b7678-9371-485b-b75a-59826a9c4b11"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083640Z:268b7678-9371-485b-b75a-59826a9c4b11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:b61ae80d-3577-41fd-bc68-c67344feb8fc"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-correlation-request-id": [
+ "23848974-960c-424f-a015-0f03a4859685"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083640Z:23848974-960c-424f-a015-0f03a4859685"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b91fc705-b4e1-4d9b-a529-95ab4a8d0651"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7612' under resource group 'onesdk4922' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "15a62b5d-dfc3-477c-b8b3-d6dd70f8a656"
+ ],
+ "x-ms-correlation-request-id": [
+ "15a62b5d-dfc3-477c-b8b3-d6dd70f8a656"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083641Z:15a62b5d-dfc3-477c-b8b3-d6dd70f8a656"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:41 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "bbb163ab-196f-4192-92f2-63d35dc2ea87"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612\",\r\n \"name\": \"onesdk7612\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7612.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "805d4fdc-789f-4ca2-a17a-abe101808c68"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14961"
+ ],
+ "x-ms-correlation-request-id": [
+ "f280104a-50b5-4b15-9182-21112de2bf6a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083647Z:f280104a-50b5-4b15-9182-21112de2bf6a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:46 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "716f2d67-449f-4144-a10f-33e5659f6570"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612\",\r\n \"name\": \"onesdk7612\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7612.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "8b9406fe-7411-42b2-abf7-939e272745d4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9e9cd17-0ad8-4c62-a2c4-33f419bd042b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083646Z:c9e9cd17-0ad8-4c62-a2c4-33f419bd042b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:46 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612/databases/onesdk9027?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "2f508c57-166f-4c1d-8a6d-7d94f4a6e951"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk7612/databases/onesdk9027' under resource group 'onesdk4922' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "ecab81e0-eb93-47df-9182-eb40ff3debfa"
+ ],
+ "x-ms-correlation-request-id": [
+ "ecab81e0-eb93-47df-9182-eb40ff3debfa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083646Z:ecab81e0-eb93-47df-9182-eb40ff3debfa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:36:46 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612/databases/onesdk9027?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NjEyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "139"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "8429a9f6-41dc-4640-abee-20f9d5bce29a"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/servers/onesdk7612/databases/onesdk9027\",\r\n \"name\": \"onesdk9027\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d98c7b78-8ad3-4661-93bd-5eaa132fc73e\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:37:10.73Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T08:38:10.73Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "774"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "04f13768-ef8e-4cdc-a971-42c0378da42c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "ceb69a11-95bc-41f8-be7b-83e017f6c8bc"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083712Z:ceb69a11-95bc-41f8-be7b-83e017f6c8bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:12 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14960"
+ ],
+ "x-ms-request-id": [
+ "b8517e89-9544-4c89-ae57-10f96b4cac08"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8517e89-9544-4c89-ae57-10f96b4cac08"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083712Z:b8517e89-9544-4c89-ae57-10f96b4cac08"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:12 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14946"
+ ],
+ "x-ms-request-id": [
+ "ae6e24a8-654d-4e29-baca-1df113202182"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae6e24a8-654d-4e29-baca-1df113202182"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083904Z:ae6e24a8-654d-4e29-baca-1df113202182"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:39:04 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734\",\r\n \"name\": \"onesdk8734\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1183"
+ ],
+ "x-ms-request-id": [
+ "a884a10e-e817-4e8e-bbfc-38b1ccdeca66"
+ ],
+ "x-ms-correlation-request-id": [
+ "a884a10e-e817-4e8e-bbfc-38b1ccdeca66"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083712Z:a884a10e-e817-4e8e-bbfc-38b1ccdeca66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:12 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "303b34f2-2c04-49f0-bf1c-391a64e961e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "303b34f2-2c04-49f0-bf1c-391a64e961e7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083712Z:303b34f2-2c04-49f0-bf1c-391a64e961e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:a2f43020-2b9d-48b2-b06c-d13b541012f8"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14946"
+ ],
+ "x-ms-correlation-request-id": [
+ "08390bf0-28c1-4c6a-8df3-d141257a34c0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083713Z:08390bf0-28c1-4c6a-8df3-d141257a34c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:12 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "d239bd76-ee08-4f99-8b3f-b149b2a72705"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3572' under resource group 'onesdk8734' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "8386da47-7a50-4f41-a6f7-61fbe20de765"
+ ],
+ "x-ms-correlation-request-id": [
+ "8386da47-7a50-4f41-a6f7-61fbe20de765"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083713Z:8386da47-7a50-4f41-a6f7-61fbe20de765"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:12 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4de5d431-f086-4b77-bdd4-f3700b93aae5"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572\",\r\n \"name\": \"onesdk3572\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3572.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b5f2507f-ad06-489e-8fcc-113d2ded400d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14956"
+ ],
+ "x-ms-correlation-request-id": [
+ "237b8054-eb44-43e3-83ac-2b56c95dc1a2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083717Z:237b8054-eb44-43e3-83ac-2b56c95dc1a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "c3737bd7-74e3-4d74-bda0-bdfd9627d8c3"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572\",\r\n \"name\": \"onesdk3572\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3572.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "3a3abc53-9083-4fab-92ad-23462ac8dd1e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1182"
+ ],
+ "x-ms-correlation-request-id": [
+ "253f749f-ac69-4fdb-b8b5-e0fde87be72a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083717Z:253f749f-ac69-4fdb-b8b5-e0fde87be72a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572/databases/onesdk9027?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "33588e1d-7123-4596-a669-e44336a58144"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3572/databases/onesdk9027' under resource group 'onesdk8734' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "bd71b281-beb8-4fa5-be4a-ed69b29cc032"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd71b281-beb8-4fa5-be4a-ed69b29cc032"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083717Z:bd71b281-beb8-4fa5-be4a-ed69b29cc032"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:17 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk8734/providers/Microsoft.Sql/servers/onesdk3572/databases/onesdk9027?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazg3MzQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNTcyL2RhdGFiYXNlcy9vbmVzZGs5MDI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4922/providers/Microsoft.Sql/Servers/onesdk7612/databases/onesdk9027\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "290"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e62900a6-f466-4df2-81d7-22cbbe9236a4"
+ ]
+ },
+ "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "1d46324d-6c12-4582-b2f3-7539e19a86e2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1181"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbf969da-4100-45a8-86a4-5048d7227200"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083718Z:bbf969da-4100-45a8-86a4-5048d7227200"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:18 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 400
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4922?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1180"
+ ],
+ "x-ms-request-id": [
+ "b4653421-ef6d-4d8e-a6a5-6978a6c7a613"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4653421-ef6d-4d8e-a6a5-6978a6c7a613"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083719Z:b4653421-ef6d-4d8e-a6a5-6978a6c7a613"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-request-id": [
+ "7fbaa1d7-7cbe-4140-905f-18e6cccd079f"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fbaa1d7-7cbe-4140-905f-18e6cccd079f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083719Z:7fbaa1d7-7cbe-4140-905f-18e6cccd079f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14953"
+ ],
+ "x-ms-request-id": [
+ "52ed63ca-5977-43d4-a2f2-e79317ec60c6"
+ ],
+ "x-ms-correlation-request-id": [
+ "52ed63ca-5977-43d4-a2f2-e79317ec60c6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083734Z:52ed63ca-5977-43d4-a2f2-e79317ec60c6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:33 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-request-id": [
+ "8d80e647-444b-4eea-be7d-46f107b93184"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d80e647-444b-4eea-be7d-46f107b93184"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083749Z:8d80e647-444b-4eea-be7d-46f107b93184"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:37:49 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-request-id": [
+ "b5171d79-8954-4beb-acbd-9eeab5fca458"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5171d79-8954-4beb-acbd-9eeab5fca458"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083804Z:b5171d79-8954-4beb-acbd-9eeab5fca458"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:38:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14950"
+ ],
+ "x-ms-request-id": [
+ "101f2ba1-cfa3-4942-8012-a7f521a4f50e"
+ ],
+ "x-ms-correlation-request-id": [
+ "101f2ba1-cfa3-4942-8012-a7f521a4f50e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083819Z:101f2ba1-cfa3-4942-8012-a7f521a4f50e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:38:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
+ ],
+ "x-ms-request-id": [
+ "f61dd47e-cb82-4f25-9de3-5cba97c1ede2"
+ ],
+ "x-ms-correlation-request-id": [
+ "f61dd47e-cb82-4f25-9de3-5cba97c1ede2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083834Z:f61dd47e-cb82-4f25-9de3-5cba97c1ede2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:38:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14948"
+ ],
+ "x-ms-request-id": [
+ "f8c67d46-757d-4c3b-b72e-24c7e1bb8e9a"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8c67d46-757d-4c3b-b72e-24c7e1bb8e9a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083849Z:f8c67d46-757d-4c3b-b72e-24c7e1bb8e9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:38:48 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTIyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVEl5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14947"
+ ],
+ "x-ms-request-id": [
+ "b9abe67a-ae47-4337-a7b4-bf6df17668aa"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9abe67a-ae47-4337-a7b4-bf6df17668aa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083904Z:b9abe67a-ae47-4337-a7b4-bf6df17668aa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:39:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk8734?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazg3MzQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-request-id": [
+ "a31e20af-308a-4cca-bd97-926a51031039"
+ ],
+ "x-ms-correlation-request-id": [
+ "a31e20af-308a-4cca-bd97-926a51031039"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083904Z:a31e20af-308a-4cca-bd97-926a51031039"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:39:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14945"
+ ],
+ "x-ms-request-id": [
+ "ff0bf88f-7b3b-4d81-b371-bbdbf0828ee9"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff0bf88f-7b3b-4d81-b371-bbdbf0828ee9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083905Z:ff0bf88f-7b3b-4d81-b371-bbdbf0828ee9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:39:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14944"
+ ],
+ "x-ms-request-id": [
+ "022cdb10-7689-4e4c-a480-ab53e5032f94"
+ ],
+ "x-ms-correlation-request-id": [
+ "022cdb10-7689-4e4c-a480-ab53e5032f94"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083920Z:022cdb10-7689-4e4c-a480-ab53e5032f94"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:39:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-request-id": [
+ "142382c3-f373-47ea-9b36-600793a7c14b"
+ ],
+ "x-ms-correlation-request-id": [
+ "142382c3-f373-47ea-9b36-600793a7c14b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083935Z:142382c3-f373-47ea-9b36-600793a7c14b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:39:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-request-id": [
+ "a8147378-6df7-47a3-bb8d-a4738ccda2da"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8147378-6df7-47a3-bb8d-a4738ccda2da"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T083950Z:a8147378-6df7-47a3-bb8d-a4738ccda2da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:39:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-request-id": [
+ "ec5e3271-1f1b-440b-b48e-8f7199f489a6"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec5e3271-1f1b-440b-b48e-8f7199f489a6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084005Z:ec5e3271-1f1b-440b-b48e-8f7199f489a6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:40:05 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-request-id": [
+ "9b9cb75f-359e-408b-ae21-51f717093246"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b9cb75f-359e-408b-ae21-51f717093246"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084020Z:9b9cb75f-359e-408b-ae21-51f717093246"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:40:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-request-id": [
+ "bfd6e0b6-e491-4116-b9e0-35c0836c59ff"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfd6e0b6-e491-4116-b9e0-35c0836c59ff"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084035Z:bfd6e0b6-e491-4116-b9e0-35c0836c59ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:40:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NzM0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROek0wTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-request-id": [
+ "be033118-b01d-4edd-92cc-21ef5b5bc8b5"
+ ],
+ "x-ms-correlation-request-id": [
+ "be033118-b01d-4edd-92cc-21ef5b5bc8b5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T084050Z:be033118-b01d-4edd-92cc-21ef5b5bc8b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:40:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-GetReplicationLinkV2": [
+ "onesdk4922",
+ "onesdk7612",
+ "onesdk9027",
+ "onesdk8734",
+ "onesdk3572"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabase.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabase.json
new file mode 100644
index 000000000000..d3c2f3a03d99
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabase.json
@@ -0,0 +1,2908 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "1c2ed93f-5a64-4e2b-9872-cc101f60b178"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c2ed93f-5a64-4e2b-9872-cc101f60b178"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085219Z:1c2ed93f-5a64-4e2b-9872-cc101f60b178"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:52:19 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-request-id": [
+ "63a79c02-29ee-4344-95c8-8e003fbbf246"
+ ],
+ "x-ms-correlation-request-id": [
+ "63a79c02-29ee-4344-95c8-8e003fbbf246"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085648Z:63a79c02-29ee-4344-95c8-8e003fbbf246"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:48 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192\",\r\n \"name\": \"onesdk6192\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1178"
+ ],
+ "x-ms-request-id": [
+ "2622f921-947e-4498-aad1-082f5eb49918"
+ ],
+ "x-ms-correlation-request-id": [
+ "2622f921-947e-4498-aad1-082f5eb49918"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085220Z:2622f921-947e-4498-aad1-082f5eb49918"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:52:20 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-request-id": [
+ "8a606911-714d-4ab5-9b50-96e4fd98d460"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a606911-714d-4ab5-9b50-96e4fd98d460"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085220Z:8a606911-714d-4ab5-9b50-96e4fd98d460"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:52:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:b174e2b2-68d7-4f63-bfe7-17b3a82c5a2d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-correlation-request-id": [
+ "78bceb80-83c8-488d-8c8b-112c72f32280"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085220Z:78bceb80-83c8-488d-8c8b-112c72f32280"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:52:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1f9da47f-d82b-41b5-a2a0-2e8a900434dc"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9194' under resource group 'onesdk6192' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "a93c15e9-795a-4e92-963c-ce2a7be67872"
+ ],
+ "x-ms-correlation-request-id": [
+ "a93c15e9-795a-4e92-963c-ce2a7be67872"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085221Z:a93c15e9-795a-4e92-963c-ce2a7be67872"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:52:21 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3a71ec92-1ff4-4e52-b352-05698f4cb7e2"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194\",\r\n \"name\": \"onesdk9194\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9194.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "482ebf8e-79d9-4d7c-8617-711ecf1b0921"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-correlation-request-id": [
+ "98db6109-1225-422d-a66e-544c7e1a1f50"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085315Z:98db6109-1225-422d-a66e-544c7e1a1f50"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:53:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a8dbdc27-4237-49b1-a133-227d81d0326f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194\",\r\n \"name\": \"onesdk9194\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9194.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d1d9f056-7c56-475b-a88c-9e2d72e5e89f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-correlation-request-id": [
+ "f469eb03-324b-4c7d-9c6f-bb59c8542f5f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085315Z:f469eb03-324b-4c7d-9c6f-bb59c8542f5f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:53:15 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ac551329-6fe4-403a-8596-2b3d26259713"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9194/databases/onesdk7818' under resource group 'onesdk6192' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "8ad14161-1423-44e9-b9e2-8239d922eb51"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ad14161-1423-44e9-b9e2-8239d922eb51"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085315Z:8ad14161-1423-44e9-b9e2-8239d922eb51"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:53:15 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "135"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dc9cc2d5-241c-4625-8c08-0aa117206003"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T01:53:16.718-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "80"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f5d5d849-abf3-476c-9c11-8c5fbe466327"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1178"
+ ],
+ "x-ms-correlation-request-id": [
+ "6eb2f273-aebe-4dd5-ae27-c5724365f79d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085317Z:6eb2f273-aebe-4dd5-ae27-c5724365f79d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:53:16 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dc9cc2d5-241c-4625-8c08-0aa117206003"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "09386e97-1a4a-4df5-988e-7b1411cb7263"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e497ae8-871e-43c3-aabd-44bc9d05fc4a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085318Z:0e497ae8-871e-43c3-aabd-44bc9d05fc4a"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:53:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dc9cc2d5-241c-4625-8c08-0aa117206003"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "2db69e13-3d2e-4831-9d44-f31f73cb9c87"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-correlation-request-id": [
+ "5054bf83-e967-4fb7-aca5-a75fd82eb748"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085349Z:5054bf83-e967-4fb7-aca5-a75fd82eb748"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:53:49 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dc9cc2d5-241c-4625-8c08-0aa117206003"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "38e6ebaf-3ae8-47c6-aebd-8021627df0cb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc02efae-f0c4-4943-97ef-86719d32b185"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085405Z:dc02efae-f0c4-4943-97ef-86719d32b185"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dc9cc2d5-241c-4625-8c08-0aa117206003"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-08-07T08:53:16.687Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "2a942619-790a-4201-9dbe-4b057371110f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-correlation-request-id": [
+ "b445a674-67f8-418e-8c52-232d24da027c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085420Z:b445a674-67f8-418e-8c52-232d24da027c"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:20 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/operationResults/f5d5d849-abf3-476c-9c11-8c5fbe466327?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjVkNWQ4NDktYWJmMy00NzZjLTljMTEtOGM1ZmJlNDY2MzI3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dc9cc2d5-241c-4625-8c08-0aa117206003"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818\",\r\n \"name\": \"onesdk7818\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"689f05ba-a970-4ac5-b3a1-6e85f897514f\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:53:17.077Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:04:32.317Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "819"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d4832078-485c-4db5-845b-d2f7d467a860"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc504b49-f2a0-4c2d-b44c-d426bc4fb562"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085436Z:bc504b49-f2a0-4c2d-b44c-d426bc4fb562"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:36 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14970"
+ ],
+ "x-ms-request-id": [
+ "8b325f02-711a-4c6d-8c8a-25fca27e77ac"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b325f02-711a-4c6d-8c8a-25fca27e77ac"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085437Z:8b325f02-711a-4c6d-8c8a-25fca27e77ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:37 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14921"
+ ],
+ "x-ms-request-id": [
+ "33dec0d1-fa09-40e2-877d-5e4dfd3ec710"
+ ],
+ "x-ms-correlation-request-id": [
+ "33dec0d1-fa09-40e2-877d-5e4dfd3ec710"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085834Z:33dec0d1-fa09-40e2-877d-5e4dfd3ec710"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:58:34 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519\",\r\n \"name\": \"onesdk2519\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-request-id": [
+ "e4fe998d-64f3-4a08-bddf-f45ff7723a8a"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4fe998d-64f3-4a08-bddf-f45ff7723a8a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085437Z:e4fe998d-64f3-4a08-bddf-f45ff7723a8a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:37 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14969"
+ ],
+ "x-ms-request-id": [
+ "8e1b986e-d86d-4f5f-a2ab-a9448c0d2df5"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e1b986e-d86d-4f5f-a2ab-a9448c0d2df5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085437Z:8e1b986e-d86d-4f5f-a2ab-a9448c0d2df5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:37 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:2fc57ad0-609f-48ea-a5f5-01875be39c0c"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "64038788-9eb5-4807-8d40-2c0bcfb14a1d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085437Z:64038788-9eb5-4807-8d40-2c0bcfb14a1d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7ff059cd-274e-4bca-866d-974598f6e2d0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6934' under resource group 'onesdk2519' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "72e063f8-7d90-4550-9642-13ee65045375"
+ ],
+ "x-ms-correlation-request-id": [
+ "72e063f8-7d90-4550-9642-13ee65045375"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085437Z:72e063f8-7d90-4550-9642-13ee65045375"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:54:37 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3d5201ac-7efa-4123-b536-f42796224021"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934\",\r\n \"name\": \"onesdk6934\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6934.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "467"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "a200ed70-5650-42a6-8618-8dcd4f700f5a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e28175e-c30d-46c6-b53f-ff71e1b3f20d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085525Z:8e28175e-c30d-46c6-b53f-ff71e1b3f20d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:55:24 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Europe\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "180"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4957ae3a-8bdc-4ad2-93a5-3677e7c8323a"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934\",\r\n \"name\": \"onesdk6934\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6934.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "a22259a9-c241-4166-8670-0df215bf3082"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1177"
+ ],
+ "x-ms-correlation-request-id": [
+ "743a532b-0ca0-45d3-97ff-e54b8629b929"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085524Z:743a532b-0ca0-45d3-97ff-e54b8629b929"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:55:24 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "8f2dc0d2-5a53-4fe3-a8b3-7f2f09f8ab48"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk6934/databases/onesdk7818' under resource group 'onesdk2519' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "f39d6560-6fe1-46d5-b4ac-a524e52eba03"
+ ],
+ "x-ms-correlation-request-id": [
+ "f39d6560-6fe1-46d5-b4ac-a524e52eba03"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085525Z:f39d6560-6fe1-46d5-b4ac-a524e52eba03"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:55:24 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/Servers/onesdk9194/databases/onesdk7818\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "286"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "09fd13b1-5529-4c23-9eda-63f779998f32"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T01:55:25.981-07:00\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "79"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "f0320364-2210-44f5-a0ab-500777882a67"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1176"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd38cb86-d8ab-45e3-8d98-194af2f44ff1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085526Z:dd38cb86-d8ab-45e3-8d98-194af2f44ff1"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:55:26 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "09fd13b1-5529-4c23-9eda-63f779998f32"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "2304a860-66f3-40cc-ae5a-6209f8999137"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d0d1f1b-6369-4c2b-ac22-fcc73ce4948d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085527Z:1d0d1f1b-6369-4c2b-ac22-fcc73ce4948d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:55:26 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "09fd13b1-5529-4c23-9eda-63f779998f32"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "c04ae5ce-4816-4a16-b718-99bea9cc4b3e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-correlation-request-id": [
+ "582bef2c-e1cf-432b-956f-6f607e0decd4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085538Z:582bef2c-e1cf-432b-956f-6f607e0decd4"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:55:38 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "09fd13b1-5529-4c23-9eda-63f779998f32"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "a1ee6cb8-9b1f-4d00-b6a9-599a20d67244"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-correlation-request-id": [
+ "49cc5afd-0bf2-4600-bc63-5690beae42fb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085554Z:49cc5afd-0bf2-4600-bc63-5690beae42fb"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:55:53 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "09fd13b1-5529-4c23-9eda-63f779998f32"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "38f1bd10-1887-413c-b7cf-04a986d51b94"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb72833a-4eca-455b-81dc-fc762431f550"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085609Z:eb72833a-4eca-455b-81dc-fc762431f550"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "09fd13b1-5529-4c23-9eda-63f779998f32"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateDatabaseAsCopy\",\r\n \"startTime\": \"2015-08-07T08:55:26.31Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "d23c6073-50bc-4020-ab86-560edb015e22"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9c236c6-c8cb-434b-b2c2-87b2834fb018"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085625Z:b9c236c6-c8cb-434b-b2c2-87b2834fb018"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:25 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/operationResults/f0320364-2210-44f5-a0ab-500777882a67?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L29wZXJhdGlvblJlc3VsdHMvZjAzMjAzNjQtMjIxMC00NGY1LWEwYWItNTAwNzc3ODgyYTY3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "09fd13b1-5529-4c23-9eda-63f779998f32"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818\",\r\n \"name\": \"onesdk7818\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Europe\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ac399a5d-683d-4859-89d4-be2372d4e508\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T08:55:26.997Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"East US 2\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:06:36.653Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "819"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "55865a5d-f8d2-4033-884b-4cbea861e24c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-correlation-request-id": [
+ "360b5116-d06e-48ba-866f-c38382abada6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085641Z:360b5116-d06e-48ba-866f-c38382abada6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:40 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazI1MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2OTM0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a3782b23-6af0-45aa-be51-25228fd94b11"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk2519/providers/Microsoft.Sql/servers/onesdk6934/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"name\": \"f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk9194\",\r\n \"partnerDatabase\": \"onesdk7818\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"NonReadableSecondary\",\r\n \"partnerRole\": \"Primary\",\r\n \"startTime\": \"2015-08-07T08:55:58.01\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "625"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "61d3af71-0595-47bd-bc10-7fb3c0377f33"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-correlation-request-id": [
+ "07032627-df8b-4838-bf8b-0ba2bc34293a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085642Z:07032627-df8b-4838-bf8b-0ba2bc34293a"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:42 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9f9e50c6-a8e1-4d4f-a6a3-f29c36ade2e0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"name\": \"f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6934\",\r\n \"partnerDatabase\": \"onesdk7818\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"NonReadableSecondary\",\r\n \"startTime\": \"2015-08-07T08:55:57.637\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "626"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "7925bfaf-ae83-4dd2-a578-6acf518b1254"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-correlation-request-id": [
+ "d60a9540-6d81-4906-89b4-6c29427e8e06"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085643Z:d60a9540-6d81-4906-89b4-6c29427e8e06"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:42 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3M/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a06e2e97-d9e6-43d7-b551-dc3be94988bc"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"name\": \"f0c75cee-f246-476b-a4eb-93bb94cc191b\",\r\n \"type\": \"Microsoft.Sql/servers/databases/replicationLinks\",\r\n \"location\": \"North Europe\",\r\n \"properties\": {\r\n \"partnerServer\": \"onesdk6934\",\r\n \"partnerDatabase\": \"onesdk7818\",\r\n \"partnerLocation\": \"North Europe\",\r\n \"role\": \"Primary\",\r\n \"partnerRole\": \"NonReadableSecondary\",\r\n \"startTime\": \"2015-08-07T08:55:57.637\",\r\n \"percentComplete\": 100,\r\n \"replicationState\": \"CATCH_UP\",\r\n \"isTerminationAllowed\": true\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "626"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "2b34ab5f-00ee-4895-b954-eb6fef8da495"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cdc5e65-7bbf-42ae-8395-d4cca3ff657c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085643Z:3cdc5e65-7bbf-42ae-8395-d4cca3ff657c"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:43 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk6192/providers/Microsoft.Sql/servers/onesdk9194/databases/onesdk7818/replicationLinks/f0c75cee-f246-476b-a4eb-93bb94cc191b?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazYxOTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MTk0L2RhdGFiYXNlcy9vbmVzZGs3ODE4L3JlcGxpY2F0aW9uTGlua3MvZjBjNzVjZWUtZjI0Ni00NzZiLWE0ZWItOTNiYjk0Y2MxOTFiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "12d00e0d-a483-4d3b-8e03-de13cc4b6b4b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"code\": \"MethodNotAllowed\",\r\n \"message\": \"Operation is not allowed on the resource.\",\r\n \"target\": null,\r\n \"details\": [],\r\n \"innererror\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "124"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "x-ms-request-id": [
+ "f31908e2-d20f-4bce-80fc-814c50200d0e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1175"
+ ],
+ "x-ms-correlation-request-id": [
+ "17f76271-aaed-4c02-9ae2-3f561433eb36"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085648Z:17f76271-aaed-4c02-9ae2-3f561433eb36"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:47 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 405
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk6192?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazYxOTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-request-id": [
+ "5e8e17b1-3a39-473f-8005-f1a7cc832a49"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e8e17b1-3a39-473f-8005-f1a7cc832a49"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085649Z:5e8e17b1-3a39-473f-8005-f1a7cc832a49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:48 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-request-id": [
+ "03a84249-d51e-4039-ad54-635efd297ba4"
+ ],
+ "x-ms-correlation-request-id": [
+ "03a84249-d51e-4039-ad54-635efd297ba4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085649Z:03a84249-d51e-4039-ad54-635efd297ba4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:56:48 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-request-id": [
+ "46872d1e-d662-46fa-b9a5-b0a748e347d3"
+ ],
+ "x-ms-correlation-request-id": [
+ "46872d1e-d662-46fa-b9a5-b0a748e347d3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085704Z:46872d1e-d662-46fa-b9a5-b0a748e347d3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:57:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-request-id": [
+ "7249ca45-82d5-47cb-b5af-fcd87edf3088"
+ ],
+ "x-ms-correlation-request-id": [
+ "7249ca45-82d5-47cb-b5af-fcd87edf3088"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085719Z:7249ca45-82d5-47cb-b5af-fcd87edf3088"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:57:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-request-id": [
+ "4cc1cddf-9b87-4a20-9fb7-f4536ac36426"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cc1cddf-9b87-4a20-9fb7-f4536ac36426"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085734Z:4cc1cddf-9b87-4a20-9fb7-f4536ac36426"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:57:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-request-id": [
+ "be2bf34b-42a2-40b5-ab17-5ead58be6ea6"
+ ],
+ "x-ms-correlation-request-id": [
+ "be2bf34b-42a2-40b5-ab17-5ead58be6ea6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085749Z:be2bf34b-42a2-40b5-ab17-5ead58be6ea6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:57:49 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-request-id": [
+ "0f09b9fc-a0d4-4740-8ef1-f986c58203bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f09b9fc-a0d4-4740-8ef1-f986c58203bd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085804Z:0f09b9fc-a0d4-4740-8ef1-f986c58203bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:58:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "a7c4c628-bf03-483e-bedb-7fa89f8bfb09"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7c4c628-bf03-483e-bedb-7fa89f8bfb09"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085819Z:a7c4c628-bf03-483e-bedb-7fa89f8bfb09"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:58:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2MTkyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJNVGt5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "a2a30d24-21a5-4196-a686-e49319738624"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2a30d24-21a5-4196-a686-e49319738624"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085834Z:a2a30d24-21a5-4196-a686-e49319738624"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:58:34 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk2519?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazI1MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1178"
+ ],
+ "x-ms-request-id": [
+ "8d0f17cb-1e34-4c7d-ba45-cca1046e41d6"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d0f17cb-1e34-4c7d-ba45-cca1046e41d6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085835Z:8d0f17cb-1e34-4c7d-ba45-cca1046e41d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:58:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-request-id": [
+ "4d8e8b87-a880-446f-a0c3-cc6e88833f48"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d8e8b87-a880-446f-a0c3-cc6e88833f48"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085835Z:4d8e8b87-a880-446f-a0c3-cc6e88833f48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:58:34 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14919"
+ ],
+ "x-ms-request-id": [
+ "35b8bd6d-fefb-4427-b4cc-edaef0da9472"
+ ],
+ "x-ms-correlation-request-id": [
+ "35b8bd6d-fefb-4427-b4cc-edaef0da9472"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085850Z:35b8bd6d-fefb-4427-b4cc-edaef0da9472"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:58:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14918"
+ ],
+ "x-ms-request-id": [
+ "c02da2dd-b687-44d5-b174-d564162e0cb1"
+ ],
+ "x-ms-correlation-request-id": [
+ "c02da2dd-b687-44d5-b174-d564162e0cb1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085905Z:c02da2dd-b687-44d5-b174-d564162e0cb1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:59:04 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14917"
+ ],
+ "x-ms-request-id": [
+ "d61ce202-1f1d-4bc5-af47-db5aa106fc1b"
+ ],
+ "x-ms-correlation-request-id": [
+ "d61ce202-1f1d-4bc5-af47-db5aa106fc1b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085920Z:d61ce202-1f1d-4bc5-af47-db5aa106fc1b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:59:20 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14916"
+ ],
+ "x-ms-request-id": [
+ "c49c0ae5-ae37-4be1-b4cb-f97b3fcde507"
+ ],
+ "x-ms-correlation-request-id": [
+ "c49c0ae5-ae37-4be1-b4cb-f97b3fcde507"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085935Z:c49c0ae5-ae37-4be1-b4cb-f97b3fcde507"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:59:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14915"
+ ],
+ "x-ms-request-id": [
+ "bd46fb1b-c88c-4c07-8be0-cb6fdaf628c9"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd46fb1b-c88c-4c07-8be0-cb6fdaf628c9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T085950Z:bd46fb1b-c88c-4c07-8be0-cb6fdaf628c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:59:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14914"
+ ],
+ "x-ms-request-id": [
+ "128624bb-a794-4fc5-8153-0156d45eda10"
+ ],
+ "x-ms-correlation-request-id": [
+ "128624bb-a794-4fc5-8153-0156d45eda10"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090005Z:128624bb-a794-4fc5-8153-0156d45eda10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:00:05 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyNTE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lOVEU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14913"
+ ],
+ "x-ms-request-id": [
+ "010fed1b-29aa-4511-9fe9-ce29588474de"
+ ],
+ "x-ms-correlation-request-id": [
+ "010fed1b-29aa-4511-9fe9-ce29588474de"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090020Z:010fed1b-29aa-4511-9fe9-ce29588474de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:00:20 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RemoveSecondaryDatabase": [
+ "onesdk6192",
+ "onesdk9194",
+ "onesdk7818",
+ "onesdk2519",
+ "onesdk6934"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabaseV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabaseV2.json
new file mode 100644
index 000000000000..9d135280b010
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/fix/TestRemoveSecondaryDatabaseV2.json
@@ -0,0 +1,2032 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14943"
+ ],
+ "x-ms-request-id": [
+ "ec7a1eb9-f143-4782-b30d-2c7291b1dbe6"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec7a1eb9-f143-4782-b30d-2c7291b1dbe6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090941Z:ec7a1eb9-f143-4782-b30d-2c7291b1dbe6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:41 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14939"
+ ],
+ "x-ms-request-id": [
+ "265f76c9-ee91-43a6-8168-5e7bb817cba1"
+ ],
+ "x-ms-correlation-request-id": [
+ "265f76c9-ee91-43a6-8168-5e7bb817cba1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090958Z:265f76c9-ee91-43a6-8168-5e7bb817cba1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:57 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204\",\r\n \"name\": \"onesdk7204\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1179"
+ ],
+ "x-ms-request-id": [
+ "94c92635-fabe-4c8b-973e-621077fc1d17"
+ ],
+ "x-ms-correlation-request-id": [
+ "94c92635-fabe-4c8b-973e-621077fc1d17"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090941Z:94c92635-fabe-4c8b-973e-621077fc1d17"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:41 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14942"
+ ],
+ "x-ms-request-id": [
+ "c37fdaec-f81f-4651-ad2d-120cc9a7d582"
+ ],
+ "x-ms-correlation-request-id": [
+ "c37fdaec-f81f-4651-ad2d-120cc9a7d582"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090941Z:c37fdaec-f81f-4651-ad2d-120cc9a7d582"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:41 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:5c18f955-cbcc-4b5b-b591-7a847d06e96a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-correlation-request-id": [
+ "014fac7c-03f7-42b7-bdca-91a846e70187"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090941Z:014fac7c-03f7-42b7-bdca-91a846e70187"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:40 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "38b6b9db-ee47-4bc1-9632-c2c21bf4314d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9080' under resource group 'onesdk7204' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "3859d815-2811-4391-874f-f2deb0c51bf2"
+ ],
+ "x-ms-correlation-request-id": [
+ "3859d815-2811-4391-874f-f2deb0c51bf2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090941Z:3859d815-2811-4391-874f-f2deb0c51bf2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:41 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "6d14eff8-c653-4eb8-9ccb-d130d770e33e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080\",\r\n \"name\": \"onesdk9080\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9080.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "4b633186-fc87-4595-af29-6a654e316df0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-correlation-request-id": [
+ "829af16f-cc65-4904-ae39-7470be414cb0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090947Z:829af16f-cc65-4904-ae39-7470be414cb0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:47 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b04bd955-b03f-4439-b1bd-38508e6984a5"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080\",\r\n \"name\": \"onesdk9080\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9080.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "30f6fba2-8896-4b17-8aef-c4eb7308671b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1187"
+ ],
+ "x-ms-correlation-request-id": [
+ "d941dfcb-ffb2-47b0-bdce-1d63e4c739d8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090947Z:d941dfcb-ffb2-47b0-bdce-1d63e4c739d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:47 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080/databases/onesdk1558?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b8d55351-aab9-4503-a058-9c5ad4d9be25"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk9080/databases/onesdk1558' under resource group 'onesdk7204' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "ac1a0a52-235e-47aa-ba0c-89ee42f55e55"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac1a0a52-235e-47aa-ba0c-89ee42f55e55"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090947Z:ac1a0a52-235e-47aa-ba0c-89ee42f55e55"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:47 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080/databases/onesdk1558?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazcyMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDgwL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"104857600\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "139"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "b4ea5b98-7f68-4c0f-b29b-879c89fafd4f"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/servers/onesdk9080/databases/onesdk1558\",\r\n \"name\": \"onesdk1558\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f1ce7b22-1e20-423f-a1d7-f1f3578a93e8\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"104857600\",\r\n \"creationDate\": \"2015-08-07T09:09:50.24Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-08-07T09:10:50.24Z\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "774"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "6fe94db6-03e5-479a-a0e4-8aa43da31776"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1186"
+ ],
+ "x-ms-correlation-request-id": [
+ "521be526-163f-41a3-ae84-f8d10385d1dc"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090951Z:521be526-163f-41a3-ae84-f8d10385d1dc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:51 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "102"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14941"
+ ],
+ "x-ms-request-id": [
+ "3dbabd82-cb8c-4ac2-94b0-390ad662b85e"
+ ],
+ "x-ms-correlation-request-id": [
+ "3dbabd82-cb8c-4ac2-94b0-390ad662b85e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090951Z:3dbabd82-cb8c-4ac2-94b0-390ad662b85e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:51 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "HEAD",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-request-id": [
+ "891132c8-f15a-4e33-8df6-a85458978715"
+ ],
+ "x-ms-correlation-request-id": [
+ "891132c8-f15a-4e33-8df6-a85458978715"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091144Z:891132c8-f15a-4e33-8df6-a85458978715"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:11:43 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "32"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602\",\r\n \"name\": \"onesdk4602\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "176"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1178"
+ ],
+ "x-ms-request-id": [
+ "cd6c9b65-880d-415f-81c3-88bd593ab103"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd6c9b65-880d-415f-81c3-88bd593ab103"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090951Z:cd6c9b65-880d-415f-81c3-88bd593ab103"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:51 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14940"
+ ],
+ "x-ms-request-id": [
+ "b123af22-8666-4e3c-8f13-7a1e679113cd"
+ ],
+ "x-ms-correlation-request-id": [
+ "b123af22-8666-4e3c-8f13-7a1e679113cd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090952Z:b123af22-8666-4e3c-8f13-7a1e679113cd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "45"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Vary": [
+ "Accept-Encoding"
+ ],
+ "x-ms-request-id": [
+ "centralus:22a271aa-a0ef-464d-a9df-ecd8aa3e3c88"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14958"
+ ],
+ "x-ms-correlation-request-id": [
+ "9667c357-0345-452e-a50e-1484820c7396"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090952Z:9667c357-0345-452e-a50e-1484820c7396"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7555e3aa-364d-4ff5-acd3-c40e796a956e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3611' under resource group 'onesdk4602' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "146"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "5ffeee19-f703-450d-b484-ed6b4a7d1d49"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ffeee19-f703-450d-b484-ed6b4a7d1d49"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090952Z:5ffeee19-f703-450d-b484-ed6b4a7d1d49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:51 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "ea9b2ce2-6d5d-4bdb-ace0-66460332b15d"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611\",\r\n \"name\": \"onesdk3611\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3611.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "a4fa471a-bf3c-4a33-a65b-dfc22edfb969"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14951"
+ ],
+ "x-ms-correlation-request-id": [
+ "c635c88b-52b3-4488-aebd-8a3d6c57edfa"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090957Z:c635c88b-52b3-4488-aebd-8a3d6c57edfa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:56 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"2.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"North Central US\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f3ab0404-9e46-4a17-aa63-3c9d43796a6b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611\",\r\n \"name\": \"onesdk3611\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3611.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"2.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "995b1f33-79c8-4c9e-b0c1-835471cce18b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1185"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc91d115-98de-45ca-95e5-1f4a6e4a7039"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090956Z:fc91d115-98de-45ca-95e5-1f4a6e4a7039"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:55 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611/databases/onesdk1558?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9e5fb792-5a09-4fba-ae1a-8322c4f2b085"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Sql/servers/onesdk3611/databases/onesdk1558' under resource group 'onesdk4602' was not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "167"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "413f6124-c833-48c0-83e9-510254d76c9c"
+ ],
+ "x-ms-correlation-request-id": [
+ "413f6124-c833-48c0-83e9-510254d76c9c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090956Z:413f6124-c833-48c0-83e9-510254d76c9c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:56 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk4602/providers/Microsoft.Sql/servers/onesdk3611/databases/onesdk1558?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlR3JvdXBzL29uZXNkazQ2MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszNjExL2RhdGFiYXNlcy9vbmVzZGsxNTU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourceDatabaseId\": \"/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourceGroups/onesdk7204/providers/Microsoft.Sql/Servers/onesdk9080/databases/onesdk1558\",\r\n \"createMode\": \"NonReadableSecondary\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "290"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "aecb4bf1-1b90-4abb-aec1-1fb4424476ef"
+ ]
+ },
+ "ResponseBody": "{\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"40619\",\r\n \"message\": \"The edition 'Standard' does not support the database max size '-1'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "acb11f9c-6874-48af-8e6b-65d044bf0ee1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1184"
+ ],
+ "x-ms-correlation-request-id": [
+ "c174f327-7419-4981-985f-e963271d6793"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090957Z:c174f327-7419-4981-985f-e963271d6793"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:57 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 400
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk7204?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazcyMDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1177"
+ ],
+ "x-ms-request-id": [
+ "360e2858-d657-4ba1-b948-7b968c060653"
+ ],
+ "x-ms-correlation-request-id": [
+ "360e2858-d657-4ba1-b948-7b968c060653"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090958Z:360e2858-d657-4ba1-b948-7b968c060653"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14938"
+ ],
+ "x-ms-request-id": [
+ "3ce0e56d-161d-45da-810c-8b77de9c0ee2"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ce0e56d-161d-45da-810c-8b77de9c0ee2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T090958Z:3ce0e56d-161d-45da-810c-8b77de9c0ee2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:09:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14937"
+ ],
+ "x-ms-request-id": [
+ "de06b9f2-c461-44a1-8eab-26ced5a5ac62"
+ ],
+ "x-ms-correlation-request-id": [
+ "de06b9f2-c461-44a1-8eab-26ced5a5ac62"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091013Z:de06b9f2-c461-44a1-8eab-26ced5a5ac62"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:10:12 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14936"
+ ],
+ "x-ms-request-id": [
+ "1bd7d9ac-895d-43af-9129-72cb7c1a49ee"
+ ],
+ "x-ms-correlation-request-id": [
+ "1bd7d9ac-895d-43af-9129-72cb7c1a49ee"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091028Z:1bd7d9ac-895d-43af-9129-72cb7c1a49ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:10:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14935"
+ ],
+ "x-ms-request-id": [
+ "1381e36a-0e50-4fbe-b9d3-ce8ce83dfb6c"
+ ],
+ "x-ms-correlation-request-id": [
+ "1381e36a-0e50-4fbe-b9d3-ce8ce83dfb6c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091043Z:1381e36a-0e50-4fbe-b9d3-ce8ce83dfb6c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:10:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14934"
+ ],
+ "x-ms-request-id": [
+ "383f8cb6-8e16-47ab-a5ea-d8f479ad0e4f"
+ ],
+ "x-ms-correlation-request-id": [
+ "383f8cb6-8e16-47ab-a5ea-d8f479ad0e4f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091058Z:383f8cb6-8e16-47ab-a5ea-d8f479ad0e4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:10:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14933"
+ ],
+ "x-ms-request-id": [
+ "1bbd3125-e187-4a37-90c7-501b1bedc683"
+ ],
+ "x-ms-correlation-request-id": [
+ "1bbd3125-e187-4a37-90c7-501b1bedc683"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091113Z:1bbd3125-e187-4a37-90c7-501b1bedc683"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:11:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14932"
+ ],
+ "x-ms-request-id": [
+ "59f1357b-f75b-47f3-a160-bca0c67871e7"
+ ],
+ "x-ms-correlation-request-id": [
+ "59f1357b-f75b-47f3-a160-bca0c67871e7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091128Z:59f1357b-f75b-47f3-a160-bca0c67871e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:11:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3MjA0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNNakEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14931"
+ ],
+ "x-ms-request-id": [
+ "c84fe705-099c-4b61-822c-cc20685c7cc0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c84fe705-099c-4b61-822c-cc20685c7cc0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091143Z:c84fe705-099c-4b61-822c-cc20685c7cc0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:11:43 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/resourcegroups/onesdk4602?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ2MDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1177"
+ ],
+ "x-ms-request-id": [
+ "c302e47e-6990-4e29-8d00-89b1b1831086"
+ ],
+ "x-ms-correlation-request-id": [
+ "c302e47e-6990-4e29-8d00-89b1b1831086"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091144Z:c302e47e-6990-4e29-8d00-89b1b1831086"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:11:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14929"
+ ],
+ "x-ms-request-id": [
+ "7254a56b-ae10-4879-9903-1d710852f3a8"
+ ],
+ "x-ms-correlation-request-id": [
+ "7254a56b-ae10-4879-9903-1d710852f3a8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091144Z:7254a56b-ae10-4879-9903-1d710852f3a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:11:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14928"
+ ],
+ "x-ms-request-id": [
+ "1c9ebbe0-4fde-48a3-9fa1-72f81bec5606"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c9ebbe0-4fde-48a3-9fa1-72f81bec5606"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091159Z:1c9ebbe0-4fde-48a3-9fa1-72f81bec5606"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:11:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14927"
+ ],
+ "x-ms-request-id": [
+ "5d345e68-e075-439b-b83c-dfe7e9a65c57"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d345e68-e075-439b-b83c-dfe7e9a65c57"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091214Z:5d345e68-e075-439b-b83c-dfe7e9a65c57"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:12:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14926"
+ ],
+ "x-ms-request-id": [
+ "055def36-b1fd-4dcf-ad3c-571a5ad6bff2"
+ ],
+ "x-ms-correlation-request-id": [
+ "055def36-b1fd-4dcf-ad3c-571a5ad6bff2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091229Z:055def36-b1fd-4dcf-ad3c-571a5ad6bff2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:12:28 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14925"
+ ],
+ "x-ms-request-id": [
+ "1924450d-b74e-4424-9a25-322f925ff01f"
+ ],
+ "x-ms-correlation-request-id": [
+ "1924450d-b74e-4424-9a25-322f925ff01f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091244Z:1924450d-b74e-4424-9a25-322f925ff01f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:12:44 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14924"
+ ],
+ "x-ms-request-id": [
+ "d386359d-a152-489d-9e07-6b614dfac25e"
+ ],
+ "x-ms-correlation-request-id": [
+ "d386359d-a152-489d-9e07-6b614dfac25e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091259Z:d386359d-a152-489d-9e07-6b614dfac25e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:12:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14923"
+ ],
+ "x-ms-request-id": [
+ "98850120-3544-470e-940c-0cdffede435f"
+ ],
+ "x-ms-correlation-request-id": [
+ "98850120-3544-470e-940c-0cdffede435f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091315Z:98850120-3544-470e-940c-0cdffede435f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:13:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/2295ee31-27e3-4b1d-b5c1-6c73d1265f4e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0NjAyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjI5NWVlMzEtMjdlMy00YjFkLWI1YzEtNmM3M2QxMjY1ZjRlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBOakF5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-04-01-preview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14922"
+ ],
+ "x-ms-request-id": [
+ "c831c0a6-07e1-4220-a5b4-dec80a441504"
+ ],
+ "x-ms-correlation-request-id": [
+ "c831c0a6-07e1-4220-a5b4-dec80a441504"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150807T091330Z:c831c0a6-07e1-4220-a5b4-dec80a441504"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 09:13:29 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RemoveSecondaryDatabaseV2": [
+ "onesdk7204",
+ "onesdk9080",
+ "onesdk1558",
+ "onesdk4602",
+ "onesdk3611"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "2295ee31-27e3-4b1d-b5c1-6c73d1265f4e"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj
index 394e47a8b9ce..5ec37e5639fd 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj
+++ b/src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj
@@ -51,6 +51,31 @@
false
+
+
+
+
+
+
+
+
+
+ True
+ True
+ Resources.resx
+
+
+ Always
+
+
+ Designer
+
+
+
+ Always
+ Designer
+
+
@@ -65,6 +90,10 @@
+
+
+
+
@@ -81,86 +110,35 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Always
-
-
-
+
+
+
+
+
+
+
+
-
-
+
-
+
+
-
@@ -174,43 +152,83 @@
-
-
- True
- True
- Resources.resx
-
-
-
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
-
- Designer
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.Types.ps1xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.Types.ps1xml
new file mode 100644
index 000000000000..204ebf082aca
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.Types.ps1xml
@@ -0,0 +1,56 @@
+
+
+
+ Microsoft.Azure.Commands.Sql.Replication.Model.AzureReplicationLinkModel
+
+
+ PSStandardMembers
+
+
+ DefaultDisplayPropertySet
+
+ LinkId
+ ResourceGroupName
+ ServerName
+ DatabaseName
+ Role
+ Location
+ PartnerResourceGroupName
+ PartnerServerName
+ PartnerRole
+ PartnerLocation
+ AllowConnections
+ ReplicationState
+ PercentComplete
+ StartTime
+
+
+
+
+
+
+
+ Microsoft.Azure.Commands.Sql.Replication.Model.AzureSqlDatabaseCopyModel
+
+
+ PSStandardMembers
+
+
+ DefaultDisplayPropertySet
+
+ ResourceGroupName
+ ServerName
+ DatabaseName
+ Location
+ CopyResourceGroupName
+ CopyServerName
+ CopyDatabaseName
+ CopyLocation
+ CreationDate
+
+
+
+
+
+
+
diff --git a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml
index 7c6f6422c2d5..9aec3209acdd 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml
+++ b/src/ResourceManager/Sql/Commands.Sql/Microsoft.Azure.Commands.Sql.dll-Help.xml
@@ -2,51 +2,44 @@
- Disable-AzureSqlDatabaseDirectAccess
+ Get-AzureSqlDatabase
- Disables the option to directly access an Azure SQL Database (without auditing).
+ Returns one or more Azure SQL Database.
- Disable
- AzureSqlDatabaseDirectAccess
+ Get
+ AzureSqlDatabase
- The Disable-AzureSqlDatabaseDirectAccess cmdlet disables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet, directly accessing an Azure Sql Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName)
+ Use this cmdlet to retrieve one or more Azure SQL Database from an Azure SQL Database Server.
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Disable-AzureSqlDatabaseDirectAccess
-
- PassThru
+ Get-AzureSqlDatabase
+
+ DatabaseName
- Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+ The name of the Azure SQL Database to retrieve.
- SwitchParameter
+ String
ServerName
- Specifies the name of the database server holding the database.
-
- String
-
-
- DatabaseName
-
- Specifies the name of the database. Wildcards are not permitted.
+ The name of the Azure SQL Database Server the database is in.
String
ResourceGroupName
- Specifies the name of the resource group of the database.
+ The name of the resource group of the server containing the database to retrieve.
String
@@ -60,22 +53,10 @@ Switch-AzureMode –Name AzureResourceManager
-
- PassThru
-
- Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
-
- SwitchParameter
-
- SwitchParameter
-
-
- none
-
-
- ServerName
+
+ DatabaseName
- Specifies the name of the database server holding the database.
+ The name of the Azure SQL Database to retrieve.
String
@@ -84,10 +65,10 @@ Switch-AzureMode –Name AzureResourceManager
none
-
- DatabaseName
+
+ ServerName
- Specifies the name of the database. Wildcards are not permitted.
+ The name of the Azure SQL Database Server the database is in.
String
@@ -99,7 +80,7 @@ Switch-AzureMode –Name AzureResourceManager
ResourceGroupName
- Specifies the name of the resource group of the database.
+ The name of the resource group of the server containing the database to retrieve.
String
@@ -129,7 +110,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+System.String
@@ -141,7 +123,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel
+
+System.Object
@@ -155,13 +138,33 @@ Switch-AzureMode –Name AzureResourceManager
- -------------------------- Code Example --------------------------
+ -------------------------- Code Example 1 --------------------------
PS C:\>
- PS C:\>Disable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
+ PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1"
+ This example returns all databases on server, "server1".
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Code Example 2 --------------------------
+
+ PS C:\>
+
+ PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1"
+
+ This example returns database named "database1", from server "server1".
@@ -181,7 +184,15 @@ Switch-AzureMode –Name AzureResourceManager
- Enable-AzureSqlDatabaseDirectAccess
+ New-AzureSqlDatabase
+
+
+
+ Remove-AzureSqlDatabase
+
+
+
+ Set-AzureSqlDatabase
@@ -189,51 +200,59 @@ Switch-AzureMode –Name AzureResourceManager
- Enable-AzureSqlDatabaseDirectAccess
+ Get-AzureSqlDatabaseActivity
- Enables the option to directly access an Azure SQL Database (with auditing).
+ Gets the status of database operations in an elastic database pool.
- Enable
- AzureSqlDatabaseDirectAccess
+ Get
+ AzureSqlDatabaseActivity
- The Enable-AzureSqlDatabaseDirectAccess cmdlet enables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, directly accessing to an Azure SQL Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName).
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+ Gets the status of moving elastic databases in and out of an elastic pool.
+
+Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Enable-AzureSqlDatabaseDirectAccess
-
- PassThru
+ Get-AzureSqlDatabaseActivity
+
+ ServerName
- Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+ The name of the Azure SQL Server that the elastic pool is in.
- SwitchParameter
+ String
-
- ServerName
+
+ ElasticPoolName
- The name of the server containing the database.
+ The name of the Azure SQL elastic pool.
String
-
+
DatabaseName
- The name of the database.
+
String
+
+ OperationId
+
+
+
+ Nullable`1[Guid]
+
ResourceGroupName
- Specifies the name of the resource group of the database.
+ The name of the resource group containing the Azure SQL Server that the elastic pool is in.
String
@@ -247,22 +266,22 @@ Switch-AzureMode –Name AzureResourceManager
-
- PassThru
+
+ ServerName
- Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+ The name of the Azure SQL Server that the elastic pool is in.
- SwitchParameter
+ String
- SwitchParameter
+ String
none
-
- ServerName
+
+ ElasticPoolName
- The name of the server containing the database.
+ The name of the Azure SQL elastic pool.
String
@@ -271,22 +290,34 @@ Switch-AzureMode –Name AzureResourceManager
none
-
+
DatabaseName
- The name of the database.
+
String
String
- none
+
+
+
+ OperationId
+
+
+
+ Nullable`1[Guid]
+
+ Nullable`1[Guid]
+
+
+
ResourceGroupName
- Specifies the name of the resource group of the database.
+ The name of the resource group containing the Azure SQL Server that the elastic pool is in.
String
@@ -316,7 +347,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+System.String
@@ -328,7 +360,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel
+
+System.Object
@@ -342,13 +375,13 @@ Switch-AzureMode –Name AzureResourceManager
- -------------------------- Code Example --------------------------
+ -------------------------- Example --------------------------
PS C:\>
- PS C:\>Enable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
+ PS C:\>Get-AzureSqlDatabaseActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1"
-
+ The following example returns the operation status of all databases in an elastic pool named "elasticpool1".
@@ -367,70 +400,66 @@ Switch-AzureMode –Name AzureResourceManager
Azure_SqlDatabase
-
- Disable-AzureSqlDatabaseDirectAccess
-
-
- Get-AzureSqlDatabase
+ Get-AzureSqlDatabaseAuditingPolicy
- Returns one or more Azure SQL Database.
+ Gets an Azure SQL Database's auditing policy.
Get
- AzureSqlDatabase
+ AzureSqlDatabaseAuditingPolicy
- Use this cmdlet to retrieve one or more Azure SQL Database from an Azure SQL Database Server.
+ The Get-AzureSqlDatabaseAuditingPolicy cmdlet gets the auditing policy of an Azure Sql database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlDatabase
-
- DatabaseName
+ Get-AzureSqlDatabaseAuditingPolicy
+
+ ServerName
- The name of the Azure SQL Database to retrieve.
+ The name of the server that contains the database.
String
-
- ServerName
+
+ DatabaseName
- The name of the Azure SQL Database Server the database is in.
+ The name of the database.
String
ResourceGroupName
- The name of the resource group of the server containing the database to retrieve.
+ The name of the resource group that contains the database.
String
Profile
- In-memory profile.
+ In-Memory profile.
AzureProfile
-
- DatabaseName
+
+ ServerName
- The name of the Azure SQL Database to retrieve.
+ The name of the server that contains the database.
String
@@ -439,10 +468,10 @@ Switch-AzureMode –Name AzureResourceManager
none
-
- ServerName
+
+ DatabaseName
- The name of the Azure SQL Database Server the database is in.
+ The name of the database.
String
@@ -454,7 +483,7 @@ Switch-AzureMode –Name AzureResourceManager
ResourceGroupName
- The name of the resource group of the server containing the database to retrieve.
+ The name of the resource group that contains the database.
String
@@ -466,7 +495,7 @@ Switch-AzureMode –Name AzureResourceManager
Profile
- In-memory profile.
+ In-Memory profile.
AzureProfile
@@ -484,7 +513,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+None
@@ -496,7 +526,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
@@ -505,38 +536,18 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
- -------------------------- Code Example 1 --------------------------
-
- PS C:\>
-
- PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1"
-
- This example returns all databases on server, "server1".
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Code Example 2 --------------------------
+ -------------------------- Code Example --------------------------
PS C:\>
- PS C:\>Get-AzureSqlDatabase –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1"
+ PS C:\>Get-AzureSqlDatabaseAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
- This example returns database named "database1", from server "server1".
+ Code Example Description
@@ -556,15 +567,11 @@ Switch-AzureMode –Name AzureResourceManager
- New-AzureSqlDatabase
-
-
-
- Remove-AzureSqlDatabase
+ Remove-AzureSqlDatabaseAuditing
- Set-AzureSqlDatabase
+ Set-AzureSqlDatabaseAuditingPolicy
@@ -572,62 +579,51 @@ Switch-AzureMode –Name AzureResourceManager
- Get-AzureSqlDatabaseActivity
+ Get-AzureSqlDatabaseDataMaskingPolicy
-
+ Gets an Azure SQL Database's data masking policy.
Get
- AzureSqlDatabaseActivity
+ AzureSqlDatabaseDataMaskingPolicy
-
+ The Get-AzureSqlDatabaseDataMaskingPolicy cmdlet gets the data masking policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlDatabaseActivity
+ Get-AzureSqlDatabaseDataMaskingPolicy
ServerName
-
-
- String
-
-
- ElasticPoolName
-
-
+ The name of the server containing the database.
String
-
+
DatabaseName
-
+ The name of the database.
String
-
- OperationId
-
-
-
- Nullable`1[Guid]
-
ResourceGroupName
-
+ The name of the resource group containing the database.
String
Profile
-
+ In-memory profile.
AzureProfile
@@ -637,99 +633,75 @@ Switch-AzureMode –Name AzureResourceManager
ServerName
-
-
- String
-
- String
-
-
-
-
-
- ElasticPoolName
-
-
+ The name of the server containing the database.
String
String
-
+ none
-
+
DatabaseName
-
+ The name of the database.
String
String
-
-
-
- OperationId
-
-
-
- Nullable`1[Guid]
-
- Nullable`1[Guid]
-
-
-
+ none
ResourceGroupName
-
+ The name of the resource group containing the database.
String
String
-
+ none
Profile
-
+ In-memory profile.
AzureProfile
AzureProfile
-
+ none
-
+ InputType
-
+None
-
+ OutputType
-
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel
@@ -738,41 +710,92 @@ Switch-AzureMode –Name AzureResourceManager
-
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+ -------------------------- Code Example --------------------------
+
+ PS C:\>
+
+ PS C:\>Get-AzureSqlDatabaseDataMaskingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
+
+ Get-AzureSqlDatabaseDataMaskingRule
+
+
+
+ New-AzureSqlDatabaseDataMaskingRule
+
+
+
+ Remove-AzureSqlDatabaseDataMaskingRule
+
+
+
+ Set-AzureSqlDatabaseDataMaskingPolicy
+
+
+
+ Set-AzureSqlDatabaseDataMaskingRule
+
+
- Get-AzureSqlDatabaseAuditingPolicy
+ Get-AzureSqlDatabaseDataMaskingRule
- Gets an Azure SQL Database's auditing policy.
+ Gets an Azure SQL Database's data masking rule.
Get
- AzureSqlDatabaseAuditingPolicy
+ AzureSqlDatabaseDataMaskingRule
- The Get-AzureSqlDatabaseAuditingPolicy cmdlet gets the auditing policy of an Azure Sql database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.
+ The Get-AzureSqlDatabaseDataMaskingRule cmdlet gets either a specific data masking rule, or all of the data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, and the RuleId to specify which rule this cmdlet returns. If no RuleId is provided, then all the data masking rules of that Azure SQL Database are returned.
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlDatabaseAuditingPolicy
+ Get-AzureSqlDatabaseDataMaskingRule
+
+ RuleId
+
+ The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed.
+
+ String
+
ServerName
- The name of the server that contains the database.
+ The name of the server containing the database.
String
@@ -786,24 +809,36 @@ Switch-AzureMode –Name AzureResourceManager
ResourceGroupName
- The name of the resource group that contains the database.
+ The name of the resource group containing the database.
String
Profile
- In-Memory profile.
+ In-memory profile
AzureProfile
+
+ RuleId
+
+ The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed.
+
+ String
+
+ String
+
+
+ none
+
ServerName
- The name of the server that contains the database.
+ The name of the server containing the database.
String
@@ -827,7 +862,7 @@ Switch-AzureMode –Name AzureResourceManager
ResourceGroupName
- The name of the resource group that contains the database.
+ The name of the resource group containing the database.
String
@@ -839,7 +874,7 @@ Switch-AzureMode –Name AzureResourceManager
Profile
- In-Memory profile.
+ In-memory profile
AzureProfile
@@ -857,7 +892,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -869,7 +905,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
@@ -878,7 +915,7 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
@@ -887,9 +924,9 @@ Switch-AzureMode –Name AzureResourceManager
PS C:\>
- PS C:\>Get-AzureSqlDatabaseAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
+ PS C:\>Get-AzureSqlDatabaseDataMaskingRule –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
- Code Example Description
+ This example returns all data masking rules for "database1".
@@ -909,11 +946,23 @@ Switch-AzureMode –Name AzureResourceManager
- Remove-AzureSqlDatabaseAuditing
+ Get-AzureSqlDatabaseDataMaskingPolicy
- Set-AzureSqlDatabaseAuditingPolicy
+ New-AzureSqlDatabaseDataMaskingRule
+
+
+
+ Remove-AzureSqlDatabaseDataMaskingRule
+
+
+
+ Set-AzureSqlDatabaseDataMaskingPolicy
+
+
+
+ Set-AzureSqlDatabaseDataMaskingRule
@@ -921,51 +970,48 @@ Switch-AzureMode –Name AzureResourceManager
- Get-AzureSqlDatabaseDataMaskingPolicy
+ Get-AzureSqlDatabaseExpanded
- Gets an Azure SQL Database's data masking policy.
+
Get
- AzureSqlDatabaseDataMaskingPolicy
+ AzureSqlDatabaseExpanded
- The Get-AzureSqlDatabaseDataMaskingPolicy cmdlet gets the data masking policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
- Get-AzureSqlDatabaseDataMaskingPolicy
+ Get-AzureSqlDatabaseExpanded
ServerName
- The name of the server containing the database.
+
String
-
+
DatabaseName
- The name of the database.
+
String
ResourceGroupName
- The name of the resource group containing the database.
+
String
Profile
- In-memory profile.
+
AzureProfile
@@ -975,73 +1021,73 @@ Switch-AzureMode –Name AzureResourceManager
ServerName
- The name of the server containing the database.
+
String
String
- none
+
-
+
DatabaseName
- The name of the database.
+
String
String
- none
+
ResourceGroupName
- The name of the resource group containing the database.
+
String
String
- none
+
Profile
- In-memory profile.
+
AzureProfile
AzureProfile
- none
+
- InputType
+
- None
+
- OutputType
+
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel
+
@@ -1050,201 +1096,173 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
-
- -------------------------- Code Example --------------------------
-
- PS C:\>
-
- PS C:\>Get-AzureSqlDatabaseDataMaskingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
-
- Get-AzureSqlDatabaseDataMaskingRule
-
-
-
- New-AzureSqlDatabaseDataMaskingRule
-
-
-
- Remove-AzureSqlDatabaseDataMaskingRule
-
-
-
- Set-AzureSqlDatabaseDataMaskingPolicy
-
-
-
- Set-AzureSqlDatabaseDataMaskingRule
-
-
- Get-AzureSqlDatabaseDataMaskingRule
+ Get-AzureSqlDatabaseIndexRecommendations
- Gets an Azure SQL Database's data masking rule.
+
Get
- AzureSqlDatabaseDataMaskingRule
+ AzureSqlDatabaseIndexRecommendations
- The Get-AzureSqlDatabaseDataMaskingRule cmdlet gets either a specific data masking rule, or all of the data masking rule of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database, and the RuleId to specify which rule this cmdlet returns. If no RuleId is provided, then all the data masking rules of that Azure SQL Database are returned.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
- Get-AzureSqlDatabaseDataMaskingRule
+ Get-AzureSqlDatabaseIndexRecommendations
+
+ ServerName
+
+
+
+ String
+
- RuleId
+ DatabaseName
- The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed.
+
String
-
- ServerName
+
+ TableName
- The name of the server containing the database.
+
String
-
- DatabaseName
+
+ IndexRecommendationName
- The name of the database.
+
String
ResourceGroupName
- The name of the resource group containing the database.
+
String
Profile
- In-memory profile
+
AzureProfile
+
+ ServerName
+
+
+
+ String
+
+ String
+
+
+
+
- RuleId
+ DatabaseName
- The Id of the requested rule. If not specified, information about all the data masking rules in the specified SQL Database are listed.
+
String
String
- none
+
-
- ServerName
+
+ TableName
- The name of the server containing the database.
+
String
String
- none
+
-
- DatabaseName
+
+ IndexRecommendationName
- The name of the database.
+
String
String
- none
+
ResourceGroupName
- The name of the resource group containing the database.
+
String
String
- none
+
Profile
- In-memory profile
+
AzureProfile
AzureProfile
- none
+
- InputType
+
- None
+
- OutputType
+
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
+
@@ -1253,159 +1271,191 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
-
- -------------------------- Code Example --------------------------
-
- PS C:\>
-
- PS C:\>Get-AzureSqlDatabaseDataMaskingRule –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
-
- This example returns all data masking rules for "database1".
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
-
- Get-AzureSqlDatabaseDataMaskingPolicy
-
-
-
- New-AzureSqlDatabaseDataMaskingRule
-
-
-
- Remove-AzureSqlDatabaseDataMaskingRule
-
-
-
- Set-AzureSqlDatabaseDataMaskingPolicy
-
-
-
- Set-AzureSqlDatabaseDataMaskingRule
-
-
- Get-AzureSqlDatabaseSecureConnectionPolicy
+ Get-AzureSqlDatabaseReplicationLink
- Returns the secure connection policy of an Azure SQL Database.
+ Gets the geo-replication links between an Azure SQL Database and the specified Azure Resource Group or Azure SQL Server.
Get
- AzureSqlDatabaseSecureConnectionPolicy
+ AzureSqlDatabaseReplicationLink
- The Get-AzureSqlDatabaseSecureConnectionPolicy cmdlet returns the secure connection policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet it returns an object describing the current secure connection policy as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName)
+ This cmdlet replaces the Get-AzureSqlDatabaseCopy cmdlet. It will return all geo-replication links between the specified Azure Resource Group or Azure SQL Server.
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlDatabaseSecureConnectionPolicy
+ Get-AzureSqlDatabaseReplicationLink
+
+ DatabaseName
+
+ The name of the Azure SQL Database to retrieve links for.
+
+ String
+
+
+ PartnerResourceGroupName
+
+ The name of the Azure Resource Group for the partner.
+
+ String
+
ServerName
- The name of server containing the database.
+ The name of the Azure SQL Server for the database to retrieve links for.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the Azure Resource Group for the database to retrieve links for.
String
+
+ Profile
+
+
+
+ AzureProfile
+
+
+
+ Get-AzureSqlDatabaseReplicationLink
DatabaseName
- The name of the database.
+ The name of the Azure SQL Database to retrieve links for.
+
+ String
+
+
+ PartnerResourceGroupName
+
+ The name of the Azure Resource Group for the partner.
+
+ String
+
+
+ PartnerServerName
+
+ The name of the Azure SQL Server for the partner.
+
+ String
+
+
+ ServerName
+
+ The name of the Azure SQL Server for the database to retrieve links for.
String
ResourceGroupName
- The name of the resource group containing the database.
+ The name of the Azure Resource Group for the database to retrieve links for.
String
Profile
- In-memory profile
+
AzureProfile
-
- ServerName
+
+ DatabaseName
- The name of server containing the database.
+ The name of the Azure SQL Database to retrieve links for.
String
String
- none
+
-
- DatabaseName
+
+ PartnerResourceGroupName
- The name of the database.
+ The name of the Azure Resource Group for the partner.
String
String
- none
+
+
+
+ ServerName
+
+ The name of the Azure SQL Server for the database to retrieve links for.
+
+ String
+
+ String
+
+
+
ResourceGroupName
- The name of the resource group containing the database.
+ The name of the Azure Resource Group for the database to retrieve links for.
String
String
- none
+
Profile
- In-memory profile
+
AzureProfile
AzureProfile
- none
+
+
+
+ PartnerServerName
+
+ The name of the Azure SQL Server for the partner.
+
+ String
+
+ String
+
+
+
@@ -1416,7 +1466,7 @@ Switch-AzureMode –Name AzureResourceManager
- None
+ System.String
@@ -1428,7 +1478,7 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel
+ System.Object
@@ -1441,139 +1491,131 @@ Switch-AzureMode –Name AzureResourceManager
-
- -------------------------- Code Example --------------------------
-
- PS C:\>
-
- PS C:\>Get-AzureSqlDatabaseSecureConnectionPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
-
- Code Example Description
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
- Get-AzureSqlServerAuditingPolicy
+ Get-AzureSqlDatabaseRestorePoints
- Gets an Azure SQL Server's auditing policy.
+
Get
- AzureSqlServerAuditingPolicy
+ AzureSqlDatabaseRestorePoints
- The Get-AzureSqlServerAuditingPolicy cmdlet gets the auditing policy of an Azure SQL Server. To use the cmdlet, use the ResourceGroupName and the ServerName parameters to identify the database server.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
- Get-AzureSqlServerAuditingPolicy
-
+ Get-AzureSqlDatabaseRestorePoints
+
ServerName
- The name of the server containing the database.
+
+
+ String
+
+
+ DatabaseName
+
+
String
ResourceGroupName
- The name of the resource group containing the database.
+
String
Profile
- In-memory profile
+
AzureProfile
-
+
ServerName
- The name of the server containing the database.
+
String
String
- none
+
+
+
+ DatabaseName
+
+
+
+ String
+
+ String
+
+
+
ResourceGroupName
- The name of the resource group containing the database.
+
String
String
- none
+
Profile
- In-memory profile
+
AzureProfile
AzureProfile
- none
+
- InputType
+
- None
+
- OutputType
+
- Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel
+
@@ -1582,103 +1624,62 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
-
- -------------------------- Code Example --------------------------
-
- PS C:\>
-
- PS C:\>Get-AzureSqlServerAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1"
-
- The following example returns the auditing policy for "server1".
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
-
- Get-AzureSqlDatabaseAuditingPolicy
-
-
-
- Remove-AzureSqlDatabaseAuditing
-
-
-
- Remove-AzureSqlServerAuditing
-
-
-
- Set-AzureSqlDatabaseAuditingPolicy
-
-
-
- Set-AzureSqlServerAuditingPolicy
-
-
-
- Use-AzureSqlServerAuditingPolicy
-
-
- Get-AzureSqlServerActiveDirectoryAdministrator
+ Get-AzureSqlDatabaseSecureConnectionPolicy
- Returns information about an Azure Active Directory administrator for Azure SQL Server in the current subscription.
+ Returns the secure connection policy of an Azure SQL Database.
Get
- AzureSqlServerActiveDirectoryAdministrator
+ AzureSqlDatabaseSecureConnectionPolicy
- The Get-AzureSqlServerActiveDirectoryAdministrator cmdlet returns information about an Azure Active Directory administrator for Azure SQL Server in the current subscription.
+ The Get-AzureSqlDatabaseSecureConnectionPolicy cmdlet returns the secure connection policy of an Azure SQL Database. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet it returns an object describing the current secure connection policy as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName)
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlServerActiveDirectoryAdministrator
+ Get-AzureSqlDatabaseSecureConnectionPolicy
ServerName
- The name of the Azure SQL Server containing the Azure Active Directory administrator.
+ The name of server containing the database.
+
+ String
+
+
+ DatabaseName
+
+ The name of the database.
String
ResourceGroupName
- The name of the resource group containing the Azure SQL Server.
+ The name of the resource group containing the database.
String
Profile
- In-memory profile.
+ In-memory profile
AzureProfile
@@ -1688,7 +1689,19 @@ Switch-AzureMode –Name AzureResourceManager
ServerName
- The name of the Azure SQL Server containing the Azure Active Directory administrator.
+ The name of server containing the database.
+
+ String
+
+ String
+
+
+ none
+
+
+ DatabaseName
+
+ The name of the database.
String
@@ -1700,7 +1713,7 @@ Switch-AzureMode –Name AzureResourceManager
ResourceGroupName
- The name of the resource group containing the Azure SQL Server.
+ The name of the resource group containing the database.
String
@@ -1712,7 +1725,7 @@ Switch-AzureMode –Name AzureResourceManager
Profile
- In-memory profile.
+ In-memory profile
AzureProfile
@@ -1731,7 +1744,7 @@ Switch-AzureMode –Name AzureResourceManager
-System.String
+None
@@ -1744,7 +1757,7 @@ System.String
-System.Object
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel
@@ -1758,19 +1771,16 @@ System.Object
- -------------------------- Code Example 1 --------------------------
+ -------------------------- Code Example --------------------------
PS C:\>
- PS C:\>Get-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo"
+ PS C:\>Get-AzureSqlDatabaseSecureConnectionPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
- Returns information about an Azure Active Directory administrator for Azure SQL Database Server "aad_managed_demo" associated with resource group "Group-23"
+ Code Example Description
-
-ResourceGroupName ServerName DisplayName ObjectId
------------------ ---------- ----------- --------
-Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
+
@@ -1783,11 +1793,7 @@ Group-23 aad-managed-demo DBAs
- Remove-AzureSqlServerActiveDirectoryAdministrator
-
-
-
- Set-AzureSqlServerActiveDirectoryAdministrator
+ Azure_SqlDatabase
@@ -1916,8 +1922,7 @@ Switch-AzureMode –Name AzureResourceManager
-
-Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel
+ Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel
@@ -2087,8 +2092,7 @@ Switch-AzureMode –Name AzureResourceManager
-
-Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel
+ Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionActivityModel
@@ -2139,128 +2143,143 @@ PercentComplete : 3.662109
- Get-AzureSqlElasticPool
+ Get-AzureSqlDatabaseUpgradeHint
- Gets the details for an Azure SQL elastic database pool.
+
Get
- AzureSqlElasticPool
+ AzureSqlDatabaseUpgradeHint
- Gets all elastic pools and their property values, or pass the name of an existing elastic pool and return only the property values for that pool.
-
-Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
- Get-AzureSqlElasticPool
-
- ElasticPoolName
+ Get-AzureSqlDatabaseUpgradeHint
+
+ ServerName
- The name of the Azure SQL elastic pool to retrieve.
+
String
-
- ServerName
+
+ DatabaseName
- The name of the Azure SQL Server containing the elastic pool.
+
String
+
+ ExcludeElasticPoolCandidates
+
+
+
+ Boolean
+
ResourceGroupName
- The name of the resource group of the server containing the elastic pool.
+
String
Profile
- In-memory profile
+
AzureProfile
-
- ElasticPoolName
+
+ ServerName
- The name of the Azure SQL elastic pool to retrieve.
+
String
String
- none
+
-
- ServerName
+
+ DatabaseName
- The name of the Azure SQL Server containing the elastic pool.
+
String
String
- none
+
+
+
+ ExcludeElasticPoolCandidates
+
+
+
+ Boolean
+
+ Boolean
+
+
+
ResourceGroupName
- The name of the resource group of the server containing the elastic pool.
+
String
String
- none
+
Profile
- In-memory profile
+
AzureProfile
AzureProfile
- none
+
- InputType
+
- System.String
+
- OutputType
+
- System.Object
+
@@ -2269,14 +2288,157 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
-
- -------------------------- Example 1 --------------------------
-
- PS C:\>
+
+
+
+
+
+
+
+ Get-AzureSqlElasticPool
+
+ Gets the details for an Azure SQL elastic database pool.
+
+
+
+
+ Get
+ AzureSqlElasticPool
+
+
+
+ Gets all elastic pools and their property values, or pass the name of an existing elastic pool and return only the property values for that pool.
+
+Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Get-AzureSqlElasticPool
+
+ ElasticPoolName
+
+ The name of the Azure SQL elastic pool to retrieve.
+
+ String
+
+
+ ServerName
+
+ The name of the Azure SQL Server containing the elastic pool.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the resource group of the server containing the elastic pool.
+
+ String
+
+
+ Profile
+
+ In-memory profile
+
+ AzureProfile
+
+
+
+
+
+ ElasticPoolName
+
+ The name of the Azure SQL elastic pool to retrieve.
+
+ String
+
+ String
+
+
+ none
+
+
+ ServerName
+
+ The name of the Azure SQL Server containing the elastic pool.
+
+ String
+
+ String
+
+
+ none
+
+
+ ResourceGroupName
+
+ The name of the resource group of the server containing the elastic pool.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ In-memory profile
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+
+
+
+ InputType
+
+
+
+
+
+System.String
+
+
+
+
+
+
+ OutputType
+
+
+
+
+
+System.Object
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+ -------------------------- Example 1 --------------------------
+
+ PS C:\>
PS C:\>Get-AzureSqlElasticPool –ResourceGroupName "resourcegroup1" –ServerName "server1"
@@ -2445,7 +2607,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -2457,7 +2620,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -2653,7 +2817,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -2665,7 +2830,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -2750,13 +2916,6 @@ Switch-AzureMode –Name AzureResourceManager
Get-AzureSqlElasticPoolRecommendation
-
- ElasticPoolRecommendation
-
-
-
- String
-
ServerName
@@ -2781,18 +2940,6 @@ Switch-AzureMode –Name AzureResourceManager
-
- ElasticPoolRecommendation
-
-
-
- String
-
- String
-
-
-
-
ServerName
@@ -2829,6 +2976,18 @@ Switch-AzureMode –Name AzureResourceManager
+
+ ElasticPoolRecommendation
+
+
+
+ string
+
+ string
+
+
+
+
@@ -2872,145 +3031,110 @@ Switch-AzureMode –Name AzureResourceManager
- Get-AzureSqlElasticPoolRecommendationDatabase
+ Get-AzureSqlServer
-
+ Returns information about one or more Azure SQL Database Servers.
Get
- AzureSqlElasticPoolRecommendationDatabase
+ AzureSqlServer
-
+ If a SQL Database Server name is specified in the ServerName parameter, the cmdlet returns information about the specific SQL Database Server. Otherwise, it returns information about all the SQL Database Servers.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlElasticPoolRecommendationDatabase
-
- ElasticPoolRecommendation
-
-
-
- String
-
-
- DatabaseName
-
-
-
- String
-
-
+ Get-AzureSqlServer
+
ServerName
-
+ The name of the Azure SQL Server to retrieve.
String
ResourceGroupName
-
+ The name of the resource group containing the Azure SQL Server.
String
Profile
-
+ In-memory profile.
AzureProfile
-
- ElasticPoolRecommendation
-
-
-
- String
-
- String
-
-
-
-
-
- DatabaseName
-
-
-
- String
-
- String
-
-
-
-
-
+
ServerName
-
+ The name of the Azure SQL Server to retrieve.
String
String
-
+ none
ResourceGroupName
-
+ The name of the resource group containing the Azure SQL Server.
String
String
-
+ none
Profile
-
+ In-memory profile.
AzureProfile
AzureProfile
-
+ none
-
+ InputType
-
+System.String
-
+ OutputType
-
+System.Object
@@ -3019,137 +3143,144 @@ Switch-AzureMode –Name AzureResourceManager
-
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+ -------------------------- Code Example --------------------------
+
+ PS C:\>
+
+ PS C:\>Get-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1"
+
+ Use this cmdlet to retrieve an Azure SQL Database Server named "server1".
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
- Get-AzureSqlElasticPoolRecommendationMetrics
+ Get-AzureSqlServerActiveDirectoryAdministrator
-
+ The Get-AzureSqlServerActiveDirectoryAdministrator cmdlet returns information about an Azure Active Directory administrator for an Azure SQL Server in the current subscription.
Get
- AzureSqlElasticPoolRecommendationMetrics
+ AzureSqlServerActiveDirectoryAdministrator
-
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlElasticPoolRecommendationMetrics
-
- ElasticPoolRecommendation
-
-
-
- String
-
+ Get-AzureSqlServerActiveDirectoryAdministrator
ServerName
-
+ The name of the Azure SQL Server containing the Azure Active Directory administrator.
String
ResourceGroupName
-
+ The name of the resource group containing the Azure SQL Server.
String
Profile
-
+ In-memory profile.
AzureProfile
-
- ElasticPoolRecommendation
-
-
-
- String
-
- String
-
-
-
-
ServerName
-
+ The name of the Azure SQL Server containing the Azure Active Directory administrator.
String
String
-
+ none
ResourceGroupName
-
+ The name of the resource group containing the Azure SQL Server.
String
String
-
+ none
Profile
-
+ In-memory profile.
AzureProfile
AzureProfile
-
+ none
-
+ InputType
-
+System.String
-
+ OutputType
-
+System.Object
@@ -3158,7 +3289,7 @@ Switch-AzureMode –Name AzureResourceManager
-
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
@@ -3169,54 +3300,54 @@ Switch-AzureMode –Name AzureResourceManager
- Get-AzureSqlServer
+ Get-AzureSqlServerAuditingPolicy
- Returns information about one or more Azure SQL Database Servers.
+ Gets an Azure SQL Server's auditing policy.
Get
- AzureSqlServer
+ AzureSqlServerAuditingPolicy
- If a SQL Database Server name is specified in the ServerName parameter, the cmdlet returns information about the specific SQL Database Server. Otherwise, it returns information about all the SQL Database Servers.
+ The Get-AzureSqlServerAuditingPolicy cmdlet gets the auditing policy of an Azure SQL Server. To use the cmdlet, use the ResourceGroupName and the ServerName parameters to identify the database server.
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Get-AzureSqlServer
-
+ Get-AzureSqlServerAuditingPolicy
+
ServerName
- The name of the Azure SQL Server to retrieve.
+ The name of the server containing the database.
String
ResourceGroupName
- The name of the resource group containing the Azure SQL Server.
+ The name of the resource group containing the database.
String
Profile
- In-memory profile.
+ In-memory profile
AzureProfile
-
+
ServerName
- The name of the Azure SQL Server to retrieve.
+ The name of the server containing the database.
String
@@ -3228,7 +3359,7 @@ Switch-AzureMode –Name AzureResourceManager
ResourceGroupName
- The name of the resource group containing the Azure SQL Server.
+ The name of the resource group containing the database.
String
@@ -3240,7 +3371,7 @@ Switch-AzureMode –Name AzureResourceManager
Profile
- In-memory profile.
+ In-memory profile
AzureProfile
@@ -3258,7 +3389,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+None
@@ -3270,7 +3402,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel
@@ -3288,9 +3421,9 @@ Switch-AzureMode –Name AzureResourceManager
PS C:\>
- PS C:\>Get-AzureSqlServer –ResourceGroupName "resourcegroup1" –ServerName "server1"
+ PS C:\>Get-AzureSqlServerAuditingPolicy –ResourceGroupName "resourcegroup1" –ServerName "server1"
- Use this cmdlet to retrieve an Azure SQL Database Server named "server1".
+ The following example returns the auditing policy for "server1".
@@ -3309,6 +3442,30 @@ Switch-AzureMode –Name AzureResourceManager
Azure_SqlDatabase
+
+ Get-AzureSqlDatabaseAuditingPolicy
+
+
+
+ Remove-AzureSqlDatabaseAuditing
+
+
+
+ Remove-AzureSqlServerAuditing
+
+
+
+ Set-AzureSqlDatabaseAuditingPolicy
+
+
+
+ Set-AzureSqlServerAuditingPolicy
+
+
+
+ Use-AzureSqlServerAuditingPolicy
+
+
@@ -3422,7 +3579,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -3434,7 +3592,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -3605,7 +3764,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -3617,7 +3777,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -3663,7 +3824,7 @@ Switch-AzureMode –Name AzureResourceManager
Get-AzureSqlServerUpgrade
-
+ Gets the status of an Azure SQL Server Upgrade.
@@ -3673,7 +3834,10 @@ Switch-AzureMode –Name AzureResourceManager
-
+ The Get-AzureSqlServerUpgrade cmdlet returns the status of an Azure SQL Server Upgrade.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
@@ -3681,21 +3845,21 @@ Switch-AzureMode –Name AzureResourceManager
ServerName
-
+ The name of the Azure SQL Server to get upgrade status.
String
ResourceGroupName
-
+ The name of the resource group containing the Azure SQL Server.
String
Profile
-
+ In-memory profile.
AzureProfile
@@ -3705,7 +3869,7 @@ Switch-AzureMode –Name AzureResourceManager
ServerName
-
+ The name of the Azure SQL Server to get upgrade status.
String
@@ -3717,7 +3881,7 @@ Switch-AzureMode –Name AzureResourceManager
ResourceGroupName
-
+ The name of the resource group containing the Azure SQL Server.
String
@@ -3729,7 +3893,7 @@ Switch-AzureMode –Name AzureResourceManager
Profile
-
+ In-memory profile.
AzureProfile
@@ -3742,20 +3906,20 @@ Switch-AzureMode –Name AzureResourceManager
-
+ InputType
-
+System.String
-
+ OutputType
@@ -3770,76 +3934,245 @@ Switch-AzureMode –Name AzureResourceManager
-
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+ -------------------------- Example 1: Get status of a server upgrade --------------------------
+
+ PS C:\>
+
+ Get-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer | Format-List
+
+ Get the status of an upgrade request from server "MySqlServer" in resource group "MyResourceGroup".
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
+
+ Start-AzureSqlServerUpgrade
+
+
+
+ Stop-AzureSqlServerUpgrade
+
+
- New-AzureSqlDatabase
+ Get-AzureSqlServerUpgradeHint
- Creates a new Azure SQL Database, or new elastic database.
+
- New
- AzureSqlDatabase
+ Get
+ AzureSqlServerUpgradeHint
- The New-AzureSqlDatabase cmdlet creates a new Azure SQL Database.
-Create an elastic database by setting the ElasticPoolName to an existing elastic pool.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
- New-AzureSqlDatabase
-
- DatabaseName
+ Get-AzureSqlServerUpgradeHint
+
+ ServerName
- The name of the Azure SQL Database to create.
+
String
-
- CollationName
+
+ ExcludeElasticPools
- The name of the Azure SQL Database collation to use.
+
- String
+ Boolean
-
- CatalogCollation
+
+ ResourceGroupName
- The name of the Azure SQL Database catalog collation to use.
+
String
- MaxSizeBytes
-
- The maximum size of the Azure SQL Database in bytes.
-
- Int64
-
-
- Edition
+ Profile
- The edition to assign to the Azure SQL Database.
+
- DatabaseEdition
+ AzureProfile
-
- RequestedServiceObjectiveName
-
+
+
+
+
+ ServerName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ExcludeElasticPools
+
+
+
+ Boolean
+
+ Boolean
+
+
+
+
+
+ ResourceGroupName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Profile
+
+
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureSqlDatabase
+
+ Creates a new Azure SQL Database, or new elastic database.
+
+
+
+
+ New
+ AzureSqlDatabase
+
+
+
+ The New-AzureSqlDatabase cmdlet creates a new Azure SQL Database.
+Create an elastic database by setting the ElasticPoolName to an existing elastic pool.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ New-AzureSqlDatabase
+
+ DatabaseName
+
+ The name of the Azure SQL Database to create.
+
+ String
+
+
+ CollationName
+
+ The name of the Azure SQL Database collation to use.
+
+ String
+
+
+ CatalogCollation
+
+ The name of the Azure SQL Database catalog collation to use.
+
+ String
+
+
+ MaxSizeBytes
+
+ The maximum size of the Azure SQL Database in bytes.
+
+ Int64
+
+
+ Edition
+
+ The edition to assign to the Azure SQL Database.
+
+ DatabaseEdition
+
+
+ RequestedServiceObjectiveName
+
The name of the service objective to assign to the Azure SQL Database.
String
@@ -4023,7 +4356,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -4035,7 +4369,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -4107,160 +4442,328 @@ Switch-AzureMode –Name AzureResourceManager
- New-AzureSqlDatabaseDataMaskingRule
+ New-AzureSqlDatabaseCopy
- Creates a new Azure SQL Database's data masking rule.
+ Creates a copy of an existing Azure SQL Database using the snapshot of the data at the time of the call.
New
- AzureSqlDatabaseDataMaskingRule
+ AzureSqlDatabaseCopy
- The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify thetarget of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName)
+ This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used to create a one-time database copy. It returns the database object of the copy.
+ Note: Use New-AzureSqlDatabaseSecondary for setting up geo-replication for a database.
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- New-AzureSqlDatabaseDataMaskingRule
-
- MaskingFunction
+ New-AzureSqlDatabaseCopy
+
+ DatabaseName
- Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
+ The name of the Azure SQL Database to be copied.
String
-
- TableName
+
+ ServiceObjectiveName
- The name of the table in the database to apply the rule.
+ The name of the service objective to assign to the copy.
String
-
- ColumnName
+
+ ElasticPoolName
- The name of the column that is the target of this masking rule.
+ The name of the Elastic Pool to put the copy in.
String
-
- PrefixSize
+
+ Tags
- When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0.
+ The tags to associate with the Azure SQL Database copy.
- Nullable`1[UInt32]
+ Dictionary`2[String]
-
- ReplacementString
+
+ CopyResourceGroupName
- When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
+ The name of the Azure Resource Group to create copy in.
String
-
- SuffixSize
-
- When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
-
- Nullable`1[UInt32]
-
-
- NumberFrom
-
- When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask.
-
- Nullable`1[Double]
-
-
- NumberTo
-
- When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0.
-
- Nullable`1[Double]
-
- PassThru
+ CopyServerName
- Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+ The name of the Azure SQL Server to create copy in.
- SwitchParameter
+ String
-
- RuleId
+
+ CopyDatabaseName
- The identifier for this data masking rule.
+ The name of the Azure SQL Database copy.
String
ServerName
- The name of the server containing the database.
-
- String
-
-
- DatabaseName
-
- The name of the database.
+ The name of the Azure SQL Server the database to be copied is in.
String
ResourceGroupName
- The name of the resource group containing the database.
+ The name of the Azure Resource Group the database to be copied is in.
String
Profile
- In-memory profile
+
AzureProfile
-
- New-AzureSqlDatabaseDataMaskingRule
-
- MaskingFunction
-
- Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
-
- String
-
-
- AliasName
-
- The name of the alias that is the target of this masking rule.
-
- String
-
-
- PrefixSize
-
- When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0.
-
- Nullable`1[UInt32]
-
-
- ReplacementString
-
- When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
-
- String
-
-
- SuffixSize
-
- When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
-
+
+
+
+ DatabaseName
+
+ The name of the Azure SQL Database to be copied.
+
+ String
+
+ String
+
+
+
+
+
+ ServiceObjectiveName
+
+ The name of the service objective to assign to the copy.
+
+ String
+
+ String
+
+
+
+
+
+ ElasticPoolName
+
+ The name of the Elastic Pool to put the copy in.
+
+ String
+
+ String
+
+
+
+
+
+ Tags
+
+ The tags to associate with the Azure SQL Database copy.
+
+ Dictionary`2[String]
+
+ Dictionary`2[String]
+
+
+
+
+
+ CopyResourceGroupName
+
+ The name of the Azure Resource Group to create copy in.
+
+ String
+
+ String
+
+
+
+
+
+ CopyServerName
+
+ The name of the Azure SQL Server to create copy in.
+
+ String
+
+ String
+
+
+
+
+
+ CopyDatabaseName
+
+ The name of the Azure SQL Database copy.
+
+ String
+
+ String
+
+
+
+
+
+ ServerName
+
+ The name of the Azure SQL Server the database to be copied is in.
+
+ String
+
+ String
+
+
+
+
+
+ ResourceGroupName
+
+ The name of the Azure Resource Group the database to be copied is in.
+
+ String
+
+ String
+
+
+
+
+
+ Profile
+
+
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+ InputType
+
+
+
+
+ System.String
+
+
+
+
+
+
+ OutputType
+
+
+
+
+ System.Object
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+
+
+
+
+
+
+ New-AzureSqlDatabaseDataMaskingRule
+
+ Creates a new Azure SQL Database's data masking rule.
+
+
+
+
+ New
+ AzureSqlDatabaseDataMaskingRule
+
+
+
+ The Set-SetAzureSqlDatabaseDataMaskingRule cmdlet is used to set the properties of an already exisiting data masking rule of an Azure SQL database. To use the cmdlet, use the ResourceGroupName, ServerName, DatabaseName and Rule parameters to identify the rule. Use either the TableName and ColumnName or the AliasName to specify thetarget of the rule and the MaskingFunction parameter to define how the data is masked. If the command succeeds and the PassThru switch is on, it returns an object describing the data masking rule as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName)
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ New-AzureSqlDatabaseDataMaskingRule
+
+ ColumnName
+
+ The name of the column that is the target of this masking rule.
+
+ String
+
+
+ SchemaName
+
+
+
+ String
+
+
+ TableName
+
+ The name of the table in the database to apply the rule.
+
+ String
+
+
+ MaskingFunction
+
+ Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
+
+ String
+
+
+ PrefixSize
+
+ When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0.
+
+ Nullable`1[UInt32]
+
+
+ ReplacementString
+
+ When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
+
+ String
+
+
+ SuffixSize
+
+ When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
+
Nullable`1[UInt32]
@@ -4323,9 +4826,9 @@ Switch-AzureMode –Name AzureResourceManager
- MaskingFunction
+ ColumnName
- Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
+ The name of the column that is the target of this masking rule.
String
@@ -4334,6 +4837,18 @@ Switch-AzureMode –Name AzureResourceManager
none
+
+ SchemaName
+
+
+
+ String
+
+ String
+
+
+
+
TableName
@@ -4347,9 +4862,9 @@ Switch-AzureMode –Name AzureResourceManager
none
- ColumnName
+ MaskingFunction
- The name of the column that is the target of this masking rule.
+ Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
String
@@ -4490,14 +5005,14 @@ Switch-AzureMode –Name AzureResourceManager
none
-
+
AliasName
The name of the alias that is the target of this masking rule.
- String
+ string
- String
+ string
none
@@ -4511,7 +5026,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -4523,7 +5039,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
@@ -4567,38 +5084,292 @@ Switch-AzureMode –Name AzureResourceManager
- New-AzureSqlElasticPool
+ New-AzureSqlDatabaseSecondary
- Creates a new Azure SQL Database elastic database pool.
+ Creates a new secondary database for an existing Azure SQL Database and starts data replication.
New
- AzureSqlElasticPool
+ AzureSqlDatabaseSecondary
- This cmdlet creates a new elastic database pool.
-
-Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+ This cmdlet replaces the Start-AzureSqlDatabaseCopy cmdlet when used for setting up geo-replication for a database. It returns the geo-replication link object from the primary to the secondary database.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- New-AzureSqlElasticPool
-
- ElasticPoolName
+ New-AzureSqlDatabaseSecondary
+
+ DatabaseName
- The name of the Azure SQL elastic pool to create.
+ The name of the Azure SQL Database to act as primary.
String
- Edition
+ SecondaryServiceObjectiveName
- The edition to assign to the Azure SQL elastic pool.
+ The name of the service objective to assign to the secondary.
+
+ String
+
+
+ SecondaryElasticPoolName
+
+ The name of the Elastic Pool to put the secondary in.
+
+ String
+
+
+ Tags
+
+ The tags to associate with the Azure SQL Database replication link.
+
+ Dictionary`2[String]
+
+
+ PartnerResourceGroupName
+
+ The name of the Azure Resource Group to create secondary in.
+
+ String
+
+
+ PartnerServerName
+
+ The name of the Azure SQL Server to create secondary in.
+
+ String
+
+
+ AllowConnections
+
+ The read intent of the secondary Azure SQL Database.
+
+ AllowConnections
+
+
+ ServerName
+
+ The name of the Azure SQL Server of the primary Azure SQL Database.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the Azure Resource Group of the primary Azure SQL Database.
+
+ String
+
+
+ Profile
+
+
+
+ AzureProfile
+
+
+
+
+
+ DatabaseName
+
+ The name of the Azure SQL Database to act as primary.
+
+ String
+
+ String
+
+
+
+
+
+ SecondaryServiceObjectiveName
+
+ The name of the service objective to assign to the secondary.
+
+ String
+
+ String
+
+
+
+
+
+ SecondaryElasticPoolName
+
+ The name of the Elastic Pool to put the secondary in.
+
+ String
+
+ String
+
+
+
+
+
+ Tags
+
+ The tags to associate with the Azure SQL Database replication link.
+
+ Dictionary`2[String]
+
+ Dictionary`2[String]
+
+
+
+
+
+ PartnerResourceGroupName
+
+ The name of the Azure Resource Group to create secondary in.
+
+ String
+
+ String
+
+
+
+
+
+ PartnerServerName
+
+ The name of the Azure SQL Server to create secondary in.
+
+ String
+
+ String
+
+
+
+
+
+ AllowConnections
+
+ The read intent of the secondary Azure SQL Database.
+
+ AllowConnections
+
+ AllowConnections
+
+
+
+
+
+ ServerName
+
+ The name of the Azure SQL Server of the primary Azure SQL Database.
+
+ String
+
+ String
+
+
+
+
+
+ ResourceGroupName
+
+ The name of the Azure Resource Group of the primary Azure SQL Database.
+
+ String
+
+ String
+
+
+
+
+
+ Profile
+
+
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+ InputType
+
+
+
+
+ System.String
+
+
+
+
+
+
+ OutputType
+
+
+
+
+ System.Object
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+
+
+
+
+
+
+ New-AzureSqlElasticPool
+
+ Creates a new Azure SQL Database elastic database pool.
+
+
+
+
+ New
+ AzureSqlElasticPool
+
+
+
+ This cmdlet creates a new elastic database pool.
+
+Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ New-AzureSqlElasticPool
+
+ ElasticPoolName
+
+ The name of the Azure SQL elastic pool to create.
+
+ String
+
+
+ Edition
+
+ The edition to assign to the Azure SQL elastic pool.
For the current preview, the edition must be "Standard".
DatabaseEdition
@@ -4792,7 +5563,8 @@ For the current preview, the edition must be "Standard".
- System.String
+
+System.String
@@ -4804,7 +5576,8 @@ For the current preview, the edition must be "Standard".
- System.Object
+
+System.Object
@@ -4901,9 +5674,9 @@ Switch-AzureMode –Name AzureResourceManager
String
- SqlAdminCredentials
+ SqlAdministratorCredentials
- The SQL administrator credentials for the new server.
+
PSCredential
@@ -4959,16 +5732,16 @@ Switch-AzureMode –Name AzureResourceManager
none
- SqlAdminCredentials
+ SqlAdministratorCredentials
- The SQL administrator credentials for the new server.
+
PSCredential
PSCredential
- none
+
Location
@@ -5031,6 +5804,18 @@ Switch-AzureMode –Name AzureResourceManager
none
+
+ SqlAdminCredentials
+
+ The SQL administrator credentials for the new server.
+
+ pscredential
+
+ pscredential
+
+
+ none
+
@@ -5040,7 +5825,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -5052,7 +5838,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -5114,7 +5901,7 @@ Switch-AzureMode –Name AzureResourceManager
New-AzureSqlServerFirewallRule
-
+ Creates a new firewall rule for an Azure SQL Database server.
@@ -5124,7 +5911,11 @@ Switch-AzureMode –Name AzureResourceManager
-
+ The New-AzureSqlServerFirewallRule cmdlet creates a new firewall rule for the specified SQL Database server.
+
+Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
@@ -5132,42 +5923,42 @@ Switch-AzureMode –Name AzureResourceManager
FirewallRuleName
-
+ The name of the new firewall rule.
String
StartIpAddress
-
+ Start value of the IP address range.
String
EndIpAddress
-
+ End value of the IP address range.
String
ServerName
-
+ The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name.
String
ResourceGroupName
-
+ The name of the resource group that contains the Azure SQL Server this firewall rule will be created for.
String
Profile
-
+ In-memory profile.
AzureProfile
@@ -5177,28 +5968,28 @@ Switch-AzureMode –Name AzureResourceManager
AllowAllAzureIPs
-
+ Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server.
SwitchParameter
ServerName
-
+ The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name.
String
ResourceGroupName
-
+ The name of the resource group that contains the Azure SQL Server this firewall rule will be created for.
String
Profile
-
+ In-memory profile.
AzureProfile
@@ -5208,111 +5999,111 @@ Switch-AzureMode –Name AzureResourceManager
FirewallRuleName
-
+ The name of the new firewall rule.
String
String
-
+ none
StartIpAddress
-
+ Start value of the IP address range.
String
String
-
+ none
EndIpAddress
-
+ End value of the IP address range.
String
String
-
+ none
ServerName
-
+ The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name.
String
String
-
+ none
ResourceGroupName
-
+ The name of the resource group that contains the Azure SQL Server this firewall rule will be created for.
String
String
-
+ none
Profile
-
+ In-memory profile.
AzureProfile
AzureProfile
-
+ none
AllowAllAzureIPs
-
+ Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server.
SwitchParameter
SwitchParameter
-
+ none
-
+ InputType
-
+System.String
-
+ OutputType
-
+System.Object
@@ -5321,12 +6112,48 @@ Switch-AzureMode –Name AzureResourceManager
-
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+ -------------------------- Example --------------------------
+
+ PS C:\>
+
+ PS C:\>New-AzureSqlServerFirewallRule -ResourceGroupName "resourcegroup1" -ServerName "server1" -FirewallRuleName "rule1" -StartIpAddress "192.168.0.198" -EndIpAddress "192.168.0.199"
+
+ The following example creates a new firewall rule.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
+
+ Get-AzureSqlServerFirewallRule
+
+
+
+ Remove-AzureSqlServerFirewallRule
+
+
+
+ Set-AzureSqlServerFirewallRule
+
+
@@ -5497,7 +6324,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -5509,7 +6337,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -5680,7 +6509,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -5692,7 +6522,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
@@ -5939,7 +6770,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -5951,7 +6783,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
@@ -5995,104 +6828,180 @@ Switch-AzureMode –Name AzureResourceManager
- Remove-AzureSqlServerAuditing
+ Remove-AzureSqlDatabaseSecondary
- Disables auditing of all the databases that rely on the auditing policy of the given database server.
+ Terminates data replication between an Azure SQL Database and the specified secondary database.
Remove
- AzureSqlDatabaseServerAuditing
+ AzureSqlDatabaseSecondary
- The Remove-AzureSqlServerAuditing cmdlet disables auditing of all the databases that rely on the auditing policy of the given database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server. After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database server identifiers (i.e. ResourceGroupName and ServerName)
+ This cmdlet replaces the Stop-AzureSqlDatabaseCopy cmdlet. It will force terminates the geo-replication link. There is no replication synchronization prior to termination.
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Remove-AzureSqlServerAuditing
-
- PassThru
+ Remove-AzureSqlDatabaseSecondary
+
+ DatabaseName
- Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+ The name of the primary Azure SQL Database with the replication link to remove.
- SwitchParameter
+ String
+
+
+ PartnerResourceGroupName
+
+ The name of the partner Azure Resource Group.
+
+ String
+ PartnerServerName
+
+ The name of the partner Azure SQL Server.
+
+ String
+
+
ServerName
- The name of the server.
+ The name of the Azure SQL Server with the replication link to remove.
String
ResourceGroupName
- The name of the resource group containing the server.
+ The name of the Azure Resource Group with the replication link to remove.
String
Profile
- In-memory profile
+
AzureProfile
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
-
- PassThru
+
+ DatabaseName
- Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+ The name of the primary Azure SQL Database with the replication link to remove.
- SwitchParameter
+ String
- SwitchParameter
+ String
- none
+
+
+
+ PartnerResourceGroupName
+
+ The name of the partner Azure Resource Group.
+
+ String
+
+ String
+
+
+
+ PartnerServerName
+
+ The name of the partner Azure SQL Server.
+
+ String
+
+ String
+
+
+
+
+
ServerName
- The name of the server.
+ The name of the Azure SQL Server with the replication link to remove.
String
String
- none
+
ResourceGroupName
- The name of the resource group containing the server.
+ The name of the Azure Resource Group with the replication link to remove.
String
String
- none
+
Profile
- In-memory profile
+
AzureProfile
AzureProfile
- none
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
@@ -6103,7 +7012,7 @@ Switch-AzureMode –Name AzureResourceManager
- None
+ System.String
@@ -6115,7 +7024,7 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel
+ System.Object
@@ -6128,32 +7037,8 @@ Switch-AzureMode –Name AzureResourceManager
-
- -------------------------- Code Example --------------------------
-
- PS C:\>
-
- PS C:\>Get-Help Remove-AzureSqlServerAuditing -Full
-
- Code Example Description
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
@@ -6325,7 +7210,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -6337,7 +7223,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -6551,7 +7438,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -6563,7 +7451,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -6780,24 +7669,159 @@ System.Object
-
- -------------------------- Code Example 1 --------------------------
-
- PS C:\>
-
- PS c:\> Remove-AzureSqlServerActiveDirectoryAdministrator -ResourceGroupName "Group-23" –ServerName "aad-managed-demo"
-
- This command removes an Azure Active Directory administrator for Azure SQL Database Server "aad_managed_demo" associated with resource group "Group-23"
-
-
-
-Confirm
-Are you sure you want to remove the Azure Sql Server Active Directory Administrator on server 'aadtest'?
-[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"): Y
-
-ResourceGroupName ServerName DisplayName ObjectId
------------------ ---------- ----------- --------
-Group-233 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
+
+
+
+
+
+
+
+ Remove-AzureSqlServerAuditing
+
+ Disables auditing of all the databases that rely on the auditing policy of the given database server.
+
+
+
+
+ Remove
+ AzureSqlServerAuditing
+
+
+
+ The Remove-AzureSqlServerAuditing cmdlet disables auditing of all the databases that rely on the auditing policy of the given database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server. After the successful execution of the cmdlet, auditing of the database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database server identifiers (i.e. ResourceGroupName and ServerName)
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Remove-AzureSqlServerAuditing
+
+ PassThru
+
+ Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+
+ SwitchParameter
+
+
+ ServerName
+
+ The name of the server.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the resource group containing the server.
+
+ String
+
+
+ Profile
+
+ In-memory profile
+
+ AzureProfile
+
+
+
+
+
+ PassThru
+
+ Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
+
+
+ ServerName
+
+ The name of the server.
+
+ String
+
+ String
+
+
+ none
+
+
+ ResourceGroupName
+
+ The name of the resource group containing the server.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ In-memory profile
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+
+
+
+ InputType
+
+
+
+
+
+None
+
+
+
+
+
+
+ OutputType
+
+
+
+
+
+Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+ -------------------------- Code Example --------------------------
+
+ PS C:\>
+
+ PS C:\>Get-Help Remove-AzureSqlServerAuditing -Full
+
+ Code Example Description
+
+
+
@@ -6810,11 +7834,7 @@ Group-233 aad-managed-demo DBA
- Get-AzureSqlServerActiveDirectoryAdministrator
-
-
-
- Set-AzureSqlServerActiveDirectoryAdministrator
+ Azure_SqlDatabase
@@ -6987,7 +8007,8 @@ Switch-AzureMode –Name AzureResourceManager
- New InputType
+
+New InputType
@@ -6999,7 +8020,8 @@ Switch-AzureMode –Name AzureResourceManager
- New OutputType
+
+New OutputType
@@ -7055,135 +8077,272 @@ Switch-AzureMode –Name AzureResourceManager
- Set-AzureSqlDatabase
+ Resume-AzureSqlDatabase
- Updates properties for an Azure SQL Database, or moves an existing database into an elastic pool.
+
- Set
+ Resume
AzureSqlDatabase
- The Set-AzureSqlDatabase cmdlet sets properties for an Azure SQL Database.
-Set the ElasticPoolName parameter to move a database into an elastic pool.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
- Set-AzureSqlDatabase
-
- DatabaseName
-
- The name of the Azure SQL Database to modify.
-
- String
-
-
- MaxSizeBytes
-
- If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition.
-
- Int64
-
-
- Edition
-
- If specified, the new edition for the Azure SQL Database.
-
- DatabaseEdition
-
-
- RequestedServiceObjectiveName
-
- The name of the service objective to assign to the Azure SQL Database.
-
- String
-
-
- ElasticPoolName
+ Resume-AzureSqlDatabase
+
+ ServerName
- The name of the Azure SQL elastic pool to put the database in.
+
String
-
- Tags
-
- The tags to associate with the Azure SQL Database.
-
- Dictionary`2[String]
-
-
- ServerName
+
+ DatabaseName
- Name of the Azure SQL Server that contains the Azure SQL Database.
+
String
ResourceGroupName
- Name of resource group of the Azure SQL Server that contains the Azure SQL Database.
+
String
Profile
- In-memory profile.
+
AzureProfile
-
- DatabaseName
+
+ ServerName
- The name of the Azure SQL Database to modify.
+
String
String
- none
+
-
- MaxSizeBytes
+
+ DatabaseName
- If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition.
+
- Int64
+ String
- Int64
+ String
- none
+
-
- Edition
+
+ ResourceGroupName
- If specified, the new edition for the Azure SQL Database.
+
- DatabaseEdition
+ String
- DatabaseEdition
+ String
- none
+
- RequestedServiceObjectiveName
+ Profile
- The name of the service objective to assign to the Azure SQL Database.
+
- String
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Set-AzureSqlDatabase
+
+ Updates properties for an Azure SQL Database, or moves an existing database into an elastic pool.
+
+
+
+
+ Set
+ AzureSqlDatabase
+
+
+
+ The Set-AzureSqlDatabase cmdlet sets properties for an Azure SQL Database.
+Set the ElasticPoolName parameter to move a database into an elastic pool.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Set-AzureSqlDatabase
+
+ DatabaseName
+
+ The name of the Azure SQL Database to modify.
+
+ String
+
+
+ MaxSizeBytes
+
+ If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition.
+
+ Int64
+
+
+ Edition
+
+ If specified, the new edition for the Azure SQL Database.
+
+ DatabaseEdition
+
+
+ RequestedServiceObjectiveName
+
+ The name of the service objective to assign to the Azure SQL Database.
+
+ String
+
+
+ ElasticPoolName
+
+ The name of the Azure SQL elastic pool to put the database in.
+
+ String
+
+
+ Tags
+
+ The tags to associate with the Azure SQL Database.
+
+ Dictionary`2[String]
+
+
+ ServerName
+
+ Name of the Azure SQL Server that contains the Azure SQL Database.
+
+ String
+
+
+ ResourceGroupName
+
+ Name of resource group of the Azure SQL Server that contains the Azure SQL Database.
+
+ String
+
+
+ Profile
+
+ In-memory profile.
+
+ AzureProfile
+
+
+
+
+
+ DatabaseName
+
+ The name of the Azure SQL Database to modify.
+
+ String
+
+ String
+
+
+ none
+
+
+ MaxSizeBytes
+
+ If specified, the new maximum size for the database in bytes. You can specify either this parameter or MaxSizeGB. See the MaxSizeGB parameter for acceptable values based on edition.
+
+ Int64
+
+ Int64
+
+
+ none
+
+
+ Edition
+
+ If specified, the new edition for the Azure SQL Database.
+
+ DatabaseEdition
+
+ DatabaseEdition
+
+
+ none
+
+
+ RequestedServiceObjectiveName
+
+ The name of the service objective to assign to the Azure SQL Database.
+
+ String
String
@@ -7259,7 +8418,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -7271,7 +8431,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -7559,7 +8720,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -7571,7 +8733,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
@@ -7656,13 +8819,6 @@ Switch-AzureMode –Name AzureResourceManager
String
-
- MaskingLevel
-
- Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended.
-
- String
-
ServerName
@@ -7730,18 +8886,6 @@ Switch-AzureMode –Name AzureResourceManager
none
-
- MaskingLevel
-
- Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended.
-
- String
-
- String
-
-
- none
-
ServerName
@@ -7790,6 +8934,18 @@ Switch-AzureMode –Name AzureResourceManager
none
+
+ MaskingLevel
+
+ Specifies whether data masking operation is done in a standard or extended manner (defaults to 'Standard'). Valid values are: Standard, Extended.
+
+ string
+
+ string
+
+
+ none
+
@@ -7799,7 +8955,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -7811,7 +8968,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingPolicyModel
@@ -7876,117 +9034,30 @@ Switch-AzureMode –Name AzureResourceManager
Set-AzureSqlDatabaseDataMaskingRule
- MaskingFunction
+ ColumnName
- Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
+ The name of the column that is the target of this masking rule.
String
-
+
TableName
The name of the table in the database that the masked column is part of.
String
-
- ColumnName
+
+ SchemaName
- The name of the column that is the target of this masking rule.
-
- String
-
-
- PrefixSize
-
- When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the beginning of the text that are not masked, defaults to 0.
-
- Nullable`1[UInt32]
-
-
- ReplacementString
-
- When setting the MaskingFunction to be 'Text', the PrefixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
-
- String
-
-
- SuffixSize
-
- When setting the MaskingFunction to be 'Text', the SuffixSize represents the number of characters in the end of the text that are not masked, defaults to 0.
-
- Nullable`1[UInt32]
-
-
- NumberFrom
-
- When setting the MaskingFunction to be 'Text', the ReplacementString represents the text that acts as a mask.
-
- Nullable`1[Double]
-
-
- NumberTo
-
- When setting the MaskingFunction to be 'Number', the NumberFrom represents the upper bound of the interval from which a random value is selected, defaults to 0.
-
- Nullable`1[Double]
-
-
- PassThru
-
- Returns an object describing the data masking rule as well as the rule's identifiers (i.e. ResourceGroupName, ServerName, DatabaseName, RuleId and either TableName and ColumnName or the AliasName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
-
- SwitchParameter
-
-
- RuleId
-
- The identifier for the data masking rule.
-
- String
-
-
- ServerName
-
- The name of the server containing the database.
-
- String
-
-
- DatabaseName
-
- The name of the database.
-
- String
-
-
- ResourceGroupName
-
- The name of the resource group containing the database.
-
- String
-
-
- Profile
-
- In-memory profile
-
- AzureProfile
-
-
-
- Set-AzureSqlDatabaseDataMaskingRule
-
- MaskingFunction
-
- Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
-
- String
-
-
- AliasName
-
- The name of the alias that is the target of this masking rule.
+
+
+ String
+
+
+ MaskingFunction
+
+ Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
String
@@ -8071,9 +9142,9 @@ Switch-AzureMode –Name AzureResourceManager
- MaskingFunction
+ ColumnName
- Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
+ The name of the column that is the target of this masking rule.
String
@@ -8082,7 +9153,7 @@ Switch-AzureMode –Name AzureResourceManager
none
-
+
TableName
The name of the table in the database that the masked column is part of.
@@ -8094,10 +9165,22 @@ Switch-AzureMode –Name AzureResourceManager
none
-
- ColumnName
+
+ SchemaName
- The name of the column that is the target of this masking rule.
+
+
+ String
+
+ String
+
+
+
+
+
+ MaskingFunction
+
+ Specifies the masking function to be used (defaults to 'Default'). Valid values are: Default, NoMasking, Text, Number, SocialSecurityNumber, CreditCardNumber, Email.
String
@@ -8238,14 +9321,14 @@ Switch-AzureMode –Name AzureResourceManager
none
-
+
AliasName
The name of the alias that is the target of this masking rule.
- String
+ string
- String
+ string
none
@@ -8259,7 +9342,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -8271,7 +9355,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseDataMaskingRuleModel
@@ -8315,80 +9400,52 @@ Switch-AzureMode –Name AzureResourceManager
- Set-AzureSqlServerAuditingPolicy
+ Set-AzureSqlDatabaseTransparentDataEncryption
- Sets an Azure SQL Database server's auditing policy.
+ Updates properties for Transparent Data Encryption for an Azure SQL Database.
Set
- AzureSqlServerAuditingPolicy
+ AzureSqlDatabaseTransparentDataEncryption
- The Set-AzureSqlServerAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. The auditing policy of a database server apply to all the databases in this server that are marked as using the server's auditing policy, as well as all newly created databases.If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the server's identifiers (i.e. ResourceGroupName and ServerName).
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+ The Set-SetAzureSqlDatabaseTransparentDataEncryption cmdlet is used to set the Transparent Data Encryption (TDE) property of an already existing Azure SQL database. Use the ResourceGroupName, ServerName, and DatabaseName. Use "Enabled" or "Disabled" to specify the target state of TDE for an Azure SQL Database. If the command succeeds and the PassThru switch is on, it returns an object describing the TDE state as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName).
+
+Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
- Set-AzureSqlServerAuditingPolicy
-
- PassThru
-
- Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output.
-
- SwitchParameter
-
-
- EventType
-
- Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None.
- It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet.
-
- String[]
-
-
- StorageAccountName
-
- Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail.
-
- String
-
-
- StorageKeyType
-
- The type of storage key. Valid values are: Primary, Secondary.
-
- String
-
-
- RetentionInDays
+ Set-AzureSqlDatabaseTransparentDataEncryption
+
+ State
-
+ The state to set Transparent Data Encryption to for the Azure SQL Database.
- Nullable`1[UInt32]
+ TransparentDataEncryptionStateType
-
- TableIdentifier
+
+ ServerName
-
+ The name of the Azure SQL Database Server the database is in.
String
-
- ServerName
+
+ DatabaseName
- The name of the server.
+ The name of the Azure SQL Database to retrieve.
String
ResourceGroupName
- The name of the resource group that contains the server.
+ The name of the resource group of the server containing the database to retrieve.
String
@@ -8402,71 +9459,22 @@ Switch-AzureMode –Name AzureResourceManager
-
- PassThru
-
- Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output.
-
- SwitchParameter
-
- SwitchParameter
-
-
- none
-
-
- EventType
-
- Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None.
- It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet.
-
- String[]
-
- String[]
-
-
- none
-
-
- StorageAccountName
-
- Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail.
-
- String
-
- String
-
-
- none
-
-
- StorageKeyType
-
- The type of storage key. Valid values are: Primary, Secondary.
-
- String
-
- String
-
-
- none
-
-
- RetentionInDays
+
+ State
-
+ The state to set Transparent Data Encryption to for the Azure SQL Database.
- Nullable`1[UInt32]
+ TransparentDataEncryptionStateType
- Nullable`1[UInt32]
+ TransparentDataEncryptionStateType
-
- TableIdentifier
+
+ ServerName
-
+ The name of the Azure SQL Database Server the database is in.
String
@@ -8475,29 +9483,29 @@ Switch-AzureMode –Name AzureResourceManager
-
- ServerName
+
+ DatabaseName
- The name of the server.
+ The name of the Azure SQL Database to retrieve.
String
String
- none
+
ResourceGroupName
- The name of the resource group that contains the server.
+ The name of the resource group of the server containing the database to retrieve.
String
String
- none
+
Profile
@@ -8509,7 +9517,7 @@ Switch-AzureMode –Name AzureResourceManager
AzureProfile
- none
+
@@ -8520,7 +9528,7 @@ Switch-AzureMode –Name AzureResourceManager
- None
+ System.String
@@ -8532,7 +9540,7 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel
+ Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel
@@ -8546,16 +9554,20 @@ Switch-AzureMode –Name AzureResourceManager
- -------------------------- Code Example --------------------------
+ -------------------------- Code Example 1 --------------------------
PS C:\>
- PS C:\>Get-Help Set-AzureSqlServerAuditingPolicy
+ PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled
- Code Example Description
+ The following command updates the transparent data encryption state for the Azure SQL database named "database1".
-
+ PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled
+
+ResourceGroupName ServerName DatabaseName State
+----------------- ---------- ------------ -----
+resourcegroup1 server1 database1 Disabled
@@ -8568,205 +9580,15 @@ Switch-AzureMode –Name AzureResourceManager
- Azure_SqlDatabase
-
+ Transparent Data Encryption with Azure SQL Database
+ https://msdn.microsoft.com/library/dn948096
- Set-AzureSqlDatabaseTransparentDataEncryption
-
- Updates properties for Transparent Data Encryption for an Azure SQL Database.
-
-
-
-
- Set
- AzureSqlDatabaseTransparentDataEncryption
-
-
-
- The Set-SetAzureSqlDatabaseTransparentDataEncryption cmdlet is used to set the Transparent Data Encryption (TDE) property of an already existing Azure SQL database. Use the ResourceGroupName, ServerName, and DatabaseName. Use "Enabled" or "Disabled" to specify the target state of TDE for an Azure SQL Database. If the command succeeds and the PassThru switch is on, it returns an object describing the TDE state as well as the database identifiers (ResourceGroupName, ServerName and DatabaseName).
-
-Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
-
-
-
- Set-AzureSqlDatabaseTransparentDataEncryption
-
- State
-
- The state to set Transparent Data Encryption to for the Azure SQL Database.
-
- TransparentDataEncryptionStateType
-
-
- ServerName
-
- The name of the Azure SQL Database Server the database is in.
-
- String
-
-
- DatabaseName
-
- The name of the Azure SQL Database to retrieve.
-
- String
-
-
- ResourceGroupName
-
- The name of the resource group of the server containing the database to retrieve.
-
- String
-
-
- Profile
-
- In-memory profile
-
- AzureProfile
-
-
-
-
-
- State
-
- The state to set Transparent Data Encryption to for the Azure SQL Database.
-
- TransparentDataEncryptionStateType
-
- TransparentDataEncryptionStateType
-
-
-
-
-
- ServerName
-
- The name of the Azure SQL Database Server the database is in.
-
- String
-
- String
-
-
-
-
-
- DatabaseName
-
- The name of the Azure SQL Database to retrieve.
-
- String
-
- String
-
-
-
-
-
- ResourceGroupName
-
- The name of the resource group of the server containing the database to retrieve.
-
- String
-
- String
-
-
-
-
-
- Profile
-
- In-memory profile
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
- InputType
-
-
-
-
-
-System.String
-
-
-
-
-
-
- OutputType
-
-
-
-
-
-Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Model.AzureSqlDatabaseTransparentDataEncryptionModel
-
-
-
-
-
-
-
-
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
-
-
-
-
- -------------------------- Code Example 1 --------------------------
-
- PS C:\>
-
- PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled
-
- The following command updates the transparent data encryption state for the Azure SQL database named "database1".
-
-
- PS C:\>Set-AzureSqlDatabaseTransparentDataEncryption –ResourceGroupName "resourcegroup1" –ServerName "server1" –DatabaseName "database1" -State Enabled
-
-ResourceGroupName ServerName DatabaseName State
------------------ ---------- ------------ -----
-resourcegroup1 server1 database1 Disabled
-
-
-
-
-
-
-
-
-
-
-
-
- Transparent Data Encryption with Azure SQL Database
- https://msdn.microsoft.com/library/dn948096
-
-
-
-
-
-
- Set-AzureSqlElasticPool
+ Set-AzureSqlElasticPool
Updates properties for an Azure SQL elastic database pool.
@@ -8989,7 +9811,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -9001,7 +9824,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -9097,9 +9921,9 @@ Switch-AzureMode –Name AzureResourceManager
String
- SqlAdminPassword
+ SqlAdministratorPassword
- The new SQL administrator password for the server.
+
SecureString
@@ -9168,16 +9992,16 @@ Switch-AzureMode –Name AzureResourceManager
none
- SqlAdminPassword
+ SqlAdministratorPassword
- The new SQL administrator password for the server.
+
SecureString
SecureString
- none
+
Tags
@@ -9263,6 +10087,18 @@ Switch-AzureMode –Name AzureResourceManager
+
+ SqlAdminPassword
+
+ The new SQL administrator password for the server.
+
+ securestring
+
+ securestring
+
+
+ none
+
@@ -9272,7 +10108,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.String
+
+System.String
@@ -9284,7 +10121,8 @@ Switch-AzureMode –Name AzureResourceManager
- System.Object
+
+System.Object
@@ -9448,7 +10286,7 @@ Switch-AzureMode –Name AzureResourceManager
Profile
- In-memory profile.
+
AzureProfile
@@ -9493,46 +10331,262 @@ System.Object
-
- -------------------------- Code Example 1 --------------------------
-
- PS C:\>
-
- PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs"
-
- This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23"
-
-
-
-ResourceGroupName ServerName DisplayName ObjectId
------------------ ---------- ----------- --------
-Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
-
-
-
-
-
-
-
-
-
-
- -------------------------- Code Example 2 --------------------------
-
- PS C:\>
-
- PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "Bob Johns"
-
- This command provisions an Azure Active Directory user "Bob Johns" as an administrator for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23"
-
-
-
-ResourceGroupName ServerName DisplayName ObjectId
------------------ ---------- ----------- --------
-Group-23 aad-managed-demo Bob Johns 11E95548-B179-4FE1-9AF4-ACA49D13ABB9
-
-
-
+
+
+
+
+
+
+
+ Set-AzureSqlServerAuditingPolicy
+
+ Sets an Azure SQL Database server's auditing policy.
+
+
+
+
+ Set
+ AzureSqlServerAuditingPolicy
+
+
+
+ The Set-AzureSqlServerAuditingPolicy cmdlet changes the auditing policy of an Azure SQL Database server. To use the cmdlet, use the ResourceGroupName and ServerName parameters to identify the database server, the StorageAccountName parameter to specify the storage account to be used for the audit logs and the EventType parameter to define which event types to audit. The auditing policy of a database server apply to all the databases in this server that are marked as using the server's auditing policy, as well as all newly created databases.If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the server's identifiers (i.e. ResourceGroupName and ServerName).
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Set-AzureSqlServerAuditingPolicy
+
+ PassThru
+
+ Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output.
+
+ SwitchParameter
+
+
+ EventType
+
+ Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None.
+ It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet.
+
+ String[]
+
+
+ StorageAccountName
+
+ Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail.
+
+ String
+
+
+ StorageKeyType
+
+ The type of storage key. Valid values are: Primary, Secondary.
+
+ String
+
+
+ RetentionInDays
+
+
+
+ Nullable`1[UInt32]
+
+
+ TableIdentifier
+
+
+
+ String
+
+
+ ServerName
+
+ The name of the server.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the resource group that contains the server.
+
+ String
+
+
+ Profile
+
+ In-memory profile
+
+ AzureProfile
+
+
+
+
+
+ PassThru
+
+ Returns an object describing the auditing policy as well as the database server's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdletsucceeds. By default, this cmdlet does not return any output.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
+
+
+ EventType
+
+ Specifies the event types to audit. Valid values are: Default, DataAccess, DataChanges, SchemaChanges, SecurityExceptions, RevokePermissions, All, None.
+ It is possible to specify several event types. You can specify 'All' to audit all of the event types or 'None' to specify that none of the events will be audited. Specifying 'All' or 'None' alongside other event types would result in failure to execute the cmdlet.
+
+ String[]
+
+ String[]
+
+
+ none
+
+
+ StorageAccountName
+
+ Specifies the name of the storage account to be used when auditing the databases that rely on this server's auditing policy. Wildcards are not permitted.Note that this parameter is not required. When this parameter is not provided, the cmdlet would use the storage account that was defined previously as part of the auditing policy of the database. If this is the first time an auditing policy is defined for the database and this parameter is not provided, the cmdlet will fail.
+
+ String
+
+ String
+
+
+ none
+
+
+ StorageKeyType
+
+ The type of storage key. Valid values are: Primary, Secondary.
+
+ String
+
+ String
+
+
+ none
+
+
+ RetentionInDays
+
+
+
+ Nullable`1[UInt32]
+
+ Nullable`1[UInt32]
+
+
+
+
+
+ TableIdentifier
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ServerName
+
+ The name of the server.
+
+ String
+
+ String
+
+
+ none
+
+
+ ResourceGroupName
+
+ The name of the resource group that contains the server.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ In-memory profile
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+ InputType
+
+
+
+
+
+None
+
+
+
+
+
+
+ OutputType
+
+
+
+
+
+Microsoft.Azure.Commands.Sql.Security.Model.ServerAuditingPolicyModel
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+ -------------------------- Code Example 1 --------------------------
+
+ PS C:\>
+
+ PS C:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs"
+
+ This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23"
+
+
+
+ResourceGroupName ServerName DisplayName ObjectId
+----------------- ---------- ----------- --------
+Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
+
+
+
@@ -9540,20 +10594,1064 @@ Group-23 aad-managed-demo Bob
- -------------------------- Code Example 3 --------------------------
+ -------------------------- Code Example 2 --------------------------
+
+ PS C:\>
+
+ PS C:\>Get-Help Set-AzureSqlServerAuditingPolicy
+
+ Code Example Description
+
+
+ResourceGroupName ServerName DisplayName ObjectId
+----------------- ---------- ----------- --------
+Group-23 aad-managed-demo Bob Johns 11E95548-B179-4FE1-9AF4-ACA49D13ABB9
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Code Example 3 --------------------------
+
+ PS C:\>
+
+ PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b"
+
+ This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23". To enforce <DisplayName> uniqueness, an optional parameter <–ObjectId > "40b79501-b343-44ed-9ce7-da4c8cc7353b" representing Azure AD ObjectID for the DBAs group is included
+
+
+ PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b"
+
+ResourceGroupName ServerName DisplayName ObjectId
+----------------- ---------- ----------- --------
+Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
+
+
+
+
+
+ Set-AzureSqlServerFirewallRule
+
+ Updates an Azure SQL Server firewall rule.
+
+
+
+
+ Set
+ AzureSqlServerFirewallRule
+
+
+
+ The Set-AzureSqlServerFirewallRule cmdlet updates an Azure SQL Server firewall rule.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Set-AzureSqlServerFirewallRule
+
+ FirewallRuleName
+
+ The name of the Azure SQL Server firewall rule to update.
+
+ String
+
+
+ StartIpAddress
+
+ The new starting IP address for the firewall rule.
+
+ String
+
+
+ EndIpAddress
+
+ The new ending IP address for this rule.
+
+ String
+
+
+ ServerName
+
+ The name of the Azure SQL Server that contains the firewall rule you want to change.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the resource group that contains the Azure SQL Server with the firewall rule to change.
+
+ String
+
+
+ Profile
+
+ In-memory profile.
+
+ AzureProfile
+
+
+
+
+
+ FirewallRuleName
+
+ The name of the Azure SQL Server firewall rule to update.
+
+ String
+
+ String
+
+
+ none
+
+
+ StartIpAddress
+
+ The new starting IP address for the firewall rule.
+
+ String
+
+ String
+
+
+ none
+
+
+ EndIpAddress
+
+ The new ending IP address for this rule.
+
+ String
+
+ String
+
+
+ none
+
+
+ ServerName
+
+ The name of the Azure SQL Server that contains the firewall rule you want to change.
+
+ String
+
+ String
+
+
+ none
+
+
+ ResourceGroupName
+
+ The name of the resource group that contains the Azure SQL Server with the firewall rule to change.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ In-memory profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+
+
+
+ InputType
+
+
+
+
+
+System.String
+
+
+
+
+
+
+ OutputType
+
+
+
+
+
+System.Object
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+ -------------------------- Code Example --------------------------
+
+ PS C:\>
+
+ PS C:\>Set-AzureSqlServerFirewallRule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
+
+ Get-AzureSqlServerFirewallRule
+
+
+
+ New-AzureSqlServerFirewallRule
+
+
+
+ Remove-AzureSqlServerFirewallRule
+
+
+
+
+
+
+
+ Start-AzureSqlDatabaseExecuteIndexRecommendation
+
+
+
+
+
+
+ Start
+ AzureSqlDatabaseExecuteIndexRecommendation
+
+
+
+
+
+
+
+ Start-AzureSqlDatabaseExecuteIndexRecommendation
+
+ ServerName
+
+
+
+ String
+
+
+ DatabaseName
+
+
+
+ String
+
+
+ IndexRecommendationName
+
+
+
+ String
+
+
+ ResourceGroupName
+
+
+
+ String
+
+
+ Profile
+
+
+
+ AzureProfile
+
+
+
+
+
+ ServerName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ DatabaseName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ IndexRecommendationName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ResourceGroupName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Profile
+
+
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Start-AzureSqlServerUpgrade
+
+ Starts upgrading an Azure SQL V11 server to a V12 server.
+
+
+
+
+ Start
+ AzureSqlServerUpgrade
+
+
+
+ The Start-AzureSqlServerUpgrade cmdlet starts the upgrade of a SQL V11 server to V12.
+Monitor the progress of an upgrade with the Get-AzureSqlServerUpgrade cmdlet.
+You can stop the upgrade process with the Stop-AzureSqlServerUpgrade cmdlet.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode -Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Start-AzureSqlServerUpgrade
+
+ ServerVersion
+
+ The target version to upgrade the Azure SQL Server. Currently the version must be "12.0".
+
+ String
+
+
+ ScheduleUpgradeAfterUtcDateTime
+
+ The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone.
+
+ Nullable`1[DateTime]
+
+
+ DatabaseCollection
+
+ Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object.
+
+ RecommendedDatabaseProperties[]
+
+
+ ElasticPoolCollection
+
+ Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object.
+
+ UpgradeRecommendedElasticPoolProperties[]
+
+
+ ServerName
+
+ The name of the Azure SQL Server to upgrade.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of resource group containing the Azure SQL Server.
+
+ String
+
+
+ Profile
+
+ In-memory profile.
+
+ AzureProfile
+
+
+
+
+
+ ServerVersion
+
+ The target version to upgrade the Azure SQL Server. Currently the version must be "12.0".
+
+ String
+
+ String
+
+
+
+
+
+ ScheduleUpgradeAfterUtcDateTime
+
+ The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone.
+
+ Nullable`1[DateTime]
+
+ Nullable`1[DateTime]
+
+
+
+
+
+ DatabaseCollection
+
+ Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object.
+
+ RecommendedDatabaseProperties[]
+
+ RecommendedDatabaseProperties[]
+
+
+
+
+
+ ElasticPoolCollection
+
+ Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object.
+
+ UpgradeRecommendedElasticPoolProperties[]
+
+ UpgradeRecommendedElasticPoolProperties[]
+
+
+
+
+
+ ServerName
+
+ The name of the Azure SQL Server to upgrade.
+
+ String
+
+ String
+
+
+
+
+
+ ResourceGroupName
+
+ The name of resource group containing the Azure SQL Server.
+
+ String
+
+ String
+
+
+
+
+
+ Profile
+
+ In-memory profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+ InputType
+
+
+
+
+
+System.String
+
+
+
+
+
+
+ OutputType
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+ -------------------------- Example 1: Simple server upgrade --------------------------
+
+ PS C:\>
+
+ Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0
+
+ Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0
+The server "MySqlServer" must have version 2.0, otherwise the command will fail.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 2: Upgrade server with schedule time and target database properties --------------------------
+
+ PS C:\>
+
+ $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime()
+$databaseMap = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.RecommendedDatabaseProperties
+$databaseMap.Name = "testdb"
+$databaseMap.TargetEdition = "Standard"
+$databaseMap.TargetServiceLevelObjective = "S0"
+Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -DatabaseCollection @($databaseMap)
+
+ Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0.
+The server "MySqlServer" must have version 2.0 and a database named "testdb", otherwise the command will fail.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- Example 3: Upgrade server with schedule time and target elastic pool properties --------------------------
+
+ PS C:\>
+
+ $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime()
+$elasticPool = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.UpgradeRecommendedElasticPoolProperties
+$elasticPool.DatabaseDtuMax = 100
+$elasticPool.DatabaseDtuMin = 50
+$elasticPool.Dtu = 800
+$elasticPool.Edition = "Standard"
+$elasticPool.IncludeAllDatabases = $true
+$elasticPool.Name = "my_ep"
+$elasticPool.StorageMb = 800 * 1024
+Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -ElasticPoolCollection @($elasticPool)
+
+ Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0.
+The server "MySqlServer" must have version 2.0, otherwise the command will fail.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
+
+ Stop-AzureSqlServerUpgrade
+
+
+
+ Get-AzureSqlServerUpgrade
+
+
+
+
+
+
+
+ Stop-AzureSqlDatabaseExecuteIndexRecommendation
+
+
+
+
+
+
+ Stop
+ AzureSqlDatabaseExecuteIndexRecommendation
+
+
+
+
+
+
+
+ Stop-AzureSqlDatabaseExecuteIndexRecommendation
+
+ ServerName
+
+
+
+ String
+
+
+ DatabaseName
+
+
+
+ String
+
+
+ IndexRecommendationName
+
+
+
+ String
+
+
+ ResourceGroupName
+
+
+
+ String
+
+
+ Profile
+
+
+
+ AzureProfile
+
+
+
+
+
+ ServerName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ DatabaseName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ IndexRecommendationName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ ResourceGroupName
+
+
+
+ String
+
+ String
+
+
+
+
+
+ Profile
+
+
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Stop-AzureSqlServerUpgrade
+
+ Stops an Azure SQL Server Upgrade.
+
+
+
+
+ Stop
+ AzureSqlServerUpgrade
+
+
+
+ The Stop-AzureSqlServerUpgrade cmdlet stops the upgrade process.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Stop-AzureSqlServerUpgrade
+
+ Force
+
+ Skip confirmation message for performing this action.
+
+ SwitchParameter
+
+
+ ServerName
+
+ The name of the Azure SQL Server to stop upgrading.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the resource group containing the Azure SQL Server.
+
+ String
+
+
+ Profile
+
+ In-memory profile.
+
+ AzureProfile
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+
+
+
+
+ Force
+
+ Skip confirmation message for performing this action.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ ServerName
+
+ The name of the Azure SQL Server to stop upgrading.
+
+ String
+
+ String
+
+
+
+
+
+ ResourceGroupName
+
+ The name of the resource group containing the Azure SQL Server.
+
+ String
+
+ String
+
+
+
+
+
+ Profile
+
+ In-memory profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+
+
+
+ WhatIf
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Confirm
+
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+
+
+
+ InputType
+
+
+
+
+
+System.String
+
+
+
+
+
+
+ OutputType
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+
+
+
+ -------------------------- Example 1: Stop a server upgrade --------------------------
PS C:\>
- PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b"
+ Stop-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer
- This command provisions an Azure Active Directory administrator group “DBAs” for Azure SQL Database Server “aad-managed-demo” associated with resource group "Group-23". To enforce <DisplayName> uniqueness, an optional parameter <–ObjectId > "40b79501-b343-44ed-9ce7-da4c8cc7353b" representing Azure AD ObjectID for the DBAs group is included
+ Stop the request to upgrade server "MySqlServer" in resource group "MyResourceGroup".
- PS c:\>Set-AzureSqlServerActiveDirectoryAdministrator –ResourceGroupName "Group-23" –ServerName "aad-managed-demo" –DisplayName "DBAs" –ObjectId "40b79501-b343-44ed-9ce7-da4c8cc7353b"
-
-ResourceGroupName ServerName DisplayName ObjectId
------------------ ---------- ----------- --------
-Group-23 aad-managed-demo DBAs 40b79501-b343-44ed-9ce7-da4c8cc7353b
+
@@ -9566,11 +11664,15 @@ Group-23 aad-managed-demo DBAs
- Get-AzureSqlServerActiveDirectoryAdministrator
+ Azure_SqlDatabase
+
+
+
+ Start-AzureSqlServerUpgrade
- Remove-AzureSqlServerActiveDirectoryAdministrator
+ Get-AzureSqlServerUpgrade
@@ -9578,15 +11680,15 @@ Group-23 aad-managed-demo DBAs
- Start-AzureSqlServerUpgrade
+ Suspend-AzureSqlDatabase
- Start
- AzureSqlServerUpgrade
+ Suspend
+ AzureSqlDatabase
@@ -9594,37 +11696,16 @@ Group-23 aad-managed-demo DBAs
- Start-AzureSqlServerUpgrade
-
- ServerVersion
+ Suspend-AzureSqlDatabase
+
+ ServerName
String
-
- ScheduleUpgradeAfterUtcDateTime
-
-
-
- Nullable`1[DateTime]
-
-
- DatabaseCollection
-
-
-
- RecommendedDatabaseProperties[]
-
-
- ElasticPoolCollection
-
-
-
- UpgradeRecommendedElasticPoolProperties[]
-
- ServerName
+ DatabaseName
@@ -9647,8 +11728,8 @@ Group-23 aad-managed-demo DBAs
-
- ServerVersion
+
+ ServerName
@@ -9659,102 +11740,225 @@ Group-23 aad-managed-demo DBAs
-
- ScheduleUpgradeAfterUtcDateTime
+
+ DatabaseName
- Nullable`1[DateTime]
+ String
- Nullable`1[DateTime]
+ String
-
- DatabaseCollection
+
+ ResourceGroupName
- RecommendedDatabaseProperties[]
+ String
- RecommendedDatabaseProperties[]
+ String
-
- ElasticPoolCollection
+
+ Profile
- UpgradeRecommendedElasticPoolProperties[]
+ AzureProfile
- UpgradeRecommendedElasticPoolProperties[]
+ AzureProfile
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Use-AzureSqlServerAuditingPolicy
+
+ Marks an Azure SQL Database as using its server's auditing policy.
+
+
+
+
+ Use
+ AzureSqlServerAuditingPolicy
+
+
+
+ The Use-AzureSqlServerAuditingPolicy cmdlet marks an Azure SQL Database as using its server's auditing policy. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. If no auditing policy was defined already for the database server, this cmdlet would fail.
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
+
+
+
+ Use-AzureSqlServerAuditingPolicy
+
+ PassThru
+
+ Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+
+ SwitchParameter
+
+
+ ServerName
+
+ The name of the server.
+
+ String
+
+
+ DatabaseName
+
+ The name of the database.
+
+ String
+
+
+ ResourceGroupName
+
+ The name of the resource group containing the server.
+
+ String
+
+
+ Profile
+
+ In-memory profile
+
+ AzureProfile
+
+
+
+
+
+ PassThru
+
+ Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
+
+
ServerName
-
+ The name of the server.
+
+ String
+
+ String
+
+
+ none
+
+
+ DatabaseName
+
+ The name of the database.
String
String
-
+ none
ResourceGroupName
-
+ The name of the resource group containing the server.
String
String
-
+ none
Profile
-
+ In-memory profile
AzureProfile
AzureProfile
-
+ none
-
+ InputType
-
+None
-
+ OutputType
-
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
@@ -9763,175 +11967,145 @@ Group-23 aad-managed-demo DBAs
-
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+ -------------------------- Code Example --------------------------
+
+ PS C:\>
+
+ PS C:\>Get-Help Use-AzureSqlDatabaseServerAuditPolicy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
- Stop-AzureSqlServerUpgrade
+ Disable-AzureSqlDatabaseDirectAccess
-
+ Disables the option to directly access an Azure SQL Database (without auditing).
- Stop
- AzureSqlServerUpgrade
+
+
-
+ The Disable-AzureSqlDatabaseDirectAccess cmdlet disables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. After the successful execution of the cmdlet, directly accessing an Azure Sql Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName)
+ Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
+Switch-AzureMode –Name AzureResourceManager
+ For more information, see Using Windows PowerShell with Resource Manager.
-
- Stop-AzureSqlServerUpgrade
-
- Force
-
-
-
- SwitchParameter
-
-
- ServerName
-
-
-
- String
-
-
- ResourceGroupName
-
-
-
- String
-
-
- Profile
-
-
-
- AzureProfile
-
-
- WhatIf
-
-
-
- SwitchParameter
-
-
- Confirm
-
-
-
- SwitchParameter
-
-
- Force
+ PassThru
-
+ Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
- SwitchParameter
+ switchparameter
- SwitchParameter
+ switchparameter
-
+ none
-
+
ServerName
-
-
- String
-
- String
-
-
-
-
-
- ResourceGroupName
-
-
+ Specifies the name of the database server holding the database.
- String
+ string
- String
+ string
-
+ none
-
- Profile
+
+ DatabaseName
-
+ Specifies the name of the database. Wildcards are not permitted.
- AzureProfile
+ string
- AzureProfile
+ string
-
+ none
-
- WhatIf
+
+ ResourceGroupName
-
+ Specifies the name of the resource group of the database.
- SwitchParameter
+ string
- SwitchParameter
+ string
-
+ none
- Confirm
+ Profile
-
+ In-memory profile.
- SwitchParameter
+ azureprofile
- SwitchParameter
+ azureprofile
-
+ none
-
+ InputType
-
+None
-
+ OutputType
-
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel
@@ -9940,119 +12114,109 @@ Group-23 aad-managed-demo DBAs
-
+ This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
+ -------------------------- Code Example --------------------------
+
+ PS C:\>
+
+ PS C:\>Disable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Azure_SqlDatabase
+
+
+
+ Enable-AzureSqlDatabaseDirectAccess
+
+
- Use-AzureSqlServerAuditingPolicy
+ Enable-AzureSqlDatabaseDirectAccess
- Marks an Azure SQL Database as using its server's auditing policy.
+ Enables the option to directly access an Azure SQL Database (with auditing).
- Use
- AzureSqlServerAuditingPolicy
+
+
- The Use-AzureSqlServerAuditingPolicy cmdlet marks an Azure SQL Database as using its server's auditing policy. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database. If no auditing policy was defined already for the database server, this cmdlet would fail.
+ The Enable-AzureSqlDatabaseDirectAccess cmdlet enables the possibility of accessing an Azure SQL Database without auditing. To use the cmdlet, use the ResourceGroupName, ServerName and DatabaseName parameters to identify the database.After the successful execution of the cmdlet, directly accessing to an Azure SQL Database is disabled. If the command succeeds and the PassThru switch is on, it returns an object describing the current auditing policy used as well as the database identifiers (i.e. ResourceGroupName, ServerName and DatabaseName).
Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
Switch-AzureMode –Name AzureResourceManager
For more information, see Using Windows PowerShell with Resource Manager.
-
- Use-AzureSqlServerAuditingPolicy
-
- PassThru
-
- Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
-
- SwitchParameter
-
-
- ServerName
-
- The name of the server.
-
- String
-
-
- DatabaseName
-
- The name of the database.
-
- String
-
-
- ResourceGroupName
-
- The name of the resource group containing the server.
-
- String
-
-
- Profile
-
- In-memory profile
-
- AzureProfile
-
-
PassThru
- Returns an object describing the auditing policy as well as the database's identifiers (i.e. ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
+ Returns an object describing the auditing policy as well as the database's identifiers (i.e., ResourceGroupName, ServerName and DatabaseName) when the cmdlet succeeds. By default, this cmdlet does not return any output.
- SwitchParameter
+ switchparameter
- SwitchParameter
+ switchparameter
none
-
+
ServerName
- The name of the server.
+ The name of the server containing the database.
- String
+ string
- String
+ string
none
-
+
DatabaseName
The name of the database.
- String
+ string
- String
+ string
none
-
+
ResourceGroupName
- The name of the resource group containing the server.
+ Specifies the name of the resource group of the database.
- String
+ string
- String
+ string
none
@@ -10060,11 +12224,11 @@ Switch-AzureMode –Name AzureResourceManager
Profile
- In-memory profile
+ In-memory profile.
- AzureProfile
+ azureprofile
- AzureProfile
+ azureprofile
none
@@ -10078,7 +12242,8 @@ Switch-AzureMode –Name AzureResourceManager
- None
+
+None
@@ -10090,7 +12255,8 @@ Switch-AzureMode –Name AzureResourceManager
- Microsoft.Azure.Commands.Sql.Security.Model.DatabaseAuditingPolicyModel
+
+Microsoft.Azure.Commands.Sql.Security.Model.DatabaseSecureConnectionPolicyModel
@@ -10108,7 +12274,7 @@ Switch-AzureMode –Name AzureResourceManager
PS C:\>
- PS C:\>Get-Help Use-AzureSqlDatabaseServerAuditPolicy
+ PS C:\>Enable-AzureSqlDatabaseDirectAccess –ResourceGroupName "resourcegroup1" –ServerName "server1" -DatabaseName "database1"
@@ -10129,14 +12295,18 @@ Switch-AzureMode –Name AzureResourceManager
Azure_SqlDatabase
+
+ Disable-AzureSqlDatabaseDirectAccess
+
+
- Get-AzureSqlDatabaseActivity
+ Get-AzureSqlElasticPoolRecommendationDatabase
- Gets the status of database operations in an elastic database pool.
+
@@ -10146,85 +12316,95 @@ Switch-AzureMode –Name AzureResourceManager
- Gets the status of moving elastic databases in and out of an elastic pool.
-
-Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
-
- ElasticPoolName
+
+ ElasticPoolRecommendation
- The name of the Azure SQL elastic pool.
+
- system.string
+ string
- system.string
+ string
- none
+
-
- Profile
+
+ DatabaseName
- In-memory profile.
+
- microsoft.azure.common.authentication.models.azureprofile
+ string
- microsoft.azure.common.authentication.models.azureprofile
+ string
- none
+
+ ServerName
+
+
+
+ string
+
+ string
+
+
+
+
+
ResourceGroupName
- The name of the resource group containing the Azure SQL Server that the elastic pool is in.
+
- system.string
+ string
- system.string
+ string
- none
+
-
- ServerName
+
+ Profile
- The name of the Azure SQL Server that the elastic pool is in.
+
- system.string
+ azureprofile
- system.string
+ azureprofile
- none
+
- InputType
+
- System.String
+
+
- OutputType
+
- System.Object
+
+
@@ -10233,44 +12413,20 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
-
- -------------------------- Example --------------------------
-
- PS C:\>
-
- PS C:\>Get-AzureSqlDatabaseActivity –ResourceGroupName "resourcegroup1" –ServerName "server1" –ElasticPoolName "elasticpool1"
-
- The following example returns the operation status of all databases in an elastic pool named "elasticpool1".
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
- New-AzureSqlServerFirewallRule
+ Get-AzureSqlElasticPoolRecommendationMetrics
- Creates a new firewall rule for an Azure SQL Database server.
+
@@ -10280,121 +12436,83 @@ Switch-AzureMode –Name AzureResourceManager
- The New-AzureSqlServerFirewallRule cmdlet creates a new firewall rule for the specified SQL Database server.
-
-Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
+
-
- AllowAllAzureIPs
+
+ ElasticPoolRecommendation
- Allows other Azure services to connect to the server. This is a special firewall rule that allows all Azure IPs to access the server.
+
- switchparameter
+ string
- switchparameter
+ string
- none
+
-
- EndIpAddress
+
+ ServerName
- End value of the IP address range.
+
- system.string
+ string
- system.string
+ string
- none
+
-
- FirewallRuleName
+
+ ResourceGroupName
- The name of the new firewall rule.
+
- system.string
+ string
- system.string
+ string
- none
+
Profile
- In-memory profile.
-
- microsoft.azure.common.authentication.models.azureprofile
-
- microsoft.azure.common.authentication.models.azureprofile
-
-
- none
-
-
- ResourceGroupName
-
- The name of the resource group that contains the Azure SQL Server this firewall rule will be created for.
-
- system.string
-
- system.string
-
-
- none
-
-
- ServerName
-
- The name of the Azure SQL Server where the new firewall rule is created. Specify only the server name, and not the fully qualified DNS name.
-
- system.string
-
- system.string
-
-
- none
-
-
- StartIpAddress
-
- Start value of the IP address range.
+
- system.string
+ azureprofile
- system.string
+ azureprofile
- none
+
- InputType
+
- System.String
+
+
- OutputType
+
- System.Object
+
+
@@ -10403,561 +12521,12 @@ Switch-AzureMode –Name AzureResourceManager
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
+
-
- -------------------------- Example --------------------------
-
- PS C:\>
-
- PS C:\>New-AzureSqlServerFirewallRule -ResourceGroupName "resourcegroup1" -ServerName "server1" -FirewallRuleName "rule1" -StartIpAddress "192.168.0.198" -EndIpAddress "192.168.0.199"
-
- The following example creates a new firewall rule.
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
-
- Get-AzureSqlServerFirewallRule
-
-
-
- Remove-AzureSqlServerFirewallRule
-
-
-
- Set-AzureSqlServerFirewallRule
-
-
-
-
-
- Start-AzureSqlServerUpgrade
-
- Starts upgrading an Azure SQL V11 server to a V12 server.
-
-
-
-
- Start
- AzureSqlServerUpgrade
-
-
-
- The Start-AzureSqlServerUpgrade cmdlet starts the upgrade of a SQL V11 server to V12.
-Monitor the progress of an upgrade with the Get-AzureSqlServerUpgrade cmdlet.
-You can stop the upgrade process with the Stop-AzureSqlServerUpgrade cmdlet.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode -Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
-
-
-
-
-
- ServerVersion
-
- The target version to upgrade the Azure SQL Server. Currently the version must be "12.0".
-
- String
-
- String
-
-
-
-
-
- ScheduleUpgradeAfterUtcDateTime
-
- The earliest time to upgrade the Azure SQL Server as a DateTime object. The time must be specified in the ISO8601 format and in UTC time zone.
-
- Nullable`1[DateTime]
-
- Nullable`1[DateTime]
-
-
-
-
-
- DatabaseCollection
-
- Collection of RecommendedDatabaseProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object.
-
- RecommendedDatabaseProperties[]
-
- RecommendedDatabaseProperties[]
-
-
-
-
-
- ElasticPoolCollection
-
- Collection of UpgradeRecommendedElasticPoolProperties objects to be used for the server upgrade. Check the examples on how to construct a sample object.
-
- UpgradeRecommendedElasticPoolProperties[]
-
- UpgradeRecommendedElasticPoolProperties[]
-
-
-
-
-
- ServerName
-
- The name of the Azure SQL Server to upgrade.
-
- String
-
- String
-
-
-
-
-
- ResourceGroupName
-
- The name of resource group containing the Azure SQL Server.
-
- String
-
- String
-
-
-
-
-
- Profile
-
- In-memory profile.
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
- InputType
-
-
-
-
- System.String
-
-
-
-
-
-
- OutputType
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
-
-
-
-
- -------------------------- Example 1: Simple server upgrade --------------------------
-
- PS C:\>
-
- Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0
-
- Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0
-The server "MySqlServer" must have version 2.0, otherwise the command will fail.
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Example 2: Upgrade server with schedule time and target database properties --------------------------
-
- PS C:\>
-
- $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime()
-$databaseMap = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.RecommendedDatabaseProperties
-$databaseMap.Name = "testdb"
-$databaseMap.TargetEdition = "Standard"
-$databaseMap.TargetServiceLevelObjective = "S0"
-Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -DatabaseCollection @($databaseMap)
-
- Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0.
-The server "MySqlServer" must have version 2.0 and a database named "testdb", otherwise the command will fail.
- The earliest time to upgrade is 5 minutes after the cmdlet invocation.
-After upgrade, the database "testdb" will have edition "Standard" and Service Level Objective "S0".
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- Example 3: Upgrade server with schedule time and target elastic pool properties --------------------------
-
- PS C:\>
-
- $scheduleTime = (Get-Date).AddMinutes(5).ToUniversalTime()
-$elasticPool = New-Object -TypeName Microsoft.Azure.Management.Sql.Models.UpgradeRecommendedElasticPoolProperties
-$elasticPool.DatabaseDtuMax = 100
-$elasticPool.DatabaseDtuMin = 50
-$elasticPool.Dtu = 800
-$elasticPool.Edition = "Standard"
-$elasticPool.IncludeAllDatabases = $true
-$elasticPool.Name = "my_ep"
-$elasticPool.StorageMb = 800 * 1024
-Start-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer -ServerVersion 12.0 -ScheduleUpgradeAfterUtcDateTime $scheduleTime -ElasticPoolCollection @($elasticPool)
-
- Upgrade the existing server "MySqlServer" in resource group "MyResourceGroup" to version 12.0.
-The server "MySqlServer" must have version 2.0, otherwise the command will fail.
- The earliest time to upgrade is 5 minutes after the cmdlet invocation.
-After upgrade, all databases will be in the elastic pool "my_ep".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
-
- Stop-AzureSqlServerUpgrade
-
-
-
- Get-AzureSqlServerUpgrade
-
-
-
-
-
-
-
- Stop-AzureSqlServerUpgrade
-
- Stops an Azure SQL Server Upgrade.
-
-
-
-
- Stop
- AzureSqlServerUpgrade
-
-
-
- The Stop-AzureSqlServerUpgrade cmdlet stops the upgrade process.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
-
-
-
-
-
- Force
-
- Skip confirmation message for performing this action.
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- ServerName
-
- The name of the Azure SQL Server to stop upgrading.
-
- String
-
- String
-
-
-
-
-
- ResourceGroupName
-
- The name of the resource group containing the Azure SQL Server.
-
- String
-
- String
-
-
-
-
-
- Profile
-
- In-memory profile.
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
- InputType
-
-
-
-
- System.String
-
-
-
-
-
-
- OutputType
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
-
-
-
-
- -------------------------- Example 1: Stop a server upgrade --------------------------
-
- PS C:\>
-
- Stop-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer
-
- Stop the request to upgrade server "MySqlServer" in resource group "MyResourceGroup".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
-
- Start-AzureSqlServerUpgrade
-
-
-
- Get-AzureSqlServerUpgrade
-
-
-
-
-
-
-
- Get-AzureSqlServerUpgrade
-
- Gets the status of an Azure SQL Server Upgrade.
-
-
-
-
- Get
- AzureSqlServerUpgrade
-
-
-
- The Get-AzureSqlServerUpgrade cmdlet returns the status of an Azure SQL Server Upgrade.
- Note: This cmdlet can only be executed in Azure Resource Manager mode. To enable Azure Resource Manager mode run the following command:
-Switch-AzureMode –Name AzureResourceManager
- For more information, see Using Windows PowerShell with Resource Manager.
-
-
-
-
-
- ServerName
-
- The name of the Azure SQL Server to get upgrade status.
-
- String
-
- String
-
-
-
-
-
- ResourceGroupName
-
- The name of the resource group containing the Azure SQL Server.
-
- String
-
- String
-
-
-
-
-
- Profile
-
- In-memory profile.
-
- AzureProfile
-
- AzureProfile
-
-
-
-
-
-
-
-
- InputType
-
-
-
-
- System.String
-
-
-
-
-
-
- OutputType
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
-
-
-
-
- -------------------------- Example 1: Get status of a server upgrade --------------------------
-
- PS C:\>
-
- Get-AzureSqlServerUpgrade -ResourceGroupName MyResourceGroup -ServerName MySqlServer | Format-List
-
- Get the status of an upgrade request from server "MySqlServer" in resource group "MyResourceGroup".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Azure_SqlDatabase
-
-
-
- Start-AzureSqlServerUpgrade
-
-
-
- Stop-AzureSqlServerUpgrade
-
-
-
-
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseCopyCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseCopyCmdletBase.cs
new file mode 100644
index 000000000000..4ff27232fa6e
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseCopyCmdletBase.cs
@@ -0,0 +1,45 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Sql.Common;
+using Microsoft.Azure.Commands.Sql.Replication.Model;
+using Microsoft.Azure.Commands.Sql.ReplicationLink.Services;
+using System.Collections.Generic;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet
+{
+ public abstract class AzureSqlDatabaseCopyCmdletBase : AzureSqlCmdletBase, AzureSqlDatabaseReplicationAdapter>
+ {
+ ///
+ /// Gets or sets the name of the Azure SQL Server to use.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ Position = 1,
+ HelpMessage = "The name of the Azure SQL Server the database to be copied is in.")]
+ [ValidateNotNullOrEmpty]
+ public string ServerName { get; set; }
+
+ ///
+ /// Initializes the adapter
+ ///
+ /// The Azure Subscription
+ /// A replication Adapter object
+ protected override AzureSqlDatabaseReplicationAdapter InitModelAdapter(Azure.Common.Authentication.Models.AzureSubscription subscription)
+ {
+ return new AzureSqlDatabaseReplicationAdapter(Profile, subscription);
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseSecondaryCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseSecondaryCmdletBase.cs
new file mode 100644
index 000000000000..abe21c2c51db
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/AzureSqlDatabaseSecondaryCmdletBase.cs
@@ -0,0 +1,45 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Sql.Common;
+using Microsoft.Azure.Commands.Sql.Replication.Model;
+using Microsoft.Azure.Commands.Sql.ReplicationLink.Services;
+using System.Collections.Generic;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet
+{
+ public abstract class AzureSqlDatabaseSecondaryCmdletBase : AzureSqlCmdletBase, AzureSqlDatabaseReplicationAdapter>
+ {
+ ///
+ /// Gets or sets the name of the Azure SQL Server to use.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ Position = 1,
+ HelpMessage = "The name of the Azure SQL Server the database to be replicated is in.")]
+ [ValidateNotNullOrEmpty]
+ public string ServerName { get; set; }
+
+ ///
+ /// Initializes the adapter
+ ///
+ ///
+ /// A replication Adapter object
+ protected override AzureSqlDatabaseReplicationAdapter InitModelAdapter(Azure.Common.Authentication.Models.AzureSubscription subscription)
+ {
+ return new AzureSqlDatabaseReplicationAdapter(Profile, subscription);
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs
new file mode 100644
index 000000000000..9d2bb8aa4c20
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/GetAzureSqlDatabaseReplicationLink.cs
@@ -0,0 +1,107 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Sql.Replication.Model;
+using System;
+using System.Collections.Generic;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet
+{
+ [Cmdlet(VerbsCommon.Get, "AzureSqlDatabaseReplicationLink",
+ DefaultParameterSetName = ByDatabaseName,
+ ConfirmImpact = ConfirmImpact.None)]
+ public class GetAzureSqlDatabaseReplicationLink : AzureSqlDatabaseSecondaryCmdletBase
+ {
+ ///
+ /// ParameterSet to get all Replication Links for a given Azure SQL Database
+ ///
+ internal const string ByDatabaseName = "ByDatabaseName";
+
+ ///
+ /// ParameterSet to get a Replication Link by its partner Azure SQL Server Name
+ ///
+ internal const string ByPartnerServerName = "ByPartnerServerName";
+
+ ///
+ /// Gets or sets the name of the Azure SQL Database to retrieve links for.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ Position = 2,
+ HelpMessage = "The name of the Azure SQL Database to retrieve links for.")]
+ [ValidateNotNullOrEmpty]
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the name of the resource group for the partner.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The name of the resource group for the partner.")]
+ [ValidateNotNullOrEmpty]
+ public string PartnerResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Azure SQL Server that has the Azure SQL Database partner.
+ ///
+ [Parameter(Mandatory = false,
+ ParameterSetName = ByPartnerServerName,
+ ValueFromPipelineByPropertyName = false,
+ HelpMessage = "The name of the Azure SQL Server that has the Azure SQL Database partner.")]
+ [ValidateNotNullOrEmpty]
+ public string PartnerServerName { get; set; }
+
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ ICollection results;
+
+ if (ParameterSetName == ByPartnerServerName)
+ {
+ results = new List();
+ results.Add(ModelAdapter.GetLink(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName, this.PartnerServerName));
+ }
+ else
+ {
+ results = ModelAdapter.ListLinks(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName);
+ }
+
+ return results;
+ }
+
+ ///
+ /// No user input to apply to model
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(IEnumerable model)
+ {
+ return model;
+ }
+
+ ///
+ /// No changes to persist to Azure SQL Server
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(IEnumerable entity)
+ {
+ return entity;
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs
new file mode 100644
index 000000000000..6c3d1269dbc6
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseCopy.cs
@@ -0,0 +1,162 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 Hyak.Common;
+using Microsoft.Azure.Commands.Sql.Properties;
+using Microsoft.Azure.Commands.Sql.Replication.Model;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet
+{
+ ///
+ /// Cmdlet to create a new Azure SQL Database Copy
+ ///
+ [Cmdlet(VerbsCommon.New, "AzureSqlDatabaseCopy",
+ ConfirmImpact = ConfirmImpact.Low)]
+ public class NewAzureSqlDatabaseCopy : AzureSqlDatabaseCopyCmdletBase
+ {
+ ///
+ /// Gets or sets the name of the database to be copied.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ Position = 2,
+ HelpMessage = "The name of the Azure SQL Database to be copied.")]
+ [ValidateNotNullOrEmpty]
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the name of the service objective to assign to the Azure SQL Database copy
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The name of the service objective to assign to the Azure SQL Database copy.")]
+ [ValidateNotNullOrEmpty]
+ public string ServiceObjectiveName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Elastic Pool to put the database copy in
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The name of the Elastic Pool to put the database copy in.")]
+ [ValidateNotNullOrEmpty]
+ public string ElasticPoolName { get; set; }
+
+ ///
+ /// Gets or sets the tags associated with the Azure SQL Database Copy
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The tags to associate with the Azure SQL Database Copy")]
+ public Dictionary Tags { get; set; }
+
+ ///
+ /// Gets or sets the name of the resource group of the copy.
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The name of the resource group of the copy.")]
+ [ValidateNotNullOrEmpty]
+ public string CopyResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Azure SQL Server of the copy.
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The name of the Azure SQL Server of the copy.")]
+ [ValidateNotNullOrEmpty]
+ public string CopyServerName { get; set; }
+
+ ///
+ /// Gets or sets the name of the source database copy.
+ ///
+ [Parameter(Mandatory = true,
+ HelpMessage = "The name of the Azure SQL Database copy.")]
+ [ValidateNotNullOrEmpty]
+ public string CopyDatabaseName { get; set; }
+
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ string copyResourceGroupName = string.IsNullOrWhiteSpace(this.CopyResourceGroupName) ? this.ResourceGroupName : this.CopyResourceGroupName;
+ string copyServerName = string.IsNullOrWhiteSpace(this.CopyServerName) ? this.ServerName : this.CopyServerName;
+
+ // We try to get the database. Since this is a create copy, we don't want the copy database to exist
+ try
+ {
+ ModelAdapter.GetDatabase(copyResourceGroupName, copyServerName, this.CopyDatabaseName);
+ }
+ catch (CloudException ex)
+ {
+ if (ex.Response.StatusCode == System.Net.HttpStatusCode.NotFound)
+ {
+ // This is what we want. We looked and there is no database with this name.
+ return null;
+ }
+
+ // Unexpected exception encountered
+ throw;
+ }
+
+ // The database already exists
+ throw new PSArgumentException(
+ string.Format(Resources.DatabaseNameExists, this.CopyDatabaseName, copyServerName),
+ "CopyDatabaseName");
+ }
+
+ ///
+ /// Create the model from user input
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(IEnumerable model)
+ {
+ string copyResourceGroup = string.IsNullOrWhiteSpace(CopyResourceGroupName) ? ResourceGroupName : CopyResourceGroupName;
+ string copyServer = string.IsNullOrWhiteSpace(CopyServerName) ? ServerName : CopyServerName;
+
+ string location = ModelAdapter.GetServerLocation(ResourceGroupName, ServerName);
+ string copyLocation = copyServer.Equals(ServerName) ? location : ModelAdapter.GetServerLocation(copyResourceGroup, copyServer);
+ List newEntity = new List();
+ newEntity.Add(new AzureSqlDatabaseCopyModel()
+ {
+ Location = location,
+ ResourceGroupName = ResourceGroupName,
+ ServerName = ServerName,
+ DatabaseName = DatabaseName,
+ CopyResourceGroupName = copyResourceGroup,
+ CopyServerName = copyServer,
+ CopyDatabaseName = CopyDatabaseName,
+ CopyLocation = copyLocation,
+ ServiceObjectiveName = ServiceObjectiveName,
+ ElasticPoolName = ElasticPoolName,
+ Tags = Tags,
+ });
+ return newEntity;
+ }
+
+ ///
+ /// Create the new database copy
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(IEnumerable entity)
+ {
+ return new List() {
+ ModelAdapter.CopyDatabase(entity.First().CopyResourceGroupName, entity.First().CopyServerName, entity.First())
+ };
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs
new file mode 100644
index 000000000000..8739796a273c
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/NewAzureSqlDatabaseSecondary.cs
@@ -0,0 +1,154 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 Hyak.Common;
+using Microsoft.Azure.Commands.Sql.Properties;
+using Microsoft.Azure.Commands.Sql.Replication.Model;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet
+{
+ ///
+ /// Cmdlet to create a new Azure SQL Database Secondary and Replication Link
+ ///
+ [Cmdlet(VerbsCommon.New, "AzureSqlDatabaseSecondary",
+ ConfirmImpact = ConfirmImpact.Low)]
+ public class NewAzureSqlDatabaseSecondary : AzureSqlDatabaseSecondaryCmdletBase
+ {
+ ///
+ /// Gets or sets the name of the Azure SQL Database to act as primary.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ Position = 2,
+ HelpMessage = "The name of the Azure SQL Database to act as primary.")]
+ [ValidateNotNullOrEmpty]
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the name of the service objective to assign to the secondary.
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The name of the service objective to assign to the secondary.")]
+ [ValidateNotNullOrEmpty]
+ public string SecondaryServiceObjectiveName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Elastic Pool to put the secondary in.
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The name of the Elastic Pool to put the secondary in.")]
+ [ValidateNotNullOrEmpty]
+ public string SecondaryElasticPoolName { get; set; }
+
+ ///
+ /// Gets or sets the tags to associate with the Azure SQL Database Replication Link
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The tags to associate with the Azure SQL Database Replication Link")]
+ public Dictionary Tags { get; set; }
+
+ ///
+ /// Gets or sets the name of the resource group of the secondary.
+ ///
+ [Parameter(Mandatory = true,
+ HelpMessage = "The name of the resource group to create secondary in.")]
+ [ValidateNotNullOrEmpty]
+ public string PartnerResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Azure SQL Server of the secondary.
+ ///
+ [Parameter(Mandatory = true,
+ HelpMessage = "The name of the Azure SQL Server to create secondary in.")]
+ [ValidateNotNullOrEmpty]
+ public string PartnerServerName { get; set; }
+
+ ///
+ /// Gets or sets the read intent of the secondary (ReadOnly is not yet supported).
+ ///
+ [Parameter(Mandatory = false,
+ HelpMessage = "The read intent of the secondary (ReadOnly is not yet supported).")]
+ [ValidateNotNullOrEmpty]
+ public AllowConnections AllowConnections { get; set; }
+
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ // We try to get the database. Since this is a create secondary database operation, we don't want the secondary database to already exist
+ try
+ {
+ ModelAdapter.GetDatabase(this.PartnerResourceGroupName, this.PartnerServerName, this.DatabaseName);
+ }
+ catch (CloudException ex)
+ {
+ if (ex.Response.StatusCode == System.Net.HttpStatusCode.NotFound)
+ {
+ // This is what we want. We looked and there is no database with this name.
+ return null;
+ }
+
+ // Unexpected exception encountered
+ throw;
+ }
+
+ // The database already exists
+ throw new PSArgumentException(
+ string.Format(Resources.DatabaseNameExists, this.DatabaseName, this.PartnerServerName),
+ "DatabaseName");
+ }
+
+ ///
+ /// Create the model from user input
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(IEnumerable model)
+ {
+ string location = ModelAdapter.GetServerLocation(this.PartnerResourceGroupName, this.PartnerServerName);
+ List newEntity = new List();
+ newEntity.Add(new AzureReplicationLinkModel()
+ {
+ PartnerLocation = location,
+ ResourceGroupName = this.ResourceGroupName,
+ ServerName = this.ServerName,
+ DatabaseName = this.DatabaseName,
+ PartnerResourceGroupName = this.PartnerResourceGroupName,
+ PartnerServerName = this.PartnerServerName,
+ SecondaryServiceObjectiveName = this.SecondaryServiceObjectiveName,
+ SecondaryElasticPoolName = this.SecondaryElasticPoolName,
+ AllowConnections = this.AllowConnections,
+ Tags = this.Tags,
+ });
+ return newEntity;
+ }
+
+ ///
+ /// Create the new secondary and replication link to the primary
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(IEnumerable entity)
+ {
+ return new List() {
+ ModelAdapter.CreateLink(entity.First().PartnerResourceGroupName, entity.First().PartnerServerName, entity.First())
+ };
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/RemoveAzureSqlDatabaseSecondary.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/RemoveAzureSqlDatabaseSecondary.cs
new file mode 100644
index 000000000000..d3700a00d4d0
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Cmdlet/RemoveAzureSqlDatabaseSecondary.cs
@@ -0,0 +1,89 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Sql.Properties;
+using Microsoft.Azure.Commands.Sql.Replication.Model;
+using System;
+using System.Collections.Generic;
+using System.Globalization;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Cmdlet
+{
+ [Cmdlet(VerbsCommon.Remove, "AzureSqlDatabaseSecondary",
+ SupportsShouldProcess = true,
+ ConfirmImpact = ConfirmImpact.High)]
+ public class RemoveAzureSqlDatabaseSecondary : AzureSqlDatabaseSecondaryCmdletBase
+ {
+ ///
+ /// Gets or sets the name of the primary Azure SQL Database with the replication link to remove.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ Position = 2,
+ HelpMessage = "The name of the Azure SQL Database to remove.")]
+ [ValidateNotNullOrEmpty]
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the name of the partner resource group.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The name of the resource group of the secondary.")]
+ [ValidateNotNullOrEmpty]
+ public string PartnerResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the partner Azure SQL Server.
+ ///
+ [Parameter(Mandatory = true,
+ ValueFromPipelineByPropertyName = true,
+ HelpMessage = "The name of the Azure SQL Server of the secondary.")]
+ [ValidateNotNullOrEmpty]
+ public string PartnerServerName { get; set; }
+
+ ///
+ /// Get the entities from the service
+ ///
+ /// The list of entities
+ protected override IEnumerable GetEntity()
+ {
+ return new List() {
+ ModelAdapter.GetLink(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName, this.PartnerServerName)
+ };
+ }
+
+ ///
+ /// No user input to apply to model
+ ///
+ /// Model retrieved from service
+ /// The model that was passed in
+ protected override IEnumerable ApplyUserInputToModel(IEnumerable model)
+ {
+ return model;
+ }
+
+ ///
+ /// No changes to persist to Azure SQL Server
+ ///
+ /// The output of apply user input to model
+ /// The input entity
+ protected override IEnumerable PersistChanges(IEnumerable entity)
+ {
+ ModelAdapter.RemoveLink(this.ResourceGroupName, this.ServerName, this.DatabaseName, this.PartnerResourceGroupName, this.PartnerServerName);
+ return entity;
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AllowConnections.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AllowConnections.cs
new file mode 100644
index 000000000000..8429a96f25ac
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AllowConnections.cs
@@ -0,0 +1,33 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Model
+{
+ ///
+ /// The allow connections value
+ ///
+ public enum AllowConnections
+ {
+ ///
+ /// Offline Secondary
+ ///
+ No = 0,
+
+ ///
+ /// Readable Secondary
+ ///
+ All = 1
+ }
+}
+
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureReplicationLinkModel.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureReplicationLinkModel.cs
new file mode 100644
index 000000000000..046ebf34e9e6
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureReplicationLinkModel.cs
@@ -0,0 +1,85 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Model
+{
+ ///
+ /// Represents an Azure SQL Database Replication Link
+ ///
+ public class AzureReplicationLinkModel : AzureSqlDatabaseReplicationModelBase
+ {
+ ///
+ /// Gets or sets the name of the resource group
+ ///
+ public string PartnerResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Azure SQL Server
+ ///
+ public string PartnerServerName { get; set; }
+
+ ///
+ /// Get or sets the AllowConnections setting for the Replication Link
+ ///
+ public AllowConnections AllowConnections { get; set; }
+
+ ///
+ /// Gets or sets the requested service objective name for the partner
+ ///
+ public string SecondaryServiceObjectiveName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Elastic Pool the partner is in
+ ///
+ public string SecondaryElasticPoolName { get; set; }
+
+ ///
+ /// Gets or sets the id of the replication link
+ ///
+ public Guid LinkId { get; set; }
+
+ ///
+ /// Gets or sets the ReplicationState of the link
+ ///
+ public string ReplicationState { get; set; }
+
+ ///
+ /// Gets or sets the Percent seeding complete
+ ///
+ public string PercentComplete { get; set; }
+
+ ///
+ /// Gets or sets the Role from the partner context
+ ///
+ public string PartnerRole { get; set; }
+
+ ///
+ /// Gets or sets the Role from the context
+ ///
+ public string Role { get; set; }
+
+ ///
+ /// Gets or sets the Role from the partner context
+ ///
+ public string StartTime { get; set; }
+
+ ///
+ /// Gets or sets the location of the partner database
+ ///
+ public string PartnerLocation { get; set; }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs
new file mode 100644
index 000000000000..acb37682dff4
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseCopyModel.cs
@@ -0,0 +1,60 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Model
+{
+ ///
+ /// Represents an Azure SQL Database Copy
+ ///
+ public class AzureSqlDatabaseCopyModel : AzureSqlDatabaseReplicationModelBase
+ {
+ ///
+ /// Gets or sets the name of the target Resource Group for the copy
+ ///
+ public string CopyResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the target Azure SQL Server for the copy
+ ///
+ public string CopyServerName { get; set; }
+
+ ///
+ /// Gets or sets the name of the target Azure SQL Database for the copy
+ ///
+ public string CopyDatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the requested service objective name
+ ///
+ public string ServiceObjectiveName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Elastic Pool the database is in
+ ///
+ public string ElasticPoolName { get; set; }
+
+ ///
+ /// Gets or sets the creation date of the copy
+ ///
+ public DateTime CreationDate { get; set; }
+
+ ///
+ /// Gets or sets the location of the partner database
+ ///
+ public string CopyLocation { get; set; }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseReplicationModelBase.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseReplicationModelBase.cs
new file mode 100644
index 000000000000..aace33c1b643
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/AzureSqlDatabaseReplicationModelBase.cs
@@ -0,0 +1,55 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Model
+{
+ ///
+ /// Represents an Azure SQL Database Copy
+ ///
+ public class AzureSqlDatabaseReplicationModelBase
+ {
+ ///
+ /// template to generate the Source Database Id
+ ///
+ public static string SourceIdTemplate = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Sql/Servers/{2}/databases/{3}";
+
+ ///
+ /// Gets or sets the name of the resource group
+ ///
+ public string ResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Azure SQL Server
+ ///
+ public string ServerName { get; set; }
+
+ ///
+ /// Gets or sets the name of the Azure SQL Database
+ ///
+ public string DatabaseName { get; set; }
+
+ ///
+ /// Gets or sets the location of the Azure SQL Database
+ ///
+ public string Location { get; set; }
+
+ ///
+ /// Gets or sets the tags associated with the Azure SQL Server.
+ ///
+ public Dictionary Tags { get; set; }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Model/LinkType.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/LinkType.cs
new file mode 100644
index 000000000000..7df99d852330
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Model/LinkType.cs
@@ -0,0 +1,33 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.Sql.Replication.Model
+{
+ ///
+ /// The link types enumeration
+ ///
+ public enum LinkType
+ {
+ ///
+ /// NonReadable Offline Secondary
+ ///
+ NonReadableSecondary = 0,
+
+ ///
+ /// Readable Secondary
+ ///
+ Secondary = 1
+ }
+}
+
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs
new file mode 100644
index 000000000000..889653b22153
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationAdapter.cs
@@ -0,0 +1,300 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Sql.Common;
+using Microsoft.Azure.Commands.Sql.Database.Model;
+using Microsoft.Azure.Commands.Sql.Database.Services;
+using Microsoft.Azure.Commands.Sql.ElasticPool.Services;
+using Microsoft.Azure.Commands.Sql.Properties;
+using Microsoft.Azure.Commands.Sql.Replication.Model;
+using Microsoft.Azure.Commands.Sql.Server.Adapter;
+using Microsoft.Azure.Commands.Sql.Server.Services;
+using Microsoft.Azure.Commands.Sql.Services;
+using Microsoft.Azure.Common.Authentication.Models;
+using Microsoft.Azure.Management.Sql;
+using Microsoft.Azure.Management.Sql.Models;
+using System;
+using System.Collections.Generic;
+using System.Globalization;
+using System.Linq;
+
+namespace Microsoft.Azure.Commands.Sql.ReplicationLink.Services
+{
+ ///
+ /// Adapter for database operations
+ ///
+ public class AzureSqlDatabaseReplicationAdapter
+ {
+ ///
+ /// Gets or sets the AzureSqlDatabaseCopyCommunicator which has all the needed management clients
+ ///
+ private AzureSqlDatabaseReplicationCommunicator ReplicationCommunicator { get; set; }
+
+ ///
+ /// Gets or sets the AzureSqlDatabaseCopyCommunicator which has all the needed management clients
+ ///
+ private AzureSqlDatabaseCommunicator DatabaseCommunicator { get; set; }
+
+ private AzureSqlServerCommunicator ServerCommunicator { get; set; }
+ ///
+ /// Gets or sets the Azure profile
+ ///
+ public AzureProfile Profile { get; set; }
+
+ ///
+ /// Gets or sets the Azure Subscription
+ ///
+ private AzureSubscription _subscription { get; set; }
+
+ ///
+ /// Constructs a database adapter
+ ///
+ /// The current azure profile
+ /// The current azure subscription
+ public AzureSqlDatabaseReplicationAdapter(AzureProfile Profile, AzureSubscription subscription)
+ {
+ this.Profile = Profile;
+ this._subscription = subscription;
+ ReplicationCommunicator = new AzureSqlDatabaseReplicationCommunicator(Profile, subscription);
+ DatabaseCommunicator = new AzureSqlDatabaseCommunicator(Profile, subscription);
+ ServerCommunicator = new AzureSqlServerCommunicator(Profile, subscription);
+ }
+
+ ///
+ /// Gets the Location of the Azure SQL Server
+ ///
+ /// The resource group the Azure SQL Server is in
+ /// The name of the Azure SQL Server
+ /// The region hosting the Azure SQL Server
+ internal string GetServerLocation(string resourceGroupName, string serverName)
+ {
+ AzureSqlServerAdapter serverAdapter = new AzureSqlServerAdapter(Profile, _subscription);
+ var server = serverAdapter.GetServer(resourceGroupName, serverName);
+ return server.Location;
+ }
+
+ ///
+ /// Gets an Azure SQL Database by name
+ ///
+ /// The name of the resource group
+ /// The name of the Azure SQL Server
+ /// The name of the Azure SQL Database
+ /// The Azure SQL Database object
+ internal AzureSqlDatabaseModel GetDatabase(string resourceGroupName, string serverName, string databaseName)
+ {
+ var resp = DatabaseCommunicator.Get(resourceGroupName, serverName, databaseName, Util.GenerateTracingId());
+ return AzureSqlDatabaseAdapter.CreateDatabaseModelFromResponse(resourceGroupName, serverName, resp);
+ }
+
+ ///
+ /// Creates an Azure SQL Database Copy
+ ///
+ /// The name of the resource group
+ /// The name of the Azure SQL Server
+ /// The input parameters for the create/update operation
+ /// The Azure SQL Database Copy object
+ internal AzureSqlDatabaseCopyModel CopyDatabase(string copyResourceGroup, string copyServerName, AzureSqlDatabaseCopyModel model)
+ {
+ var resp = ReplicationCommunicator.CreateCopy(copyResourceGroup, copyServerName, model.CopyDatabaseName, Util.GenerateTracingId(), new DatabaseCreateOrUpdateParameters()
+ {
+ Location = model.CopyLocation,
+ Properties = new DatabaseCreateOrUpdateProperties()
+ {
+ SourceDatabaseId = string.Format(AzureReplicationLinkModel.SourceIdTemplate, _subscription.Id.ToString(),
+ model.ResourceGroupName, model.ServerName, model.DatabaseName),
+ CreateMode = Management.Sql.Models.DatabaseCreateMode.Copy,
+ ElasticPoolName = model.ElasticPoolName,
+ RequestedServiceObjectiveName = model.ServiceObjectiveName,
+ }
+ });
+
+ return CreateDatabaseCopyModelFromDatabaseCreateOrUpdateResponse(model.CopyResourceGroupName, model.CopyServerName, model.CopyDatabaseName,
+ model.ResourceGroupName, model.ServerName, model.DatabaseName, resp);
+ }
+
+ ///
+ /// Converts the response from the service to a powershell DatabaseCopy object
+ ///
+ /// The copy's resource group name
+ /// The copy's Azure SQL Server name
+ /// The copy's database name
+ /// The source's resource group name
+ /// The source's Azure SQL Server name
+ /// The source database name
+ /// The copy's target elastic pool
+ /// The copy's nondefault service level objective
+ /// The database create response
+ /// A powershell DatabaseCopy object
+ private AzureSqlDatabaseCopyModel CreateDatabaseCopyModelFromDatabaseCreateOrUpdateResponse(string copyResourceGroupName, string copyServerName, string copyDatabaseName,
+ string resourceGroupName, string serverName, string databaseName, Management.Sql.Models.DatabaseCreateOrUpdateResponse response)
+ {
+ // the response does not contain the majority of the information we wish to expose to the user, so most of the data is passed from the inputs.
+ AzureSqlDatabaseCopyModel model = new AzureSqlDatabaseCopyModel();
+
+ model.CopyResourceGroupName = copyResourceGroupName;
+ model.CopyServerName = copyServerName;
+ model.CopyDatabaseName = response.Database.Name;
+ model.ResourceGroupName = resourceGroupName;
+ model.ServerName = serverName;
+ model.DatabaseName = databaseName;
+ model.Location = GetServerLocation(resourceGroupName, serverName);
+ model.CopyLocation = response.Database.Location;
+ model.CreationDate = response.Database.Properties.CreationDate;
+
+ return model;
+ }
+
+ ///
+ /// Creates an Azure SQL Database Secondary
+ ///
+ /// The resource group name of primary database
+ /// The Azure SQL Server name of primary database
+ /// The input parameters for the create operation
+ /// The Azure SQL Database ReplicationLink object
+ internal AzureReplicationLinkModel CreateLink(string resourceGroupName, string serverName, AzureReplicationLinkModel model)
+ {
+ var resp = ReplicationCommunicator.CreateCopy(resourceGroupName, serverName, model.DatabaseName, Util.GenerateTracingId(), new DatabaseCreateOrUpdateParameters()
+ {
+ Location = model.PartnerLocation,
+ Properties = new DatabaseCreateOrUpdateProperties()
+ {
+ SourceDatabaseId = string.Format(AzureReplicationLinkModel.SourceIdTemplate, _subscription.Id.ToString(),
+ model.ResourceGroupName, model.ServerName, model.DatabaseName),
+ CreateMode = model.AllowConnections.HasFlag(AllowConnections.All) ? Management.Sql.Models.DatabaseCreateMode.Secondary : Management.Sql.Models.DatabaseCreateMode.NonReadableSecondary,
+ ElasticPoolName = model.SecondaryElasticPoolName,
+ RequestedServiceObjectiveName = model.SecondaryServiceObjectiveName,
+ }
+ });
+
+ return GetLink(model.ResourceGroupName, model.ServerName, model.DatabaseName, model.PartnerResourceGroupName, model.PartnerServerName);
+ }
+
+ ///
+ /// Gets the Secondary Link by linkId
+ ///
+ /// The resource group name of primary database
+ /// The Azure SQL Server name of primary database
+ /// The name of primary database
+ /// The resource group name of secondary database
+ /// The linkId of the replication link to the secondary
+ /// The Azure SQL Database ReplicationLink object
+ internal AzureReplicationLinkModel GetLink(string resourceGroupName, string serverName, string databaseName,
+ string partnerResourceGroupName, Guid linkId)
+ {
+ // partnerResourceGroupName is required because it is not exposed in any reponse from the service.
+
+ var resp = ReplicationCommunicator.GetLink(resourceGroupName, serverName, databaseName, linkId, Util.GenerateTracingId());
+
+ return CreateReplicationLinkModelFromReplicationLinkResponse(resourceGroupName, serverName, databaseName, partnerResourceGroupName, resp);
+ }
+
+ ///
+ /// Lists Azure SQL Database Secondaries for the specified primary for the specified partner resource group
+ ///
+ /// The resource group name of primary database
+ /// The Azure SQL Server name of primary database
+ /// The name of primary database
+ /// The resource group name of secondary database
+ /// The collection of Azure SQL Database ReplicationLink objects for the primary
+ internal ICollection ListLinks(string resourceGroupName, string serverName, string databaseName,
+ string partnerResourceGroupName)
+ {
+ CheckPartnerResourceGroupValid(partnerResourceGroupName);
+
+ var resp = ReplicationCommunicator.ListLinks(resourceGroupName, serverName, databaseName, Util.GenerateTracingId());
+
+ return resp.Select((link) =>
+ {
+ return CreateReplicationLinkModelFromReplicationLinkResponse(resourceGroupName, serverName, databaseName, partnerResourceGroupName, link);
+ }).ToList();
+ }
+
+ private void CheckPartnerResourceGroupValid(string partnerResourceGroupName)
+ {
+ // checking if the resource group is valid as a partner resource group
+ ServerCommunicator.List(partnerResourceGroupName, Util.GenerateTracingId());
+ }
+
+ ///
+ /// Converts the response from the service to a powershell Secondary Link object
+ ///
+ /// The resource group name of primary database
+ /// The Azure SQL Server name of primary database
+ /// The name of primary database
+ /// The resource group name of secondary database
+ /// The linkId of the replication link to the secondary
+ /// The replication link response
+ /// The Azure SQL Database ReplicationLink object
+ private AzureReplicationLinkModel CreateReplicationLinkModelFromReplicationLinkResponse(string resourceGroupName,
+ string serverName, string databaseName, string partnerResourceGroupName, Management.Sql.Models.ReplicationLink resp)
+ {
+ // partnerResourceGroupName is required because it is not exposed in any reponse from the service.
+ // AllowConnections.ReadOnly is not yet supported
+ AllowConnections allowConnections = (resp.Properties.Role.Equals(Management.Sql.Models.DatabaseCreateMode.Secondary)
+ || resp.Properties.PartnerRole.Equals(Management.Sql.Models.DatabaseCreateMode.Secondary)) ? AllowConnections.All : AllowConnections.No;
+
+ AzureReplicationLinkModel model = new AzureReplicationLinkModel();
+
+ model.LinkId = new Guid(resp.Name);
+ model.PartnerResourceGroupName = partnerResourceGroupName;
+ model.PartnerServerName = resp.Properties.PartnerServer;
+ model.ResourceGroupName = resourceGroupName;
+ model.ServerName = serverName;
+ model.DatabaseName = databaseName;
+ model.AllowConnections = allowConnections;
+ model.Location = resp.Location;
+ model.PartnerLocation = resp.Properties.PartnerLocation;
+ model.PercentComplete = resp.Properties.PercentComplete;
+ model.ReplicationState = resp.Properties.ReplicationState;
+ model.PartnerRole = resp.Properties.PartnerRole;
+ model.Role = resp.Properties.Role;
+ model.StartTime = resp.Properties.StartTime.ToString();
+
+ return model;
+ }
+
+ ///
+ /// Gets the Secondary Link by the secondary resource group and Azure SQL Server
+ ///
+ /// The resource group name of primary database
+ /// The Azure SQL Server name of primary database
+ /// The name of primary database
+ /// The resource group name of secondary database
+ /// The Azure SQL Server name of secondary database
+ /// The Azure SQL Database ReplicationLink object
+ internal AzureReplicationLinkModel GetLink(string resourceGroupName, string serverName, string databaseName,
+ string partnerResourceGroupName, string partnerServerName)
+ {
+ IList links = ListLinks(resourceGroupName, serverName, databaseName, partnerResourceGroupName).ToList();
+
+ // Resource Management executes in context of the Secondary
+ return links.FirstOrDefault(l => l.PartnerServerName == partnerServerName);
+ }
+
+ ///
+ /// Finds and removes the Secondary Link by the secondary resource group and Azure SQL Server
+ ///
+ /// The resource group name of primary database
+ /// The Azure SQL Server name of primary database
+ /// The name of primary database
+ /// The resource group name of secondary database
+ /// The Azure SQL Server name of secondary database
+ internal void RemoveLink(string resourceGroupName, string serverName, string databaseName, string partnerResourceGroupName, string partnerServerName)
+ {
+ AzureReplicationLinkModel link = GetLink(resourceGroupName, serverName, databaseName, partnerResourceGroupName, partnerServerName);
+
+ ReplicationCommunicator.RemoveLink(link.ResourceGroupName, link.ServerName, link.DatabaseName, link.LinkId, Util.GenerateTracingId());
+ }
+ }
+}
diff --git a/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationCommunicator.cs b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationCommunicator.cs
new file mode 100644
index 000000000000..9676b3314c8d
--- /dev/null
+++ b/src/ResourceManager/Sql/Commands.Sql/Replication/Services/AzureSqlDatabaseReplicationCommunicator.cs
@@ -0,0 +1,111 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.Azure.Commands.Sql.Common;
+using Microsoft.Azure.Common.Authentication;
+using Microsoft.Azure.Common.Authentication.Models;
+using Microsoft.Azure.Management.Resources;
+using Microsoft.Azure.Management.Sql;
+using Microsoft.Azure.Management.Sql.Models;
+using Microsoft.WindowsAzure.Management.Storage;
+using System;
+using System.Collections.Generic;
+
+namespace Microsoft.Azure.Commands.Sql.ReplicationLink.Services
+{
+ ///
+ /// This class is responsible for all the REST communication with the audit REST endpoints
+ ///
+ public class AzureSqlDatabaseReplicationCommunicator
+ {
+ ///
+ /// The Sql client to be used by this end points communicator
+ ///
+ private static SqlManagementClient SqlClient { get; set; }
+
+ ///
+ /// Gets or set the Azure subscription
+ ///
+ private static AzureSubscription Subscription { get; set; }
+
+ ///
+ /// Gets or sets the Azure profile
+ ///
+ public AzureProfile Profile { get; set; }
+
+ ///
+ /// Creates a communicator for Azure SQL Databases
+ ///
+ ///
+ ///
+ public AzureSqlDatabaseReplicationCommunicator(AzureProfile profile, AzureSubscription subscription)
+ {
+ Profile = profile;
+ if (subscription != Subscription)
+ {
+ Subscription = subscription;
+ SqlClient = null;
+ }
+ }
+
+ ///
+ /// Gets the Azure SQL Database
+ ///
+ public Management.Sql.Models.ReplicationLink GetLink(string resourceGroupName, string serverName, string databaseName, Guid linkId, string clientRequestId)
+ {
+ return GetCurrentSqlClient(clientRequestId).DatabaseReplicationLinks.Get(resourceGroupName, serverName, databaseName, linkId.ToString()).ReplicationLink;
+ }
+
+ ///
+ /// Lists Azure SQL Databases
+ ///
+ public IList ListLinks(string resourceGroupName, string serverName, string databaseName, string clientRequestId)
+ {
+ return GetCurrentSqlClient(clientRequestId).DatabaseReplicationLinks.List(resourceGroupName, serverName, databaseName).ReplicationLinks;
+ }
+
+ ///
+ /// Creates a copy of a Azure SQL Database
+ ///
+ public Management.Sql.Models.DatabaseCreateOrUpdateResponse CreateCopy(string resourceGroupName, string serverName, string databaseName, string clientRequestId, DatabaseCreateOrUpdateParameters parameters)
+ {
+ return GetCurrentSqlClient(clientRequestId).Databases.CreateOrUpdate(resourceGroupName, serverName, databaseName, parameters);
+ }
+
+ ///
+ /// Deletes a Replication Link
+ ///
+ public void RemoveLink(string resourceGroupName, string serverName, string databaseName, Guid linkId, string clientRequestId)
+ {
+ GetCurrentSqlClient(clientRequestId).DatabaseReplicationLinks.Delete(resourceGroupName, serverName, databaseName, linkId.ToString());
+ }
+
+ ///
+ /// Retrieve the SQL Management client for the currently selected subscription, adding the session and request
+ /// id tracing headers for the current cmdlet invocation.
+ ///
+ /// The SQL Management client for the currently selected subscription.
+ private SqlManagementClient GetCurrentSqlClient(String clientRequestId)
+ {
+ // Get the SQL management client for the current subscription
+ if (SqlClient == null)
+ {
+ SqlClient = AzureSession.ClientFactory.CreateClient(Profile, Subscription, AzureEnvironment.Endpoint.ResourceManager);
+ }
+ SqlClient.HttpClient.DefaultRequestHeaders.Remove(Constants.ClientRequestIdHeaderName);
+ SqlClient.HttpClient.DefaultRequestHeaders.Add(Constants.ClientRequestIdHeaderName, clientRequestId);
+ return SqlClient;
+ }
+ }
+}
\ No newline at end of file