diff --git a/ChangeLog.txt b/ChangeLog.txt
index 27759dd0ef3c..03e6681e714f 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,4 +1,9 @@
-2015.06.05 version 0.9.3
+2015.06.25 version 0.9.4
+* Added Batch cmdlets
+ * Start-AzureBatchPoolResize
+ * Stop-AzureBatchPoolResize
+
+2015.06.05 version 0.9.3
* Fixed bug in Websites cmdlets related to slots #454
* Fix bug in Set-AzureResource cmdlet #456
* Fix for new azure resource of Microsoft.Storage #457
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj b/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj
index 7ef4cac2382b..f3710f4368fa 100644
--- a/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/Commands.Batch.Test.csproj
@@ -166,6 +166,8 @@
+
+
@@ -339,6 +341,18 @@
PreserveNewest
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
PreserveNewest
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs
new file mode 100644
index 000000000000..1600ab1f6979
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/Pools/StartBatchPoolResizeCommandTests.cs
@@ -0,0 +1,77 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 Microsoft.Azure.Batch;
+using Microsoft.Azure.Batch.Protocol;
+using Microsoft.Azure.Batch.Protocol.Entities;
+using Microsoft.Azure.Commands.Batch.Models;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Moq;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using System.Threading.Tasks;
+using Xunit;
+using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient;
+
+namespace Microsoft.Azure.Commands.Batch.Test.Pools
+{
+ public class StartBatchPoolResizeCommandTests
+ {
+ private StartBatchPoolResizeCommand cmdlet;
+ private Mock batchClientMock;
+ private Mock commandRuntimeMock;
+
+ public StartBatchPoolResizeCommandTests()
+ {
+ batchClientMock = new Mock();
+ commandRuntimeMock = new Mock();
+ cmdlet = new StartBatchPoolResizeCommand()
+ {
+ CommandRuntime = commandRuntimeMock.Object,
+ BatchClient = batchClientMock.Object,
+ };
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void StartPoolResizeParametersTest()
+ {
+ BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys();
+ cmdlet.BatchContext = context;
+ cmdlet.Name = null;
+
+ Assert.Throws(() => cmdlet.ExecuteCmdlet());
+
+ cmdlet.Name = "testPool";
+
+ // Don't go to the service on a ResizePool call
+ YieldInjectionInterceptor interceptor = new YieldInjectionInterceptor((opContext, request) =>
+ {
+ if (request is ResizePoolRequest)
+ {
+ ResizePoolResponse response = new ResizePoolResponse();
+ Task task = Task.Factory.StartNew(() => { return response; });
+ return task;
+ }
+ return null;
+ });
+ cmdlet.AdditionalBehaviors = new List() { interceptor };
+
+ // Verify no exceptions when required parameter is set
+ cmdlet.ExecuteCmdlet();
+ }
+ }
+}
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs
new file mode 100644
index 000000000000..0aa02b6a21de
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/Pools/StopBatchPoolResizeCommandTests.cs
@@ -0,0 +1,75 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 Microsoft.Azure.Batch;
+using Microsoft.Azure.Batch.Protocol;
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Moq;
+using System.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using System.Threading.Tasks;
+using Xunit;
+using BatchClient = Microsoft.Azure.Commands.Batch.Models.BatchClient;
+
+namespace Microsoft.Azure.Commands.Batch.Test.Pools
+{
+ public class StopBatchPoolResizeCommandTests
+ {
+ private StopBatchPoolResizeCommand cmdlet;
+ private Mock batchClientMock;
+ private Mock commandRuntimeMock;
+
+ public StopBatchPoolResizeCommandTests()
+ {
+ batchClientMock = new Mock();
+ commandRuntimeMock = new Mock();
+ cmdlet = new StopBatchPoolResizeCommand()
+ {
+ CommandRuntime = commandRuntimeMock.Object,
+ BatchClient = batchClientMock.Object,
+ };
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void StopPoolResizeParametersTest()
+ {
+ BatchAccountContext context = BatchTestHelpers.CreateBatchContextWithKeys();
+ cmdlet.BatchContext = context;
+ cmdlet.Name = null;
+
+ Assert.Throws(() => cmdlet.ExecuteCmdlet());
+
+ cmdlet.Name = "testPool";
+
+ // Don't go to the service on a StopPoolResize call
+ YieldInjectionInterceptor interceptor = new YieldInjectionInterceptor((opContext, request) =>
+ {
+ if (request is StopPoolResizeRequest)
+ {
+ StopPoolResizeResponse response = new StopPoolResizeResponse();
+ Task task = Task.Factory.StartNew(() => { return response; });
+ return task;
+ }
+ return null;
+ });
+ cmdlet.AdditionalBehaviors = new List() { interceptor };
+
+ // Verify no exceptions when required parameter is set
+ cmdlet.ExecuteCmdlet();
+ }
+ }
+}
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs
index b1a4ec40e870..316d3966026b 100644
--- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.cs
@@ -13,6 +13,7 @@
// ----------------------------------------------------------------------------------
using Microsoft.Azure.Batch;
+using Microsoft.Azure.Commands.Batch.Models;
using Microsoft.Azure.Test;
using Microsoft.WindowsAzure.Commands.ScenarioTest;
using System.Collections.Generic;
@@ -24,6 +25,15 @@ namespace Microsoft.Azure.Commands.Batch.Test.ScenarioTests
{
public class PoolTests
{
+ // NOTE: To save time on VM allocation when recording, some of tests assume the following:
+ // - A Batch account named 'pooltests' exists under the subscription being used for recording.
+ // - The following commands were run to create a pool, and all 3 VMs are allocated:
+ // $context = Get-AzureBatchAccountKeys "pooltests"
+ // New-AzureBatchPool -Name "testPool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -TargetDedicated 3 -BatchContext $context
+
+ private const string commonAccountName = "pooltests";
+ private const string testPoolName = "testPool";
+
[Fact]
[Trait(Category.AcceptanceType, Category.CheckIn)]
public void TestNewPool()
@@ -224,6 +234,78 @@ public void TestDeletePoolPipeline()
TestUtilities.GetCallingClass(),
TestUtilities.GetCurrentMethodName());
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestResizePoolByName()
+ {
+ BatchController controller = BatchController.NewInstance;
+ BatchAccountContext context = null;
+ controller.RunPsTestWorkflow(
+ () => { return new string[] { string.Format("Test-ResizePoolByName '{0}' '{1}'", commonAccountName, testPoolName) }; },
+ () =>
+ {
+ context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName);
+ ScenarioTestHelpers.WaitForSteadyPoolAllocation(controller, context, testPoolName);
+ },
+ null,
+ TestUtilities.GetCallingClass(),
+ TestUtilities.GetCurrentMethodName());
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestResizePoolByPipeline()
+ {
+ BatchController controller = BatchController.NewInstance;
+ BatchAccountContext context = null;
+ controller.RunPsTestWorkflow(
+ () => { return new string[] { string.Format("Test-ResizePoolByPipeline '{0}' '{1}'", commonAccountName, testPoolName) }; },
+ () =>
+ {
+ context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName);
+ ScenarioTestHelpers.WaitForSteadyPoolAllocation(controller, context, testPoolName);
+ },
+ null,
+ TestUtilities.GetCallingClass(),
+ TestUtilities.GetCurrentMethodName());
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestStopResizePoolByName()
+ {
+ BatchController controller = BatchController.NewInstance;
+ BatchAccountContext context = null;
+ controller.RunPsTestWorkflow(
+ () => { return new string[] { string.Format("Test-StopResizePoolByName '{0}' '{1}'", commonAccountName, testPoolName) }; },
+ () =>
+ {
+ context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName);
+ ScenarioTestHelpers.WaitForSteadyPoolAllocation(controller, context, testPoolName);
+ },
+ null,
+ TestUtilities.GetCallingClass(),
+ TestUtilities.GetCurrentMethodName());
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestStopResizePoolByPipeline()
+ {
+ BatchController controller = BatchController.NewInstance;
+ BatchAccountContext context = null;
+ controller.RunPsTestWorkflow(
+ () => { return new string[] { string.Format("Test-StopResizePoolByPipeline '{0}' '{1}'", commonAccountName, testPoolName) }; },
+ () =>
+ {
+ context = ScenarioTestHelpers.GetBatchAccountContextWithKeys(controller, commonAccountName);
+ ScenarioTestHelpers.WaitForSteadyPoolAllocation(controller, context, testPoolName);
+ },
+ null,
+ TestUtilities.GetCallingClass(),
+ TestUtilities.GetCurrentMethodName());
+ }
}
// Cmdlets that use the HTTP Recorder interceptor for use with scenario tests
@@ -256,4 +338,24 @@ public override void ExecuteCmdlet()
base.ExecuteCmdlet();
}
}
+
+ [Cmdlet(VerbsLifecycle.Start, "AzureBatchPoolResize_ST")]
+ public class StartBatchPoolResizeScenarioTestCommand : StartBatchPoolResizeCommand
+ {
+ public override void ExecuteCmdlet()
+ {
+ AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() };
+ base.ExecuteCmdlet();
+ }
+ }
+
+ [Cmdlet(VerbsLifecycle.Stop, "AzureBatchPoolResize_ST")]
+ public class StopBatchPoolResizeScenarioTestCommand : StopBatchPoolResizeCommand
+ {
+ public override void ExecuteCmdlet()
+ {
+ AdditionalBehaviors = new List() { ScenarioTestHelpers.CreateHttpRecordingInterceptor() };
+ base.ExecuteCmdlet();
+ }
+ }
}
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1 b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1
index 03325a0ae6bd..f528b4ff8f4d 100644
--- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/PoolTests.ps1
@@ -184,4 +184,94 @@ function Test-DeletePool
# Verify the Pool was deleted
$pools = Get-AzureBatchPool_ST -BatchContext $context
Assert-True { $pools -eq $null -or $pools[0].State.ToString().ToLower() -eq 'deleting' }
+}
+
+<#
+.SYNOPSIS
+Tests resizing a pool specified by name
+#>
+function Test-ResizePoolByName
+{
+ param([string]$accountName, [string]$poolName)
+
+ $context = Get-AzureBatchAccountKeys -Name $accountName
+
+ # Get the initial TargetDedicated count
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ $initialTargetDedicated = $pool.TargetDedicated
+
+ $newTargetDedicated = $initialTargetDedicated + 2
+ Start-AzureBatchPoolResize_ST -Name $poolName -TargetDedicated $newTargetDedicated -BatchContext $context
+
+ # Verify the TargetDedicated property was updated
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ Assert-AreEqual $newTargetDedicated $pool.TargetDedicated
+}
+
+<#
+.SYNOPSIS
+Tests resizing a pool specified by pipeline object
+#>
+function Test-ResizePoolByPipeline
+{
+ param([string]$accountName, [string]$poolName)
+
+ $context = Get-AzureBatchAccountKeys -Name $accountName
+
+ # Get the initial TargetDedicated count
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ $initialTargetDedicated = $pool.TargetDedicated
+
+ $newTargetDedicated = $initialTargetDedicated + 2
+ $pool | Start-AzureBatchPoolResize_ST -TargetDedicated $newTargetDedicated -ResizeTimeout ([TimeSpan]::FromHours(1)) -DeallocationOption ([Microsoft.Azure.Batch.Common.TVMDeallocationOption]::Terminate) -BatchContext $context
+
+ # Verify the TargetDedicated property was updated
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ Assert-AreEqual $newTargetDedicated $pool.TargetDedicated
+}
+
+<#
+.SYNOPSIS
+Tests stopping a pool resize operation using the pool name
+#>
+function Test-StopResizePoolByName
+{
+ param([string]$accountName, [string]$poolName)
+
+ $context = Get-AzureBatchAccountKeys -Name $accountName
+
+ # Start a resize and then stop it
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ $initialTargetDedicated = $pool.TargetDedicated
+
+ $newTargetDedicated = $initialTargetDedicated + 5
+ Start-AzureBatchPoolResize_ST -Name $poolName -TargetDedicated $newTargetDedicated -BatchContext $context
+ Stop-AzureBatchPoolResize_ST -Name $poolName -BatchContext $context
+
+ # Verify the AllocationState changed to Stopping
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ Assert-AreEqual 'Stopping' $pool.AllocationState
+}
+
+<#
+.SYNOPSIS
+Tests stopping a pool resize operation using the pipeline
+#>
+function Test-StopResizePoolByPipeline
+{
+ param([string]$accountName, [string]$poolName)
+
+ $context = Get-AzureBatchAccountKeys -Name $accountName
+
+ # Start a resize and then stop it
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ $initialTargetDedicated = $pool.TargetDedicated
+
+ $newTargetDedicated = $initialTargetDedicated + 5
+ $pool | Start-AzureBatchPoolResize_ST -TargetDedicated $newTargetDedicated -BatchContext $context
+ $pool | Stop-AzureBatchPoolResize_ST -BatchContext $context
+
+ # Verify the AllocationState changed to Stopping
+ $pool = Get-AzureBatchPool_ST -Name $poolName -BatchContext $context
+ Assert-AreEqual 'Stopping' $pool.AllocationState
}
\ No newline at end of file
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs
index 0d6f6053dd43..9814ed70e258 100644
--- a/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/ScenarioTests/ScenarioTestHelpers.cs
@@ -104,6 +104,30 @@ public static void CreateTestPool(BatchController controller, BatchAccountContex
client.CreatePool(parameters);
}
+ public static void WaitForSteadyPoolAllocation(BatchController controller, BatchAccountContext context, string poolName)
+ {
+ YieldInjectionInterceptor interceptor = CreateHttpRecordingInterceptor();
+ BatchClientBehavior[] behaviors = new BatchClientBehavior[] { interceptor };
+ BatchClient client = new BatchClient(controller.BatchManagementClient, controller.ResourceManagementClient);
+
+ ListPoolOptions options = new ListPoolOptions(context, behaviors)
+ {
+ PoolName = poolName
+ };
+
+ DateTime timeout = DateTime.Now.AddMinutes(2);
+ PSCloudPool pool = client.ListPools(options).First();
+ while (pool.AllocationState != AllocationState.Steady)
+ {
+ if (DateTime.Now > timeout)
+ {
+ throw new TimeoutException("Timed out waiting for steady allocation state");
+ }
+ Sleep(5000);
+ pool = client.ListPools(options).First();
+ }
+ }
+
///
/// Deletes a pool used in a Scenario test.
///
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByName.json
new file mode 100644
index 000000000000..754948b6ea4c
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByName.json
@@ -0,0 +1,554 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "bf34ea86-69fb-4558-9074-4c7ce4af83e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf34ea86-69fb-4558-9074-4c7ce4af83e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T210304Z:bf34ea86-69fb-4558-9074-4c7ce4af83e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:04 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "21aa7543-aa91-41ad-893f-b75ff52b4749"
+ ],
+ "x-ms-correlation-request-id": [
+ "21aa7543-aa91-41ad-893f-b75ff52b4749"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T210307Z:21aa7543-aa91-41ad-893f-b75ff52b4749"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:03:03 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "38e8150a-48ce-4787-95fb-e5fddba00284"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "aa7ae0aa-bad0-4348-8b83-e67c0c259baf"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa7ae0aa-bad0-4348-8b83-e67c0c259baf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T210305Z:aa7ae0aa-bad0-4348-8b83-e67c0c259baf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:05 GMT"
+ ],
+ "ETag": [
+ "0x8D27045A4FB5F1B"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:03:05 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "c662ae19-a317-438f-a5ad-37ef527b48fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "a4436763-8f43-4870-ab9b-55bfaf3a7731"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4436763-8f43-4870-ab9b-55bfaf3a7731"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T210307Z:a4436763-8f43-4870-ab9b-55bfaf3a7731"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:06 GMT"
+ ],
+ "ETag": [
+ "0x8D27045A5E1BCA5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "d94255e6-0664-4eab-9d22-fd0f3c9fff2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "abbbe168-fa85-4938-8b44-f8737042f5e2"
+ ],
+ "x-ms-correlation-request-id": [
+ "abbbe168-fa85-4938-8b44-f8737042f5e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T210305Z:abbbe168-fa85-4938-8b44-f8737042f5e2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:05 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "19cd0ff1-b7fe-415a-9e3e-77e00bf1f97b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "65f032de-d7ea-40ff-9168-9643b4c08b5a"
+ ],
+ "x-ms-correlation-request-id": [
+ "65f032de-d7ea-40ff-9168-9643b4c08b5a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T210307Z:65f032de-d7ea-40ff-9168-9643b4c08b5a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:07 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "01544000-bd3a-40a7-895d-8b240aa4536f"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:03:05 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D27043EF8147BE\",\r\n \"lastModified\": \"2015-06-08T20:50:49.6008126Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T20:52:14.2564039Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 20:50:49 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "eea5aa93-1b26-42fd-ab7c-0a19e38091e7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:06 GMT"
+ ],
+ "ETag": [
+ "0x8D27043EF8147BE"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "308c2807-a035-4e97-a2d4-bcab4bc1f01a"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:03:07 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D27043EF8147BE\",\r\n \"lastModified\": \"2015-06-08T20:50:49.6008126Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T20:52:14.2564039Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 20:50:49 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "b861e6fa-42e8-4732-9e2d-c6624ed217ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:07 GMT"
+ ],
+ "ETag": [
+ "0x8D27043EF8147BE"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "fd500f68-3a94-4c1a-957b-04ba17660d3a"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:03:08 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D27045A7EDA1F0\",\r\n \"lastModified\": \"2015-06-08T21:03:08.5084144Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:03:08.5084144Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 5,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:03:08 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "50d841ce-22f5-4487-a8cb-2a3e35b47d3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:07 GMT"
+ ],
+ "ETag": [
+ "0x8D27045A7EDA1F0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"targetDedicated\": 5,\r\n \"resizeTimeout\": \"PT5M\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json;odata=minimalmetadata"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "5f46cc3b-c2f1-4bf7-bee6-8003ea2ce738"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:03:07 GMT"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:03:08 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "8aead8f2-ca61-4286-b305-6301619445fa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "DataServiceId": [
+ "https://pooltests.batch.core.windows.net/pools/testPool"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:03:08 GMT"
+ ],
+ "ETag": [
+ "0x8D27045A7EDA1F0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json
new file mode 100644
index 000000000000..eb668099635b
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestResizePoolByPipeline.json
@@ -0,0 +1,554 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "4751c9d7-f3f9-4cdc-ac30-c5d3d73ddab1"
+ ],
+ "x-ms-correlation-request-id": [
+ "4751c9d7-f3f9-4cdc-ac30-c5d3d73ddab1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T211317Z:4751c9d7-f3f9-4cdc-ac30-c5d3d73ddab1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:16 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "b2c77334-751d-43f2-849b-23bf010865dd"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2c77334-751d-43f2-849b-23bf010865dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T211320Z:b2c77334-751d-43f2-849b-23bf010865dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:19 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:13:16 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "e69c5669-5379-4312-a8d0-0bed3765d891"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-request-id": [
+ "2de8e98a-509f-40e0-8f3b-73eece275700"
+ ],
+ "x-ms-correlation-request-id": [
+ "2de8e98a-509f-40e0-8f3b-73eece275700"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T211318Z:2de8e98a-509f-40e0-8f3b-73eece275700"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:17 GMT"
+ ],
+ "ETag": [
+ "0x8D2704712204C85"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:13:18 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "da9e0fdc-53f4-47d9-8666-30b742820368"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "c92f3eea-8837-4a16-a59c-c14939fa13c4"
+ ],
+ "x-ms-correlation-request-id": [
+ "c92f3eea-8837-4a16-a59c-c14939fa13c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T211320Z:c92f3eea-8837-4a16-a59c-c14939fa13c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:19 GMT"
+ ],
+ "ETag": [
+ "0x8D270471337A88D"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "ac13d324-7ddb-4d33-a690-2b17665db296"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "x-ms-request-id": [
+ "191168c4-9c52-4193-b4dd-ad568fa56e20"
+ ],
+ "x-ms-correlation-request-id": [
+ "191168c4-9c52-4193-b4dd-ad568fa56e20"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T211318Z:191168c4-9c52-4193-b4dd-ad568fa56e20"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:17 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "8c6ac24f-5047-4d8c-a73b-3e8f4621dde2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "x-ms-request-id": [
+ "09e06675-e3c2-4ce4-99b6-730475fbecb4"
+ ],
+ "x-ms-correlation-request-id": [
+ "09e06675-e3c2-4ce4-99b6-730475fbecb4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150608T211320Z:09e06675-e3c2-4ce4-99b6-730475fbecb4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:19 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "97ddbca5-e29e-409a-bbb2-358c0671a931"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:13:18 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270469CAB83C7\",\r\n \"lastModified\": \"2015-06-08T21:09:59.1168967Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:12:16.7860326Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:09:59 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "a4bf285d-3738-4b08-a8da-1a26ecc5c505"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:19 GMT"
+ ],
+ "ETag": [
+ "0x8D270469CAB83C7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "90da22d3-f512-49ff-afb7-68bc4344b469"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:13:20 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270469CAB83C7\",\r\n \"lastModified\": \"2015-06-08T21:09:59.1168967Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:12:16.7860326Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 2,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:09:59 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "c7ccb97c-9dd5-4711-91cc-28f986216fc7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:20 GMT"
+ ],
+ "ETag": [
+ "0x8D270469CAB83C7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "5e457058-44ac-4618-8ab1-f88df93f0ad2"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:13:21 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270471550BDC8\",\r\n \"lastModified\": \"2015-06-08T21:13:21.5263176Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"resizing\",\r\n \"allocationStateTransitionTime\": \"2015-06-08T21:13:21.5263176Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT1H\",\r\n \"currentDedicated\": 2,\r\n \"targetDedicated\": 4,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:13:21 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "1c5614c4-9faa-4ad8-b671-220b1bf3712a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:21 GMT"
+ ],
+ "ETag": [
+ "0x8D270471550BDC8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"targetDedicated\": 4,\r\n \"resizeTimeout\": \"PT1H\",\r\n \"tvmDeallocationOption\": \"terminate\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json;odata=minimalmetadata"
+ ],
+ "Content-Length": [
+ "86"
+ ],
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "b4a41147-3df9-4c1d-907d-5774d8a5506d"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Mon, 08 Jun 2015 21:13:20 GMT"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Last-Modified": [
+ "Mon, 08 Jun 2015 21:13:21 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "19e53cce-a2c5-4065-9575-550feb92be43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "DataServiceId": [
+ "https://pooltests.batch.core.windows.net/pools/testPool"
+ ],
+ "Date": [
+ "Mon, 08 Jun 2015 21:13:19 GMT"
+ ],
+ "ETag": [
+ "0x8D270471550BDC8"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByName.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByName.json
new file mode 100644
index 000000000000..8f98c63d236b
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByName.json
@@ -0,0 +1,605 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "02afebee-d58f-4f85-9c75-ece707aa4f2a"
+ ],
+ "x-ms-correlation-request-id": [
+ "02afebee-d58f-4f85-9c75-ece707aa4f2a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174303Z:02afebee-d58f-4f85-9c75-ece707aa4f2a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:03 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "0a58af8e-9083-4dac-8a20-4b31b8602dee"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a58af8e-9083-4dac-8a20-4b31b8602dee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174307Z:0a58af8e-9083-4dac-8a20-4b31b8602dee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:06 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:43:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "321716eb-6148-45c7-9042-0795c78f7a11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "6ff9e7c0-1345-44d9-8d2b-15cdf587edb3"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ff9e7c0-1345-44d9-8d2b-15cdf587edb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174305Z:6ff9e7c0-1345-44d9-8d2b-15cdf587edb3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:04 GMT"
+ ],
+ "ETag": [
+ "0x8D270F2DF9D334A"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:43:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "885eacf6-e694-4eed-ba5e-73796b007b02"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "718a3ed4-c3cb-4858-ab9a-881a2fe790b6"
+ ],
+ "x-ms-correlation-request-id": [
+ "718a3ed4-c3cb-4858-ab9a-881a2fe790b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174307Z:718a3ed4-c3cb-4858-ab9a-881a2fe790b6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:06 GMT"
+ ],
+ "ETag": [
+ "0x8D270F2E100DF28"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "22236174-428c-43bd-844a-c12801d3849e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "947d58ee-c228-42f7-abb1-cc43bc797934"
+ ],
+ "x-ms-correlation-request-id": [
+ "947d58ee-c228-42f7-abb1-cc43bc797934"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174305Z:947d58ee-c228-42f7-abb1-cc43bc797934"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:04 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "764bfa4e-9075-4907-881b-e3c96b71dd47"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "856f7b76-c596-4a07-b54c-cbaa794a2ec9"
+ ],
+ "x-ms-correlation-request-id": [
+ "856f7b76-c596-4a07-b54c-cbaa794a2ec9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174307Z:856f7b76-c596-4a07-b54c-cbaa794a2ec9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:06 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "4160c52a-e14c-4e29-b4f4-f5408c4836f4"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:43:05 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270EBCE342AB9\",\r\n \"lastModified\": \"2015-06-09T16:52:29.1812025Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T16:53:10.5970733Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 16:52:29 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "b144d033-1ec4-4a8c-ad87-d8d9c5329ebc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:05 GMT"
+ ],
+ "ETag": [
+ "0x8D270EBCE342AB9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "0c80a8ea-1a01-4002-a99e-02f1cc9a21c3"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:43:07 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270EBCE342AB9\",\r\n \"lastModified\": \"2015-06-09T16:52:29.1812025Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T16:53:10.5970733Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 3,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 16:52:29 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "6a2d982f-474d-4dbe-b8ee-25c536ec985a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:07 GMT"
+ ],
+ "ETag": [
+ "0x8D270EBCE342AB9"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "b54b4f88-9c2b-4239-a5c2-07396a19530c"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:43:08 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F2E2037B1F\",\r\n \"lastModified\": \"2015-06-09T17:43:08.8936735Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:43:08.8936735Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 3,\r\n \"targetDedicated\": 8,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:43:08 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "a16e30f2-e135-48af-a826-840b2bad30aa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:09 GMT"
+ ],
+ "ETag": [
+ "0x8D270F2E2037B1F"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"targetDedicated\": 8,\r\n \"resizeTimeout\": \"PT5M\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json;odata=minimalmetadata"
+ ],
+ "Content-Length": [
+ "50"
+ ],
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "3989500e-46e2-4e5c-834d-b753d16cf9ce"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:43:07 GMT"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:43:08 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "e94daa9d-034d-4ed4-a9eb-6587b6b44eed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "DataServiceId": [
+ "https://pooltests.batch.core.windows.net/pools/testPool"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:07 GMT"
+ ],
+ "ETag": [
+ "0x8D270F2E1B0516D"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/pools/testPool?stopresize&api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3N0b3ByZXNpemUmYXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "0e1c301b-64d2-496a-a280-d9ff918d7eea"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:43:08 GMT"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:43:08 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "d69a6623-c928-4d7c-a085-2bd483fca851"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "DataServiceId": [
+ "https://pooltests.batch.core.windows.net/pools/testPool"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:43:08 GMT"
+ ],
+ "ETag": [
+ "0x8D270F2E2037B1F"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json
new file mode 100644
index 000000000000..d7784f681ad0
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch.Test/SessionRecords/Microsoft.Azure.Commands.Batch.Test.ScenarioTests.PoolTests/TestStopResizePoolByPipeline.json
@@ -0,0 +1,605 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-request-id": [
+ "d379e12c-7f06-4028-84ae-6b7ec4111619"
+ ],
+ "x-ms-correlation-request-id": [
+ "d379e12c-7f06-4028-84ae-6b7ec4111619"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174757Z:d379e12c-7f06-4028-84ae-6b7ec4111619"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:47:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resources?$filter=resourceType%20eq%20'Microsoft.Batch%2FbatchAccounts'&api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5CYXRjaCUyRmJhdGNoQWNjb3VudHMnJmFwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-centralus/providers/Microsoft.Batch/batchAccounts/jaschneibatch2\",\r\n \"name\": \"jaschneibatch2\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tagname\": \"tagvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"name\": \"pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/Default-AzureBatch-WestUS/providers/Microsoft.Batch/batchAccounts/jaschneibatch\",\r\n \"name\": \"jaschneibatch\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "755"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-request-id": [
+ "476ecba2-0a39-47e7-9b42-5b5f5ac75d1b"
+ ],
+ "x-ms-correlation-request-id": [
+ "476ecba2-0a39-47e7-9b42-5b5f5ac75d1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174800Z:476ecba2-0a39-47e7-9b42-5b5f5ac75d1b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:00 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:47:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "61b3a348-492f-4f02-9852-fa999e067cff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "9c98cc2f-0d25-456a-bcf8-944c154248e8"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c98cc2f-0d25-456a-bcf8-944c154248e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174759Z:9c98cc2f-0d25-456a-bcf8-944c154248e8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:47:58 GMT"
+ ],
+ "ETag": [
+ "0x8D270F38F34569A"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"pooltests\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"pooltests.batch.core.windows.net\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:48:01 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "3b28ca2c-ffc8-4e9b-bd4c-a19768f1b550"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-request-id": [
+ "e44ee490-2f76-476e-a873-0ac38fac6145"
+ ],
+ "x-ms-correlation-request-id": [
+ "e44ee490-2f76-476e-a873-0ac38fac6145"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174801Z:e44ee490-2f76-476e-a873-0ac38fac6145"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:00 GMT"
+ ],
+ "ETag": [
+ "0x8D270F390338C05"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "85a0a5b4-77a7-4084-887b-493787d77b2d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "8f696b21-9796-465c-8ab2-be5f5b13aca6"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f696b21-9796-465c-8ab2-be5f5b13aca6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174759Z:8f696b21-9796-465c-8ab2-be5f5b13aca6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:47:59 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/6368ed38-3570-481f-b4fa-1d0a6e8d3f3b/resourceGroups/default-azurebatch-eastus/providers/Microsoft.Batch/batchAccounts/pooltests/listKeys?api-version=2014-05-01-privatepreview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjM2OGVkMzgtMzU3MC00ODFmLWI0ZmEtMWQwYTZlOGQzZjNiL3Jlc291cmNlR3JvdXBzL2RlZmF1bHQtYXp1cmViYXRjaC1lYXN0dXMvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL3Bvb2x0ZXN0cy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA1LTAxLXByaXZhdGVwcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-05-01-privatepreview"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/1.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"accountName\": \"pooltests\",\r\n \"primary\": \"mNcXt1ulmNKWLPzMgqN3oyST34BoNP4/F9R/S13QB8Ku8rNXq3BVy7vudmpc7AaEDz6dKJ+YJ8hqhFX2V/h5cg==\",\r\n \"secondary\": \"EixR4L1IopGF7ofcF2dqBOshb8FkwE7tnOJCw2MjRn7CNBvwsWJpBBIELg3mJy3roBTdsuYOM2S4g1dicGsVKw==\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "request-id": [
+ "3555cf4d-0772-4089-904c-dd03667be4c9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "d877602f-b239-4c12-8983-039dee2184cf"
+ ],
+ "x-ms-correlation-request-id": [
+ "d877602f-b239-4c12-8983-039dee2184cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150609T174801Z:d877602f-b239-4c12-8983-039dee2184cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:00 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "bde8b7e5-3015-43fb-9082-0e8e248ff459"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:47:59 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F2FC4FC109\",\r\n \"lastModified\": \"2015-06-09T17:43:53.0142985Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:45:33.9589203Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 13,\r\n \"targetDedicated\": 13,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:43:53 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "7a6d3269-71fe-420e-a5f1-1f1a8138b526"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:00 GMT"
+ ],
+ "ETag": [
+ "0x8D270F2FC4FC109"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "4ec3e197-a392-46c3-9497-fbe9c4fc328c"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:48:01 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F2FC4FC109\",\r\n \"lastModified\": \"2015-06-09T17:43:53.0142985Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"steady\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:45:33.9589203Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 13,\r\n \"targetDedicated\": 13,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:43:53 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "2df6982f-3431-476f-8209-512806f49aa9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:01 GMT"
+ ],
+ "ETag": [
+ "0x8D270F2FC4FC109"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP2FwaS12ZXJzaW9uPTIwMTQtMTAtMDEuMS4w",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "24fa83b6-efbe-4e11-b2db-b53ea69f714d"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:48:02 GMT"
+ ]
+ },
+ "ResponseBody": "{\r\n \"odata.metadata\": \"https://pooltests.batch.core.windows.net/$metadata#pools/@Element\",\r\n \"name\": \"testPool\",\r\n \"url\": \"https://pooltests.batch.core.windows.net/pools/testPool\",\r\n \"eTag\": \"0x8D270F3910C256A\",\r\n \"lastModified\": \"2015-06-09T17:48:02.5517418Z\",\r\n \"creationTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"state\": \"active\",\r\n \"stateTransitionTime\": \"2015-06-08T20:24:16.7074847Z\",\r\n \"allocationState\": \"stopping\",\r\n \"allocationStateTransitionTime\": \"2015-06-09T17:48:02.5517418Z\",\r\n \"osFamily\": \"4\",\r\n \"targetOSVersion\": \"*\",\r\n \"currentOSVersion\": \"*\",\r\n \"tvmSize\": \"small\",\r\n \"resizeTimeout\": \"PT5M\",\r\n \"currentDedicated\": 13,\r\n \"targetDedicated\": 18,\r\n \"enableAutoScale\": false,\r\n \"communication\": false,\r\n \"maxTasksPerTVM\": 1,\r\n \"schedulingPolicy\": {\r\n \"tvmFillType\": \"Spread\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Type": [
+ "application/json; odata=minimalmetadata"
+ ],
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:48:02 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "fe9b5903-c39d-40da-a99e-3a57ee1a3fbb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:02 GMT"
+ ],
+ "ETag": [
+ "0x8D270F3910C256A"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/pools/testPool?resize&api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3Jlc2l6ZSZhcGktdmVyc2lvbj0yMDE0LTEwLTAxLjEuMA==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"targetDedicated\": 18,\r\n \"resizeTimeout\": \"PT5M\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json;odata=minimalmetadata"
+ ],
+ "Content-Length": [
+ "51"
+ ],
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "1a11e797-a9de-4fa6-9a37-c44c6bad539c"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:48:01 GMT"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:48:02 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "573ea298-1006-41d1-91b6-23b8860ef1b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "DataServiceId": [
+ "https://pooltests.batch.core.windows.net/pools/testPool"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:01 GMT"
+ ],
+ "ETag": [
+ "0x8D270F390C6BD91"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/pools/testPool?stopresize&api-version=2014-10-01.1.0",
+ "EncodedRequestUri": "L3Bvb2xzL3Rlc3RQb29sP3N0b3ByZXNpemUmYXBpLXZlcnNpb249MjAxNC0xMC0wMS4xLjA=",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "WA-Batch/1.0"
+ ],
+ "client-request-id": [
+ "bfc7eece-d734-4a3a-b7d9-6bae17c7d7a6"
+ ],
+ "return-client-request-id": [
+ "False"
+ ],
+ "ocp-date": [
+ "Tue, 09 Jun 2015 17:48:02 GMT"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Last-Modified": [
+ "Tue, 09 Jun 2015 17:48:02 GMT"
+ ],
+ "Transfer-Encoding": [
+ "chunked"
+ ],
+ "request-id": [
+ "520255b4-a5b3-41dc-bccf-9cb0c512f3ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "DataServiceVersion": [
+ "3.0"
+ ],
+ "DataServiceId": [
+ "https://pooltests.batch.core.windows.net/pools/testPool"
+ ],
+ "Date": [
+ "Tue, 09 Jun 2015 17:48:01 GMT"
+ ],
+ "ETag": [
+ "0x8D270F3910C256A"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ }
+ ],
+ "Names": {},
+ "Variables": {
+ "SubscriptionId": "6368ed38-3570-481f-b4fa-1d0a6e8d3f3b"
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj b/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj
index edebd3d54da0..ac52139f85e4 100644
--- a/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj
+++ b/src/ResourceManager/Batch/Commands.Batch/Commands.Batch.csproj
@@ -225,6 +225,7 @@
+
@@ -234,6 +235,8 @@
+
+
True
@@ -270,6 +273,7 @@
Always
+ Designer
diff --git a/src/ResourceManager/Batch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml b/src/ResourceManager/Batch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml
index 6e7f74f4f4fa..5bf062ebbfd3 100644
--- a/src/ResourceManager/Batch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml
+++ b/src/ResourceManager/Batch/Commands.Batch/Microsoft.Azure.Commands.Batch.dll-Help.xml
@@ -1,268 +1,259 @@
-
-
+
+
+
+
-
- Get-AzureBatchAccount
-
+ Get-AzureBatchAccountKeys
- Gets Azure Batch accounts under the current subscription.
+ Gets the specified key of the specified Azure batch accounts under the current subscription.
-
+
Get
- AzureBatchAccount
-
+ AzureBatchAccountKeys
+
- Gets Azure Batch accounts under the current subscription. You can use the AccountName parameter to get a single account, or you can use the ResourceGroupName parameter to gets accounts under that resource group.
+ The Get-AzureBatchAccountKeys cmdlet gets the specified key of the specified Azure batch accounts under the current subscription.
-
- Get-AzureBatchAccount
-
+ Get-AzureBatchAccountKeys
+
AccountName
- Name of the account - if specified, only return the specified account.
+ Specifies the name of the account. If you specify an account name, this cmdlet only returns the specified account.
- string
+ String
-
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
ResourceGroupName
- Name of the resource group. If specified, only list the accounts under the specified resource group.
+ Specifies the name of the resource group where the account is created.
- string
+ String
-
-
+
AccountName
- Name of the account - if specified, only return the specified account.
-
+ Specifies the name of the account. If you specify an account name, this cmdlet only returns the specified account.
- string
+ String
- string
-
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
-
+ none
-
+
ResourceGroupName
- Name of the resource group. If specified, only list the accounts under the specified resource group.
-
+ Specifies the name of the resource group where the account is created.
- string
+ String
- string
-
+ String
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
- BatchAccountContext
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Gets Azure Batch accounts under the current subscription.
-
- AccountName Location ResourceGroupName Tags TaskTenantUrl
- ----------- -------- ----------------- ---- -------------
- cmdletexample westus cmdletexample https://batch.core.windows.net
-
-
- Description
- -----------
- Gets the Batch account named "cmdletexample"
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
+ 1:
- C:\PS>
+
+
-
- Get-AzureBatchAccount -ResourceGroupName "cmdletexample"
-
- AccountName Location ResourceGroupName Tags TaskTenantUrl
- ----------- -------- ----------------- ---- -------------
- cmdletexample westus cmdletexample https://batch.core.windows.net
- cmdletexample2 westus cmdletexample https://batch.core.windows.net
-
- Description
- -----------
- Gets the Batch accounts associated with the "cmdletexample" resource group.
-
-
-
-
+
+
-
+
-
-
-
+ New-AzureBatchAccountKey
+
+
+
+ Azure Batch Cmdlets
+
-
+
-
- Get-AzureBatchAccountKeys
-
+ Get-AzureBatchAccount
- Returns the keys to the account specified.
+ Gets an Azure batch account under the current subscription.
-
+
Get
- AzureBatchAccountKey
-
+ AzureBatchAccount
+
- Returns a BatchAccountContext object with its PrimaryAccountKey and SecondaryAccountKey properties populated with the Batch account's access keys.
+ The Get-AzureBatchAccount cmdlet gets an Azure batch account under the current subscription. You can use the AccountName parameter to get a single account, or you can use the ResourceGroupName parameter to get accounts under that resource group.
-
- Get-AzureBatchAccountKeys
-
+ Get-AzureBatchAccount
+
AccountName
- The name of the Batch account to retrieve keys for.
+ Specifies the name of the account. If you specify an account name, this cmdlet only returns the specified account.
- string
+ String
-
+
ResourceGroupName
- The name of the resource group of the account.
+ Specifies the name of the resource group. If you specify a resource group, this cmdlet lists the accounts under the specified resource group.
+
+ String
+
+
+ Tag
+
+ Specifies tags in an array of hash tables to set on the account.
+
+ Hashtable
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- string
+ AzureProfile
-
-
+
AccountName
- The name of the Batch account to retrieve keys for.
-
+ Specifies the name of the account. If you specify an account name, this cmdlet only returns the specified account.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- string
+ AzureProfile
- string
-
+ AzureProfile
+
-
+ none
-
+
ResourceGroupName
- The name of the resource group of the account.
-
+ Specifies the name of the resource group. If you specify a resource group, this cmdlet lists the accounts under the specified resource group.
+
+ String
+
+ String
+
+
+ none
+
+
+ Tag
+
+ Specifies tags in an array of hash tables to set on the account.
- string
+ Hashtable
- string
-
+ Hashtable
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -271,192 +262,312 @@
BatchAccountContext
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
+ Example 1: Get a batch account by name
- C:\PS>
+
+
- Get-AzureBatchAccountKeys -AccountName "cmdletexample"
-
+ PS C:\>Get-AzureBatchAccount -AccountName "pfuller"
+ AccountName Location ResourceGroupName Tags TaskTenantUrl
+ ----------- -------- ----------------- ---- -------------
+ pfuller westus CmdletExampleRG https://batch.core.contoso.net
+
+
+ This command gets the batch account named pfuller.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Gets the batch accounts associated with a resource group
+
+
+
+
+
+ PS C:\>Get-AzureBatchAccount -ResourceGroupName "CmdletExampleRG"
AccountName Location ResourceGroupName Tags TaskTenantUrl
----------- -------- ----------------- ---- -------------
- cmdletexample westus cmdletexample https://batch.core.windows.net
+ cmdletexample westus CmdletExampleRG https://batch.core.contoso.net
+ cmdletexample2 westus CmdletExampleRG https://batch.core.contoso.net
- Description
- -----------
- Returns a BatchAccountContext object with its PrimaryAccountKey and SecondaryAccountKey properties populated with the access keys to the "cmdletexample" Batch account.
-
-
-
-
+ This command gets the batch accounts associated with the CmdletExampleRG resource group.
+
+
-
+
-
-
-
+ New-AzureBatchAccount
+
+
+
+ Remove-AzureBatchAccount
+
+
+
+ Set-AzureBatchAccount
+
+
+
+ Azure Batch Cmdlets
+
-
+
-
- New-AzureBatchAccount
-
+ Get-AzureBatchJob
- Creates a new Azure Batch account.
+ Gets Azure batch jobs under the specified work item.
-
+
- New
- AzureBatchAccount
-
+ Get
+ AzureBatchJob
+
- Creates a new Azure Batch account under the specified resource group and location.
+ The Get-AzureBatchJob cmdlet gets the Azure batch jobs under the work item specified by either the WorkItemName or WorkItem parameters. You can use the Name parameter to get a single job, or you can use the Filter parameter to get the jobs that match an OData filter.
-
- New-AzureBatchAccount
-
- AccountName
+ Get-AzureBatchJob
+
+ Filter
- The name of the Batch account to create.
+ Specifies the OData filter clause to use when querying for jobs. If you do not specify a filter, then all jobs under the work item specified with either the WorkItemName or WorkItem parameters will be returned.
- string
+ String
-
- Location
+
+ MaxCount
- The region where the account will be created.
+ Specifies the maximum number of jobs to return. If you specify a value of 0 or less, then no upper limit will be used. If you do not specify a value, a default value of 1000 will be used.
- string
+ Int32
-
- ResourceGroupName
+
+ Profile
- The name of the resource group where the account will be created.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
-
- Tag
+
+ BatchContext
- An array of hashtables which represent account tags.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
- Hashtable[]
+ BatchAccountContext
+
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the jobs.
+
+ String
+
+
+
+ Get-AzureBatchJob
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the jobs.
+
+ String
+
+
+ Name
+
+ Specifies the name of the batch job. Wildcards are not permitted.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchJob
+
+ WorkItem
+
+ Specifies the PSCloudWorkItem object representing the work item which contains the jobs. Use the Get-AzureBatchWorkItem cmdlet to get a PSCloudWorkItem object.
+
+ PSCloudWorkItem
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for jobs. If you do not specify a filter, then all jobs under the work item specified with either the WorkItemName or WorkItem parameters will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of jobs to return. If you specify a value of 0 or less, then no upper limit will be used. If you do not specify a value, a default value of 1000 will be used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
-
-
- AccountName
+
+ BatchContext
- The name of the Batch account to create.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
- string
+ BatchAccountContext
- string
-
+ BatchAccountContext
+
-
+ none
-
- Location
+
+ Filter
- The region where the account will be created.
-
+ Specifies the OData filter clause to use when querying for jobs. If you do not specify a filter, then all jobs under the work item specified with either the WorkItemName or WorkItem parameters will be returned.
+
+ String
+
+ String
+
+
+ none
+
+
+ MaxCount
+
+ Specifies the maximum number of jobs to return. If you specify a value of 0 or less, then no upper limit will be used. If you do not specify a value, a default value of 1000 will be used.
- string
+ Int32
- string
-
+ Int32
+
-
+ none
-
- ResourceGroupName
+
+ Name
- The name of the resource group where the account will be created.
-
+ Specifies the name of the batch job. Wildcards are not permitted.
- string
+ String
- string
-
+ String
+
-
+ none
-
- Tag
+
+ Profile
- An array of hashtables which represent account tags.
-
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- Hashtable[]
+ AzureProfile
- Hashtable[]
-
+ AzureProfile
+
-
+ none
+
+
+ WorkItem
+
+ Specifies the PSCloudWorkItem object representing the work item which contains the jobs. Use the Get-AzureBatchWorkItem cmdlet to get a PSCloudWorkItem object.
+
+ PSCloudWorkItem
+
+ PSCloudWorkItem
+
+
+ none
+
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the jobs.
+
+ String
+
+ String
+
+
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -464,346 +575,292 @@
- BatchAccountContext
-
-
+ PSCloudJob
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
+ Example 1: Get a batch job by work item name
- C:\PS>
+
+
- New-AzureBatchAccount -AccountName "cmdletexample" -ResourceGroupName "cmdletexamplerg" -Location "westus"
-
- AccountName Location ResourceGroupName Tags TaskTenantUrl
- ----------- -------- ----------------- ---- -------------
- cmdletexample westus cmdletexamplerg https://batch.core.windows.net
+ PS C:\>Get-AzureBatchJob -WorkItemName "MyWorkItem" -Name "Job01" -BatchContext $Context
+
+ CreationTime : 3/24/2015 10:08:18 PM
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation
+ JobConstraints :
+ JobManager :
+ KeepAlive :
+ LastModified : 3/24/2015 10:08:18 PM
+ Name : Job01
+ PoolLifeTimeOption : Invalid
+ PoolName : myPool
+ PreviousState : Invalid
+ PreviousStateTransitionTime :
+ Priority :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:08:18 PM
+ Statistics :
+ Url : https://contoso.batch-test.windows-int.net/workitems/myWorkItem/jobs/Job01
- Description
- -----------
- Creates a new Batch account named "cmdletexample" under the "cmdletexamplerg" resource group in the "westus" location.
-
-
-
-
+ This command gets the batch job named Job01 under the work item named MyWorkItem.
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureBatchAccountKey
-
-
- Regenerate the specified key of the specified Batch account.
-
-
-
-
- New
- AzureBatchAccountKey
-
-
-
- Regenerate the specified key of the specified Batch account. The cmdlet outputs a BatchAccountContext object with its PrimaryAccountKey and SecondaryAccountKey properties populated with the latest access keys.
-
-
-
-
- New-AzureBatchAccountKey
-
- AccountName
-
- The name of the Batch account to regenerate the specified key for.
-
- string
-
-
- KeyType
-
- The type of key (Primary or Secondary) to regenerate.
-
- string
-
-
- ResourceGroupName
-
- The resource group of the account.
-
- string
-
-
-
-
-
-
- AccountName
-
- The name of the Batch account to regenerate the specified key for.
-
-
- string
-
- string
-
-
-
-
-
- KeyType
-
- The type of key (Primary or Secondary) to regenerate.
-
-
- string
-
- string
-
-
-
-
-
- ResourceGroupName
-
- The resource group of the account.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BatchAccountContext
-
-
-
-
+
+ Example 2: Get all active batch jobs under a specified work item name
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ PS C:\>Get-AzureBatchJob -WorkItemName "MyWorkItem" -Filter "state eq 'active'" -BatchContext $Context
+
+ CreationTime : 3/24/2015 10:08:18 PM
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation
+ JobConstraints :
+ JobManager :
+ KeepAlive :
+ LastModified : 3/24/2015 10:08:18 PM
+ Name : job-0000000001
+ PoolLifeTimeOption : Invalid
+ PoolName : myPool
+ PreviousState : Invalid
+ PreviousStateTransitionTime :
+ Priority :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:08:18 PM
+ Statistics :
+ Url : https://contoso.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001
+
+
+ This command gets the active batch jobs under the work item named MyWorkItem.
+
+
+
+
+
+
+
+
+
-
- -------------------------- EXAMPLE 1 --------------------------
-
+ Example 3: Gets all batch jobs under a named work item
- C:\PS>
+
+
- New-AzureBatchAccountKey -AccountName "cmdletexample" -KeyType "Primary"
-
- AccountName Location ResourceGroupName Tags TaskTenantUrl
- ----------- -------- ----------------- ---- -------------
- cmdletexample westus cmdletexample https://batch.core.windows.net
+ PS C:\>Get-AzureBatchWorkItem -Name "MyWorkItem" -BatchContext $Context | Get-AzureBatchJob -BatchContext $Context
+ CreationTime : 3/24/2015 10:08:18 PM
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation
+ JobConstraints :
+ JobManager :
+ KeepAlive :
+ LastModified : 3/24/2015 10:08:18 PM
+ Name : job-0000000001
+ PoolLifeTimeOption : Invalid
+ PoolName : myPool
+ PreviousState : Invalid
+ PreviousStateTransitionTime :
+ Priority :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:08:18 PM
+ Statistics :
+ Url : https://contoso.batch-test.windows-int.net/workitems/myWorkItem/jobs/job01
- Description
- -----------
- Regenerates the primary account key on the Batch account named "cmdletexample".
-
-
-
-
+ This command gets all batch jobs under the work item named MyWorkItem.
+
+
-
+
-
-
-
+ Remove-AzureBatchJob
+
+
+
+ Get-AzureBatchWorkItem
+
-
+
-
- Remove-AzureBatchAccount
-
+ Get-AzureBatchPool
- Deletes the specified Batch account.
+ Gets Azure batch pools under the specified batch account.
-
+
- Remove
- AzureBatchAccount
-
+ Get
+ AzureBatchPool
+
- Deletes the specified Batch account. You will be prompted for confirmation unless you use the Force parameter.
+ The Get-AzureBatchPool cmdlet gets the Azure batch pools under the batch account specified with the BatchContext parameter. You can use the Name parameter to get a single pool, or you can use the Filter parameter to get the pools that match an OData filter.
-
- Remove-AzureBatchAccount
-
- AccountName
+ Get-AzureBatchPool
+
+ Filter
- The name of the Batch account to delete.
+ Specifies the OData filter clause to use when querying for pools. If you do not specify a filter, all pools under the batch account specified with the BatchContext parameter are returned.
- string
+ String
-
- ResourceGroupName
+
+ MaxCount
- The resource group of the account to delete.
+ Specifies the maximum number of pools to return. If you specify a value of 0 or less, no upper limit is used. If you do not specify a value, a default value of 1000 is used.
- string
+ Int32
-
- Force
+
+ Profile
- If this parameter is not present, then you will be prompted for confirmation before the account is deleted. Use this parameter to delete the account without being asked for confirmation.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchPool
+
+ Name
+
+ Specifies the name of the pool to retrieve. Wildcards are not permitted.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
-
-
- AccountName
+
+ BatchContext
- The name of the Batch account to delete.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
- string
+ BatchAccountContext
- string
-
+ BatchAccountContext
+
-
+ none
-
- Force
+
+ Filter
- If this parameter is not present, then you will be prompted for confirmation before the account is deleted. Use this parameter to delete the account without being asked for confirmation.
-
+ Specifies the OData filter clause to use when querying for pools. If you do not specify a filter, all pools under the batch account specified with the BatchContext parameter are returned.
- SwitchParameter
+ String
- SwitchParameter
-
+ String
+
-
+ none
-
- ResourceGroupName
+
+ MaxCount
- The resource group of the account to delete.
-
+ Specifies the maximum number of pools to return. If you specify a value of 0 or less, no upper limit is used. If you do not specify a value, a default value of 1000 is used.
+
+ Int32
+
+ Int32
+
+
+ none
+
+
+ Name
+
+ Specifies the name of the pool to retrieve. Wildcards are not permitted.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile
- string
+ AzureProfile
- string
-
+ AzureProfile
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -811,3418 +868,4770 @@
-
-
-
+ PSCloudPool
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
+ Example 1: Get a pool by name
+
+
+
+
+
+ PS C:\>Get-AzureBatchPool -Name "MyPool" -BatchContext $Context
+
+ AllocationState : Resizing
+ AllocationStateTransitionTime : 3/24/2015 10:02:46 PM
+ AutoScaleFormula :
+ AutoScaleRun :
+ CertificateReferences :
+ Communication : False
+ CreationTime : 3/24/2015 10:02:46 PM
+ CurrentDedicated : 0
+ CurrentOSVersion : *
+ AutoScaleEnabled : False
+ LastModified : 3/24/2015 10:02:46 PM
+ MaxTasksPerVM : 1
+ Metadata :
+ Name : MyPool
+ OSFamily : 4
+ ResizeError :
+ ResizeTimeout : 00:05:00
+ SchedulingPolicy : microsoft.Azure.Commands.Batch.Models.PSSchedulingPolicy
+ StartTask :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:02:46 PM
+ Statistics :
+ TargetDedicated : 3
+ TargetOSVersion : *
+ VMSize : small
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool
+
+
+ This command gets the pool named MyPool.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get all pools that filter by name
- C:\PS>
+
+
- Remove-AzureBatchAccount -AccountName "cmdletexample"
+ PS C:\>Get-AzureBatchPool -Filter "startswith(name,'My')" -BatchContext $Context
+ AllocationState : Steady
+ AllocationStateTransitionTime : 3/24/2015 10:04:55 PM
+ AutoScaleFormula :
+ AutoScaleRun :
+ CertificateReferences :
+ Communication : False
+ CreationTime : 3/24/2015 10:02:46 PM
+ CurrentDedicated : 3
+ CurrentOSVersion : *
+ AutoScaleEnabled : False
+ LastModified : 3/24/2015 10:02:46 PM
+ MaxTasksPerVM : 1
+ Metadata :
+ Name : MyPool
+ OSFamily : 4
+ ResizeError :
+ ResizeTimeout : 00:05:00
+ SchedulingPolicy : Microsoft.Azure.Commands.Batch.Models.PSSchedulingPolicy
+ StartTask :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:02:46 PM
+ Statistics :
+ TargetDedicated : 3
+ TargetOSVersion : *
+ VMSize : small
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/MyPool
+
+ AllocationState : Resizing
+ AllocationStateTransitionTime : 3/24/2015 10:04:55 PM
+ AutoScaleFormula :
+ AutoScaleRun :
+ CertificateReferences :
+ Communication : False
+ CreationTime : 3/24/2015 10:04:55 PM
+ CurrentDedicated : 0
+ CurrentOSVersion : *
+ AutoScaleEnabled : False
+ LastModified : 3/24/2015 10:04:55 PM
+ MaxTasksPerVM : 1
+ Metadata :
+ Name : MyPool2
+ OSFamily : 4
+ ResizeError :
+ ResizeTimeout : 00:05:00
+ SchedulingPolicy : Microsoft.Azure.Commands.Batch.Models.PSSchedulingPolicy
+ StartTask :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:04:55 PM
+ Statistics :
+ TargetDedicated : 3
+ TargetOSVersion : *
+ VMSize : small
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool2
- Description
- -----------
- Deletes the Batch account named "cmdletexample". The user is prompted for confirmation before the delete operation takes place.
-
-
-
-
+ This command gets the pools whose names start with My by using the Filter parameter.
+
+
-
+
-
-
-
+ New-AzureBatchPool
+
+
+
+ Remove-AzureBatchPool
+
+
+
+ Get-AzureBatchAccountKeys
+
-
+
-
- Set-AzureBatchAccount
-
+ Get-AzureBatchRDPFile
- Updates the specified Batch account.
+ Gets a Remote Desktop Protocol (RDP) file from the specified virtual machine.
-
+
- Set
- AzureBatchAccount
-
+ Get
+ AzureBatchRDPFile
+
- Updates the specified Batch account. Currently, only tags can be updated.
+ The Get-AzureBatchRDPFile cmdlet gets a Remote Desktop Protocol (RDP) file from the specified virtual machine and saves it to the specified file location or to the user supplied stream.
-
- Set-AzureBatchAccount
-
- AccountName
+ Get-AzureBatchRDPFile
+
+ PoolName
- The name of the Batch account to update.
+ Specifies the name of the pool containing the virtual machine.
- string
+ String
-
- Tag
+
+ VMName
- An array of hashtables which represents the tags to set on the account.
+ Specifies the name of the virtual machine to which the RDP file will point.
- Hashtable[]
+ String
-
- ResourceGroupName
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationPath
- The resource group of the account being updated.
+ Specifies the file path where the RDP file is saved.
- string
+ String
-
-
-
-
- AccountName
-
- The name of the Batch account to update.
-
-
- string
-
- string
-
-
-
-
-
- ResourceGroupName
-
- The resource group of the account being updated.
-
-
- string
-
- string
-
-
-
-
-
- Tag
-
- An array of hashtables which represents the tags to set on the account.
-
-
- Hashtable[]
-
- Hashtable[]
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- BatchAccountContext
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Set-AzureBatchAccount -AccountName "cmdletexample" -Tag @(@{Name = "tag1";Value = "value1"},@{Name = "tag2";Value = "value2"})
-
- AccountName Location ResourceGroupName Tags TaskTenantUrl
- ----------- -------- ----------------- ---- -------------
- cmdletexample westus cmdletexamplerg {System.Collection https://batch.core.windows.net
- s.Hashtable, Syste
- m.Collections.Hash
- table}
-
-
- Description
- -----------
- Updates the tags on the "cmdletexample" account.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureBatchWorkItem
-
-
- Creates a new workitem in the Azure Batch service under the specified account.
-
-
-
-
- New
- AzureBatchWorkItem
-
-
-
- Creates a new workitem in the Azure Batch service under the account specified by the BatchAccountContext parameter.
-
-
-
-
- New-AzureBatchWorkItem
-
- Name
-
- The name of the workitem to create.
-
- string
-
-
+
+ Get-AzureBatchRDPFile
+
+ PoolName
+
+ Specifies the name of the pool containing the virtual machine.
+
+ String
+
+
+ VMName
+
+ Specifies the name of the virtual machine to which the RDP file will point.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationStream
+
+ Specifies the stream into which the RDP file data is saved. This stream will not be closed or rewound by this call.
+
+ Stream
+
+
+
+ Get-AzureBatchRDPFile
+
+ VM
+
+ Specifies the PSVM object representing the virtual machine in which the RDP file will point. You can use the Get-AzureBatchVM cmdlet to get a PSVM object.
+
+ PSVM
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationPath
+
+ Specifies the file path where the RDP file is saved.
+
+ String
+
+
+
+ Get-AzureBatchRDPFile
+
+ VM
+
+ Specifies the PSVM object representing the virtual machine in which the RDP file will point. You can use the Get-AzureBatchVM cmdlet to get a PSVM object.
+
+ PSVM
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationStream
+
+ Specifies the stream into which the RDP file data is saved. This stream will not be closed or rewound by this call.
+
+ Stream
+
+
+
+
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
-
- JobExecutionEnvironment
-
- The job execution environment to use when creating the workitem.
-
- PSJobExecutionEnvironment
-
-
- JobSpecification
+
+ DestinationPath
- The job specification to use when creating the workitem.
+ Specifies the file path where the RDP file is saved.
- PSJobSpecification
+ String
+
+ String
+
+
+ none
-
- Metadata
+
+ DestinationStream
- Metadata to add to the new workitem. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
+ Specifies the stream into which the RDP file data is saved. This stream will not be closed or rewound by this call.
- IDictionary
+ Stream
+
+ Stream
+
+
+ none
-
- Schedule
+
+ PoolName
- The schedule specification to use when creating the workitem.
+ Specifies the name of the pool containing the virtual machine.
- PSWorkItemSchedule
+ String
+
+ String
+
+
+ none
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- JobExecutionEnvironment
-
- The job execution environment to use when creating the workitem.
-
-
- PSJobExecutionEnvironment
-
- PSJobExecutionEnvironment
-
-
-
-
-
- JobSpecification
-
- The job specification to use when creating the workitem.
-
-
- PSJobSpecification
-
- PSJobSpecification
-
-
-
-
-
- Metadata
-
- Metadata to add to the new workitem. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
-
-
- IDictionary
-
- IDictionary
-
-
-
-
-
- Name
-
- The name of the workitem to create.
-
-
- string
-
- string
-
-
-
-
-
- Schedule
-
- The schedule specification to use when creating the workitem.
-
-
- PSWorkItemSchedule
-
- PSWorkItemSchedule
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- $jee = New-Object Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment;$jee.PoolName = "myPool";New-AzureBatchWorkItem -Name "myWorkItem" -JobExecutionEnvironment $jee -BatchContext $context
-
-
- Description
- -----------
- Creates a PSJobExecutionEnvironment object that specifies to use the pool named "myPool". Next, creates a new workitem named "myWorkItem" that uses this job execution environment.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureBatchWorkItem
-
-
- Gets Azure Batch workitems under the specified Batch account.
-
-
-
-
- Get
- AzureBatchWorkItem
-
-
-
- Gets the Azure Batch workitems under the Batch account specified with the BatchContext parameter. You can use the Name parameter to get a single workitem, or you can use the Filter parameter to get the workitems that match an OData filter.
-
-
-
-
- Get-AzureBatchWorkItem
-
- BatchContext
+
+ Profile
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- BatchAccountContext
+ AzureProfile
+
+ AzureProfile
+
+
+ none
-
- Filter
+
+ VM
- The OData filter clause to use when querying for workitems. If no filter is specified, then all workitems under the Batch account specified with the BatchContext parameter will be returned.
+ Specifies the PSVM object representing the virtual machine in which the RDP file will point. You can use the Get-AzureBatchVM cmdlet to get a PSVM object.
- string
+ PSVM
+
+ PSVM
+
+
+ none
-
- MaxCount
+
+ VMName
- The maximum number of workitems to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies the name of the virtual machine to which the RDP file will point.
- int
+ String
+
+ String
+
+
+ none
-
-
- Get-AzureBatchWorkItem
-
- Name
+
+
+
+
+
+
+
+
+
+
+
+
- The name of the workitem to retrieve. Wildcards are not permitted.
+
+
- string
-
-
- BatchContext
+
+
+
+
+
+
+
+
+
+
+
+
+
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+
- BatchAccountContext
-
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Filter
+
+
+
+
+
+
+ Example 1: Get an RDP file from a specified virtual machine and save it to the specified path
+
+
+
+
+
+ PS C:\>Get-AzureBatchRDPFile -PoolName "MyPool" -VMName "MyVM" -DestinationPath "C:\PowerShell\vm.rdp" -BatchContext $Context
+
+
+ This command gets an RDP file from the virtual machine named MyVM in the pool named MyPool. The file is saved to a file named C:\PowerShell\vm.rdp.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get an RDP file from a specified virtual machine and save it to the specified path
+
+
+
+
+
+ PS C:\>Get-AzureBatchVM -PoolName "MyPool" -Name "MyVM02" -BatchContext $Context | Get-AzureBatchRDPFile -DestinationPath "C:\PowerShell\vm.rdp" -BatchContext $Context
+
+
+ This command gets an RDP file from the virtual machine named MyVM02 in the pool named MyPool. The file is saved to a file named C:\PowerShell\vm.rdp.
+
+
+
+
+
+
+
+
+
+
+ Example 3: Get an RDP file from a specified virtual machine and save it to the specified stream
+
+
+
+
+
+ PS C:\>$Stream = New-Object System.IO.MemoryStream; Get-AzureBatchRDPFile "MyPool" -Name "MyVM03" -DestinationStream $Stream -BatchContext $Context
+
+
+ This command gets an RDP file from the virtual machine named MyVM03 in the pool named MyPool. The file contents are then copied to the user supplied Stream.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Get-AzureBatchVM
+
+
+
+ Azure Batch Cmdlets
+
+
+
+
+
+
+ Get-AzureBatchTaskFileContent
- The OData filter clause to use when querying for workitems. If no filter is specified, then all workitems under the Batch account specified with the BatchContext parameter will be returned.
-
+ Gets the specified Azure batch task file.
- string
-
- string
-
-
-
-
-
- MaxCount
-
- The maximum number of workitems to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
-
- int
-
- int
-
-
-
-
-
- Name
-
- The name of the workitem to retrieve. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PSCloudWorkItem
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchWorkItem -Name "myWorkItem" -BatchContext $context
-
- CreationTime : 3/24/2015 10:08:17 PM
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSWorkItemExecutionInformation
- JobExecutionEnvironment : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment
- JobSpecification :
- LastModified : 3/24/2015 10:08:17 PM
- Metadata :
- Name : myWorkItem
- PreviousState : Invalid
- PreviousStateTransitionTime :
- Schedule :
- State : Active
- StateTransitionTime : 3/24/2015 10:08:17 PM
- Statistics :
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem
-
-
- Description
- -----------
- Gets the workitem named "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchWorkItem -Filter "startswith(name,'my')" -BatchContext $context
-
- CreationTime : 3/24/2015 10:08:17 PM
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSWorkItemExecutionInformation
- JobExecutionEnvironment : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment
- JobSpecification :
- LastModified : 3/24/2015 10:08:17 PM
- Metadata :
- Name : myWorkItem
- PreviousState : Invalid
- PreviousStateTransitionTime :
- Schedule :
- State : Active
- StateTransitionTime : 3/24/2015 10:08:17 PM
- Statistics :
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem
-
- CreationTime : 3/24/2015 10:12:23 PM
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSWorkItemExecutionInformation
- JobExecutionEnvironment : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment
- JobSpecification :
- LastModified : 3/24/2015 10:12:23 PM
- Metadata :
- Name : myWorkItem2
- PreviousState : Invalid
- PreviousStateTransitionTime :
- Schedule :
- State : Active
- StateTransitionTime : 3/24/2015 10:12:23 PM
- Statistics :
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem2
-
-
- Description
- -----------
- Gets the workitems whose names start with "my" by using the Filter parameter.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureBatchWorkItem
-
+
+
+
+ Get
+ AzureBatchTaskFileContent
+
+
- Deletes the specified Azure Batch workitem.
+ The Get-AzureBatchTaskFileContent cmdlet gets the specified Azure batch task file and saves it to the specified file location or to the user supplied stream.
-
-
-
- Remove
- AzureBatchWorkItem
-
-
-
- Deletes the specified Azure Batch workitem. You will be prompted for confirmation unless you use the Force parameter.
-
-
-
-
- Remove-AzureBatchWorkItem
-
- Name
-
- The name of the workitem to delete. Wildcards are not permitted.
-
- string
-
-
+
+
+ Get-AzureBatchTaskFileContent
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the specified target task.
+
+ String
+
+
+ JobName
+
+ Specifies the name of the job containing the specified target task.
+
+ String
+
+
+ TaskName
+
+ Specifies the name of the task.
+
+ String
+
+
+ Name
+
+ Specifies the name of the task file to download. You cannot specify wildcards.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationPath
+
+ Specifies the file path where the task file will be saved.
+
+ String
+
+
+
+ Get-AzureBatchTaskFileContent
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the specified target task.
+
+ String
+
+
+ JobName
+
+ Specifies the name of the job containing the specified target task.
+
+ String
+
+
+ TaskName
+
+ Specifies the name of the task.
+
+ String
+
+
+ Name
+
+ Specifies the name of the task file to download. You cannot specify wildcards.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationStream
+
+ Specifies the Stream into which the Virtual Machine file contents will be written. This stream will not be closed or rewound by this call.
+
+ Stream
+
+
+
+ Get-AzureBatchTaskFileContent
+
+ InputObject
+
+ Specifies the PSTaskFile object representing the file to download. You can use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
+
+ PSTaskFile
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationPath
+
+ Specifies the file path where the task file will be saved.
+
+ String
+
+
+
+ Get-AzureBatchTaskFileContent
+
+ InputObject
+
+ Specifies the PSTaskFile object representing the file to download. You can use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
+
+ PSTaskFile
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationStream
+
+ Specifies the Stream into which the Virtual Machine file contents will be written. This stream will not be closed or rewound by this call.
+
+ Stream
+
+
+
+
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
-
- Force
-
- If this parameter is not present, then you will be prompted for confirmation before the workitem is deleted. Use this parameter to delete the workitem without being asked for confirmation.
-
-
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Force
-
- If this parameter is not present, then you will be prompted for confirmation before the workitem is deleted. Use this parameter to delete the workitem without being asked for confirmation.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- Name
-
- The name of the workitem to delete. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Remove-AzureBatchWorkItem "myWorkItem" -BatchContext $context
-
-
- Description
- -----------
- Deletes the workitem named "myWorkItem". The user is prompted for confirmation before the delete operation takes place.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchWorkItem -Name "myWorkItem2" -BatchContext $context | Remove-AzureBatchWorkItem -Force -BatchContext $context
-
-
- Description
- -----------
- Deletes the workitem named "myWorkItem2". Since the Force parameter is present, the confirmation prompt is suppressed.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureBatchJob
-
-
- Gets Azure Batch jobs under the specified workitem.
-
-
-
-
- Get
- AzureBatchJob
-
-
-
- Gets the Azure Batch jobs under the workitem specified by either the WorkItemName or WorkItem parameters. You can use the Name parameter to get a single job, or you can use the Filter parameter to get the jobs that match an OData filter.
-
-
-
-
- Get-AzureBatchJob
-
- WorkItemName
-
- The name of the workitem which contains the jobs.
-
- string
-
-
- BatchContext
+
+ DestinationPath
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the file path where the task file will be saved.
- BatchAccountContext
+ String
+
+ String
+
+
+ none
-
- Filter
+
+ DestinationStream
- The OData filter clause to use when querying for jobs. If no filter is specified, then all jobs under the workitem specified with either the WorkItemName or WorkItem parameters will be returned.
+ Specifies the Stream into which the Virtual Machine file contents will be written. This stream will not be closed or rewound by this call.
- string
+ Stream
+
+ Stream
+
+
+ none
-
- MaxCount
+
+ InputObject
- The maximum number of jobs to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies the PSTaskFile object representing the file to download. You can use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
- int
+ PSTaskFile
+
+ PSTaskFile
+
+
+ none
-
-
- Get-AzureBatchJob
-
- WorkItemName
+
+ JobName
- The name of the workitem which contains the jobs.
+ Specifies the name of the job containing the specified target task.
- string
+ String
+
+ String
+
+
+ none
-
+
Name
- The name of the job to retrieve. Wildcards are not permitted.
+ Specifies the name of the task file to download. You cannot specify wildcards.
- string
+ String
+
+ String
+
+
+ none
-
- BatchContext
+
+ Profile
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- BatchAccountContext
+ AzureProfile
+
+ AzureProfile
+
+
+ none
-
-
- Get-AzureBatchJob
-
- WorkItem
+
+ TaskName
- The PSCloudWorkItem object representing the workitem which contains the jobs. Use the Get-AzureBatchWorkItem cmdlet to get a PSCloudWorkItem object.
+ Specifies the name of the task.
- PSCloudWorkItem
+ String
+
+ String
+
+
+ none
-
- BatchContext
+
+ WorkItemName
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the name of the work item which contains the specified target task.
- BatchAccountContext
+ String
+
+ String
+
+
+ none
-
- Filter
+
+
+
+
+
+
+
+
+
+
+
+
- The OData filter clause to use when querying for jobs. If no filter is specified, then all jobs under the workitem specified with either the WorkItemName or WorkItem parameters will be returned.
+
+
- string
-
-
- MaxCount
+
+
+
+
+
+
+
+
+
+
+
+
+
- The maximum number of jobs to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+
+
- int
-
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Filter
-
- The OData filter clause to use when querying for jobs. If no filter is specified, then all jobs under the workitem specified with either the WorkItemName or WorkItem parameters will be returned.
-
-
- string
-
- string
-
-
-
-
-
- MaxCount
-
- The maximum number of jobs to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
-
- int
-
- int
-
-
-
-
-
- Name
-
- The name of the job to retrieve. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
- WorkItem
-
- The PSCloudWorkItem object representing the workitem which contains the jobs. Use the Get-AzureBatchWorkItem cmdlet to get a PSCloudWorkItem object.
-
-
- PSCloudWorkItem
-
- PSCloudWorkItem
-
-
-
-
-
- WorkItemName
-
- The name of the workitem which contains the jobs.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PSCloudJob
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchJob -WorkItemName "myWorkItem" -Name "job-0000000001" -BatchContext $context
-
- CreationTime : 3/24/2015 10:08:18 PM
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation
- JobConstraints :
- JobManager :
- KeepAlive :
- LastModified : 3/24/2015 10:08:18 PM
- Name : job-0000000001
- PoolLifeTimeOption : Invalid
- PoolName : myPool
- PreviousState : Invalid
- PreviousStateTransitionTime :
- Priority :
- State : Active
- StateTransitionTime : 3/24/2015 10:08:18 PM
- Statistics :
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001
-
-
- Description
- -----------
- Gets the job named "job-0000000001" under the workitem named "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchJob -WorkItemName "myWorkItem" -Filter "state eq 'active'" -BatchContext $context
-
- CreationTime : 3/24/2015 10:08:18 PM
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation
- JobConstraints :
- JobManager :
- KeepAlive :
- LastModified : 3/24/2015 10:08:18 PM
- Name : job-0000000001
- PoolLifeTimeOption : Invalid
- PoolName : myPool
- PreviousState : Invalid
- PreviousStateTransitionTime :
- Priority :
- State : Active
- StateTransitionTime : 3/24/2015 10:08:18 PM
- Statistics :
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001
-
-
- Description
- -----------
- Gets the active jobs under the workitem named "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchWorkItem -Name "myWorkItem" -BatchContext $context | Get-AzureBatchJob -BatchContext $context
-
- CreationTime : 3/24/2015 10:08:18 PM
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionInformation
- JobConstraints :
- JobManager :
- KeepAlive :
- LastModified : 3/24/2015 10:08:18 PM
- Name : job-0000000001
- PoolLifeTimeOption : Invalid
- PoolName : myPool
- PreviousState : Invalid
- PreviousStateTransitionTime :
- Priority :
- State : Active
- StateTransitionTime : 3/24/2015 10:08:18 PM
- Statistics :
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001
-
-
- Description
- -----------
- Gets all jobs under the workitem named "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureBatchJob
-
+
+
+
+
+
+
+ Example 1: Get a batch task file and save it to a specified file path
+
+
+
+
+
+ PS C:\>Get-AzureBatchTaskFileContent -WorkItemName "MyWorkItem" -JobName "Job01" -TaskName "MyTask01" -Name "StdOut.txt" -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
+
+
+ This command gets the task file named StdOut.txt and saves it to the E:\PowerShell\StdOut.txt file path on the local computer. The StdOut.txt task file is associated with task MyTask01 under job Job01 under work item MyWorkItem.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get a batch task file and save it to a specified file path
+
+
+
+
+
+ PS C:\>Get-AzureBatchTaskFile -WorkItemName "MyWorkItem" -JobName "Job02" -TaskName "MyTask02" "StdErr.txt" -BatchContext $Context | Get-AzureBatchTaskFileContent -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
+
+
+ This command gets the task file named StdErr.txt and saves it to the E:\PowerShell\StdOut.txt file path on the local computer. The StdOut.txt task file is associated with task MyTask02 under job Job02 under work item MyWorkItem.
+
+
+
+
+
+
+
+
+
+
+ Example 3: Get a batch task file and save it to a specified stream
+
+
+
+
+
+ PS C:\>$Stream = New-Object System.IO.MemoryStream; Get-AzureBatchTaskFileContent -WorkItemName "MyWorkItem" -JobName "Job03" -TaskName "MyTask11" "stdout.txt" -DestinationStream $Stream -BatchContext $Context
+
+
+ This command gets the task file named StdOut.txt from the task named"MyTask11" under job Job03 under work item MyWorkItem. The file contents are saved to the user supplied stream.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchTaskFile
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Get-AzureBatchTaskFile
+
+
+
+ Azure Batch Cmdlets
+
+
+
+
+
+
+ Get-AzureBatchTaskFile
+
+ Gets the properties of the files associated with the specified Azure batch task.
+
+
+
+
+ Get
+ AzureBatchTaskFile
+
+
- Deletes the specified Azure Batch job.
+ The Get-AzureBatchTaskFile cmdlet gets the properties of the files associated with the Azure batch task specified by either the WorkItemName, JobName, and TaskName parameters or the Task parameter. You can use the Name parameter to get a single task file, or you can use the Filter parameter to get the task files that match an OData filter. You can use the Recursive parameter to perform a recursive list of all files of the task.
-
-
-
- Remove
- AzureBatchJob
-
-
-
- Deletes the specified Azure Batch job. You will be prompted for confirmation unless you use the Force parameter.
-
-
-
-
- Remove-AzureBatchJob
-
- InputObject
-
- The PSCloudJob object representing the job to delete. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
-
- PSCloudJob
-
-
+
+
+ Get-AzureBatchTaskFile
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the specified target task.
+
+ String
+
+
+ JobName
+
+ Specifies the name of the job containing the specified target task.
+
+ String
+
+
+ TaskName
+
+ Specifies the name of the task.
+
+ String
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for task files. If you do not specify a filter, then all task files associated with the task specified with either the WorkItemName, JobName, and TaskName parameters or the Task parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of task files to return. If you specify a value of 0 or less, then no upper limit is used. If you do not specify a value, a default value of 1000 is used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ Recursive
+
+ Indicates that a recursive list of files from the task are returned. Otherwise, returns only the files at the task directory root.
+
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchTaskFile
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the specified target task.
+
+ String
+
+
+ JobName
+
+ Specifies the name of the job containing the specified target task.
+
+ String
+
+
+ TaskName
+
+ Specifies the name of the task.
+
+ String
+
+
+ Name
+
+ Specifies the name of the task file to retrieve. You cannot use wildcards.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchTaskFile
+
+ Task
+
+ Specifies the PSCloudTask object representing the task that the task files are associated with. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
+
+ PSCloudTask
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for task files. If you do not specify a filter, then all task files associated with the task specified with either the WorkItemName, JobName, and TaskName parameters or the Task parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of task files to return. If you specify a value of 0 or less, then no upper limit is used. If you do not specify a value, a default value of 1000 is used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ Recursive
+
+ Indicates that a recursive list of files from the task are returned. Otherwise, returns only the files at the task directory root.
+
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
-
- Force
+
+ Filter
- If this parameter is not present, then you will be prompted for confirmation before the job is deleted. Use this parameter to delete the job without being asked for confirmation.
+ Specifies the OData filter clause to use when querying for task files. If you do not specify a filter, then all task files associated with the task specified with either the WorkItemName, JobName, and TaskName parameters or the Task parameter will be returned.
+ String
+
+ String
+
+
+ none
-
-
- Remove-AzureBatchJob
-
- WorkItemName
+
+ JobName
- The name of the workitem containing the job to delete.
+ Specifies the name of the job containing the specified target task.
- string
+ String
+
+ String
+
+
+ none
-
- Name
+
+ MaxCount
- The name of the job to delete. Wildcards are not permitted.
+ Specifies the maximum number of task files to return. If you specify a value of 0 or less, then no upper limit is used. If you do not specify a value, a default value of 1000 is used.
- string
+ Int32
+
+ Int32
+
+
+ none
-
- BatchContext
+
+ Name
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the name of the task file to retrieve. You cannot use wildcards.
- BatchAccountContext
+ String
+
+ String
+
+
+ none
-
- Force
+
+ Profile
- If this parameter is not present, then you will be prompted for confirmation before the job is deleted. Use this parameter to delete the job without being asked for confirmation.
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+ AzureProfile
+
+ AzureProfile
+
+
+ none
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Force
-
- If this parameter is not present, then you will be prompted for confirmation before the job is deleted. Use this parameter to delete the job without being asked for confirmation.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- InputObject
-
- The PSCloudJob object representing the job to delete. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
-
-
- PSCloudJob
-
- PSCloudJob
-
-
-
-
-
- Name
-
- The name of the job to delete. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
- WorkItemName
-
- The name of the workitem containing the job to delete.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Remove-AzureBatchJob -WorkItemName "myWorkItem" -Name "job-0000000001" -BatchContext $context
-
-
- Description
- -----------
- Deletes the job named "job-0000000001" under the workitem named "myWorkItem". The user is prompted for confirmation before the delete operation takes place.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchJob -WorkItemName "myWorkItem" -Name "job-0000000001" -BatchContext $context | Remove-AzureBatchJob -Force -BatchContext $context
-
-
- Description
- -----------
- Deletes the job named "job-0000000001" under the workitem amed "myWorkItem". Since the Force parameter is present, the confirmation prompt is suppressed.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- New-AzureBatchTask
-
-
- Creates a new Azure Batch task under the specified job.
-
-
-
-
- New
- AzureBatchTask
-
-
-
- Creates a new Azure Batch task under the job specified by the WorkItemName and JobName parameters or the Job parameter.
-
-
-
-
- New-AzureBatchTask
-
- BatchContext
+
+ Recursive
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Indicates that a recursive list of files from the task are returned. Otherwise, returns only the files at the task directory root.
- BatchAccountContext
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
-
- JobName
+
+ Task
- The name of the job to create the task under.
+ Specifies the PSCloudTask object representing the task that the task files are associated with. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
- string
+ PSCloudTask
+
+ PSCloudTask
+
+
+ none
-
- Name
+
+ TaskName
- The name of the task to create.
+ Specifies the name of the task.
- string
+ String
+
+ String
+
+
+ none
-
+
WorkItemName
- The name of the workitem to create the task under.
+ Specifies the name of the work item which contains the specified target task.
- string
+ String
+
+ String
+
+
+ none
-
- AffinityInformation
+
+
+
+
+
+
+
+
+
+
+
+
- The locality hints for the task.
+
+
- PSAffinityInformation
-
-
- CommandLine
-
- The commandline for the task.
-
- string
-
-
- EnvironmentSettings
-
- Environment settings to add to the new task. For each key/value pair, set the key to the environment setting name, and the value to the environment setting value.
-
- IDictionary
-
-
- ResourceFiles
-
- Resource files required by the task. For each key/value pair, set the key to the resource rile path, and the value to the resource file blob source.
-
- IDictionary
-
-
- RunElevated
-
- If present, the task process will run under elevation as Administrator. Otherwise, the process will run without elevation.
-
-
-
- TaskConstraints
-
- The execution constraints for the task.
-
- PSTaskConstraints
-
-
-
- New-AzureBatchTask
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
- Name
-
- The name of the task to create.
-
- string
-
-
- AffinityInformation
-
- The locality hints for the task.
-
- PSAffinityInformation
-
-
- CommandLine
-
- The commandline for the task.
-
- string
-
-
- EnvironmentSettings
-
- Environment settings to add to the new task. For each key/value pair, set the key to the environment setting name, and the value to the environment setting value.
-
- IDictionary
-
-
- Job
-
- The PSCloudJob object representing the job to create the task under. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
-
- PSCloudJob
-
-
- ResourceFiles
-
- Resource files required by the task. For each key/value pair, set the key to the resource rile path, and the value to the resource file blob source.
-
- IDictionary
-
-
- RunElevated
-
- If present, the task process will run under elevation as Administrator. Otherwise, the process will run without elevation.
-
-
-
- TaskConstraints
+
+
+
+
+
+ PSTaskFile
+
+
+
+
+
+
- The execution constraints for the task.
+
+
- PSTaskConstraints
-
-
-
-
-
-
- AffinityInformation
-
- The locality hints for the task.
-
-
- PSAffinityInformation
-
- PSAffinityInformation
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- CommandLine
-
- The commandline for the task.
+
+
+
+
+
+
+ Example 1: Get the properties of an Azure batch task file by job name and work item name
+
+
+
+
+
+ PS C:\>Get-AzureBatchTaskFile -WorkItemName "MyWorkItem" -JobName "Job-000001" -TaskName "MyTask" -Name "Stdout.txt" -BatchContext $Context
+ IsDirectory Name Properties Url
-
- string
-
- string
-
-
-
-
-
- EnvironmentSettings
-
- Environment settings to add to the new task. For each key/value pair, set the key to the environment setting name, and the value to the environment setting value.
+ ----------- ---- ---------- ---
-
- IDictionary
-
- IDictionary
-
-
-
-
-
- Job
-
- The PSCloudJob object representing the job to create the task under. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
+ False StdOut.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.contoso-in...
-
- PSCloudJob
-
- PSCloudJob
-
-
-
-
-
- JobName
-
- The name of the job to create the task under.
+
+
+ This command gets the properties of the StdOut.txt task file associated with the task named MyTask in job Job-000001 under work item MyWorkItem.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get the properties of all Azure batch task files by job name and work item name that start with filter
+
+
+
+
+
+ PS C:\>Get-AzureBatchTaskFile -WorkItemName "myWorkItem" -JobName "Job-00002" -TaskName "MyTask" -Filter "startswith(name,'St')" -BatchContext $Context
+ IsDirectory Name Properties Url
-
- string
-
- string
-
-
-
-
-
- Name
-
- The name of the task to create.
+ ----------- ---- ---------- ---
-
- string
-
- string
-
-
-
-
-
- ResourceFiles
-
- Resource files required by the task. For each key/value pair, set the key to the resource rile path, and the value to the resource file blob source.
+ False StdErr.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.contoso-in...
+ False StdOut.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.contoso-in...
-
- IDictionary
-
- IDictionary
-
-
-
-
-
- RunElevated
-
- If present, the task process will run under elevation as Administrator. Otherwise, the process will run without elevation.
+
+
+ This command gets the properties of the task files whose names start with st and are associated with task MyTask under job Job-00002 under work item MyWorkItem.
+
+
+
+
+
+
+
+
+
+
+ Example 3: Recursively get the properties of all Azure batch task files by job name and work item name
+
+
+
+
+
+ PS C:\>Get-AzureBatchTask "MyWorkItem" "Job-00003" "MyTask3" -BatchContext $Context | Get-AzureBatchTaskFile -Recursive -BatchContext $Context
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- TaskConstraints
-
- The execution constraints for the task.
+ IsDirectory Name Properties Url
-
- PSTaskConstraints
-
- PSTaskConstraints
-
-
-
-
-
- WorkItemName
-
- The name of the workitem to create the task under.
+ ----------- ---- ---------- ---
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ False ProcessEnv.cmd Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.condtoso-in...
+ False StdErr.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.contoso-in...
+ False StdOut.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.contoso-in...
+ True wd https://cmdletexample.batch-test.contoso-in...
+ False wd\newFile.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.contoso-in...
-
-
-
-
-
-
-
-
+
+
+ This command gets the properties of all files associated with the task named MyTask3 in job Job-00003 under work item MyWorkItem. Since the Recursive parameter is present, a recursive file search is performed, and the wd\newFile.txt task file is returned.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchAccountKeys
-
-
+
+
+ Get-AzureBatchTask
+
+
+
+ Azure Batch Cmdlets
+
+
+
+
+
+
+ Get-AzureBatchTask
-
-
-
-
+ Gets the Azure batch tasks for the specified job.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- New-AzureBatchTask -WorkItemName "myWorkItem" -JobName "job-0000000001" -Name "myTask" -CommandLine "cmd /c dir /s" -BatchContext $context
-
-
- Description
- -----------
- Creates a new task named "myTask" under job "job-0000000001" under workitem "myWorkItem". The task will run the commandline "cmd /c dir /s".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchJob -WorkItemName "myWorkItem" -Name "job-0000000001" -BatchContext $context | New-AzureBatchTask -Name "myTask2" -CommandLine "cmd /c echo hello > newFile.txt" -RunElevated -BatchContext $context
-
-
- Description
- -----------
- Creates a new task named "myTask2" under job "job-0000000001" under workitem "myWorkItem". The task will run the commandline "cmd /c echo hello > newFile.txt" with elevated permissions.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureBatchTask
-
+
+
+
+ Get
+ AzureBatchTask
+
+
- Gets the Azure Batch tasks under the specified job.
+ The Get-AzureBatchTask cmdlet gets the Azure batch tasks for the job specified by either the WorkItemName and JobName parameters or the Job parameter. You can use the Name parameter to get a single task, or you can use the Filter parameter to get the tasks that match an OData filter.
-
-
-
- Get
- AzureBatchTask
-
-
-
- Gets the Azure Batch tasks under the job specified by either the WorkItemName and JobName parameters or the Job parameter. You can use the Name parameter to get a single task, or you can use the Filter parameter to get the tasks that match an OData filter.
-
-
-
-
- Get-AzureBatchTask
-
- WorkItemName
-
- The name of the workitem which contains the tasks.
-
- string
-
-
- JobName
-
- The name of the job which contains the tasks.
-
- string
-
-
+
+
+ Get-AzureBatchTask
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the tasks.
+
+ String
+
+
+ JobName
+
+ Specifies the name of the job which contains the tasks.
+
+ String
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for tasks. If you do not specify a filter, then all tasks under the job specified with either the WorkItemName and JobName parameters or the Job parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of tasks to return. If you specify a value of 0 or less, then no upper limit is used. If no value is specified, a default value of 1000 is used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchTask
+
+ WorkItemName
+
+ Specifies the name of the work item which contains the tasks.
+
+ String
+
+
+ JobName
+
+ Specifies the name of the job which contains the tasks.
+
+ String
+
+
+ Name
+
+ Specifies the name of the task to retrieve. Wildcards are not permitted.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchTask
+
+ Job
+
+ Specifies the PSCloudJob object representing the job which contains the tasks. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
+
+ PSCloudJob
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for tasks. If you do not specify a filter, then all tasks under the job specified with either the WorkItemName and JobName parameters or the Job parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of tasks to return. If you specify a value of 0 or less, then no upper limit is used. If no value is specified, a default value of 1000 is used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
-
+
Filter
- The OData filter clause to use when querying for tasks. If no filter is specified, then all tasks under the job specified with either the WorkItemName and JobName parameters or the Job parameter will be returned.
+ Specifies the OData filter clause to use when querying for tasks. If you do not specify a filter, then all tasks under the job specified with either the WorkItemName and JobName parameters or the Job parameter will be returned.
- string
+ String
+
+ String
+
+
+ none
-
- MaxCount
+
+ Job
- The maximum number of tasks to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies the PSCloudJob object representing the job which contains the tasks. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
- int
+ PSCloudJob
+
+ PSCloudJob
+
+
+ none
-
-
- Get-AzureBatchTask
-
- WorkItemName
+
+ JobName
- The name of the workitem which contains the tasks.
+ Specifies the name of the job which contains the tasks.
- string
+ String
+
+ String
+
+
+ none
-
- JobName
+
+ MaxCount
- The name of the job which contains the tasks.
+ Specifies the maximum number of tasks to return. If you specify a value of 0 or less, then no upper limit is used. If no value is specified, a default value of 1000 is used.
- string
+ Int32
+
+ Int32
+
+
+ none
-
+
Name
- The name of the task to retrieve. Wildcards are not permitted.
+ Specifies the name of the task to retrieve. Wildcards are not permitted.
- string
+ String
+
+ String
+
+
+ none
-
- BatchContext
+
+ Profile
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- BatchAccountContext
+ AzureProfile
+
+ AzureProfile
+
+
+ none
-
-
- Get-AzureBatchTask
-
- Job
+
+ WorkItemName
- The PSCloudJob object representing the job which contains the tasks. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
+ Specifies the name of the work item which contains the tasks.
- PSCloudJob
+ String
+
+ String
+
+
+ none
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PSCloudTask
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Get a task by name in a specified job that is contained in a specified work item
+
+
+
+
+
+ PS C:\>Get-AzureBatchTask -WorkItemName "MyWorkItem" -JobName "Job-0000001" -Name "MyTask" -BatchContext $Context
+
+ AffinityInformation :
+ CommandLine : cmd /c dir /s
+ CreationTime : 3/24/2015 10:21:51 PM
+ EnvironmentSettings :
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
+ LastModified : 3/24/2015 10:21:51 PM
+ Name : myTask
+ PreviousState : Running
+ PreviousStateTransitionTime : 3/24/2015 10:22:00 PM
+ RunElevated : False
+ State : Completed
+ StateTransitionTime : 3/24/2015 10:22:00 PM
+ Statistics :
+ TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
+ Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask
+ VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
+ ResourceFiles :
+
+
+ This command gets the task named MyTask in job Job-0000001 under work item MyWorkItem.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get all completed tasks from a specified job name in a specified work item
+
+
+
+
+
+ PS C:\>Get-AzureBatchTask -WorkItemName "MyWorkItem" -JobName "Job-0000002" -Filter "state eq 'completed'" -BatchContext $Context
+ AffinityInformation :
+ CommandLine : cmd /c dir /s
+ CreationTime : 3/24/2015 10:21:51 PM
+ EnvironmentSettings :
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
+ LastModified : 3/24/2015 10:21:51 PM
+ Name : myTask
+ PreviousState : Running
+ PreviousStateTransitionTime : 3/24/2015 10:22:00 PM
+ RunElevated : False
+ State : Completed
+ StateTransitionTime : 3/24/2015 10:22:00 PM
+ Statistics :
+ TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
+ Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask
+ VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
+ ResourceFiles :
+
+ AffinityInformation :
+ CommandLine : cmd /c echo hello > newFile.txt
+ CreationTime : 3/24/2015 10:23:35 PM
+ EnvironmentSettings :
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
+ LastModified : 3/24/2015 10:23:35 PM
+ Name : myTask2
+ PreviousState : Running
+ PreviousStateTransitionTime : 3/24/2015 10:23:37 PM
+ RunElevated : True
+ State : Completed
+ StateTransitionTime : 3/24/2015 10:23:37 PM
+ Statistics :
+ TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
+ Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask2
+ VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
+ ResourceFiles :
+
+
+ This command gets the completed tasks from the job named Job-0000002 under work item MyWorkItem.
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureBatchTask
+
+
+
+ Remove-AzureBatchTask
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Get-AzureBatchJob
+
+
+
+
+
+
+ Get-AzureBatchVMFileContent
+
+ Gets the specified Azure batch virtual machine file.
+
+
+
+
+ Get
+ AzureBatchVMFileContent
+
+
+
+ The Get-AzureBatchVMFileContent cmdlet gets the specified Azure batch virtual machine file and saves it to the specified file location or to the user supplied stream.
+
+
+
+ Get-AzureBatchVMFileContent
+
+ PoolName
+
+ Specifies the name of the pool containing the virtual machine.
+
+ String
+
+
+ VMName
+
+ Specifies the name of the virtual machine in which this cmdlet operates.
+
+ String
+
+
+ Name
+
+ Specifies the name of the virtual machine file to download. You cannot use wildcards.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationPath
+
+ Specifies the file path where the virtual machine file will be downloaded.
+
+ String
+
+
+
+ Get-AzureBatchVMFileContent
+
+ PoolName
+
+ Specifies the name of the pool containing the virtual machine.
+
+ String
+
+
+ VMName
+
+ Specifies the name of the virtual machine in which this cmdlet operates.
+
+ String
+
+
+ Name
+
+ Specifies the name of the virtual machine file to download. You cannot use wildcards.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationStream
+
+ Specifies the stream into which the virtual machine file contents will be written. This stream will not be closed or rewound by this call.
+
+ Stream
+
+
+
+ Get-AzureBatchVMFileContent
+
+ InputObject
+
+ Specifies the PSVMFile object representing the file to download. You can use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
+
+ PSVMFile
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationPath
+
+ Specifies the file path where the virtual machine file will be downloaded.
+
+ String
+
+
+
+ Get-AzureBatchVMFileContent
+
+ InputObject
+
+ Specifies the PSVMFile object representing the file to download. You can use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
+
+ PSVMFile
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DestinationStream
+
+ Specifies the stream into which the virtual machine file contents will be written. This stream will not be closed or rewound by this call.
+
+ Stream
+
+
+
+
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
-
- Filter
+
+ DestinationPath
- The OData filter clause to use when querying for tasks. If no filter is specified, then all tasks under the job specified with either the WorkItemName and JobName parameters or the Job parameter will be returned.
+ Specifies the file path where the virtual machine file will be downloaded.
- string
+ String
+
+ String
+
+
+ none
-
- MaxCount
+
+ DestinationStream
- The maximum number of tasks to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies the stream into which the virtual machine file contents will be written. This stream will not be closed or rewound by this call.
- int
+ Stream
+
+ Stream
+
+
+ none
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Filter
-
- The OData filter clause to use when querying for tasks. If no filter is specified, then all tasks under the job specified with either the WorkItemName and JobName parameters or the Job parameter will be returned.
-
-
- string
-
- string
-
-
-
-
-
- Job
-
- The PSCloudJob object representing the job which contains the tasks. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
-
-
- PSCloudJob
-
- PSCloudJob
-
-
-
-
-
- JobName
-
- The name of the job which contains the tasks.
-
-
- string
-
- string
-
-
-
-
-
- MaxCount
-
- The maximum number of tasks to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
-
- int
-
- int
-
-
-
-
-
- Name
-
- The name of the task to retrieve. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
- WorkItemName
-
- The name of the workitem which contains the tasks.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PSCloudTask
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchTask -WorkItemName "myWorkItem" -JobName "job-0000000001" -Name "myTask" -BatchContext $context
-
- AffinityInformation :
- CommandLine : cmd /c dir /s
- CreationTime : 3/24/2015 10:21:51 PM
- EnvironmentSettings :
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
- LastModified : 3/24/2015 10:21:51 PM
- Name : myTask
- PreviousState : Running
- PreviousStateTransitionTime : 3/24/2015 10:22:00 PM
- RunElevated : False
- State : Completed
- StateTransitionTime : 3/24/2015 10:22:00 PM
- Statistics :
- TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask
- VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
- ResourceFiles :
-
-
- Description
- -----------
- Gets the task named "myTask" under job "job-0000000001" under workitem "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchTask -WorkItemName "myWorkItem" -JobName "job-0000000001" -Filter "state eq 'completed'" -BatchContext $context
-
- AffinityInformation :
- CommandLine : cmd /c dir /s
- CreationTime : 3/24/2015 10:21:51 PM
- EnvironmentSettings :
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
- LastModified : 3/24/2015 10:21:51 PM
- Name : myTask
- PreviousState : Running
- PreviousStateTransitionTime : 3/24/2015 10:22:00 PM
- RunElevated : False
- State : Completed
- StateTransitionTime : 3/24/2015 10:22:00 PM
- Statistics :
- TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask
- VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
- ResourceFiles :
-
- AffinityInformation :
- CommandLine : cmd /c echo hello > newFile.txt
- CreationTime : 3/24/2015 10:23:35 PM
- EnvironmentSettings :
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
- LastModified : 3/24/2015 10:23:35 PM
- Name : myTask2
- PreviousState : Running
- PreviousStateTransitionTime : 3/24/2015 10:23:37 PM
- RunElevated : True
- State : Completed
- StateTransitionTime : 3/24/2015 10:23:37 PM
- Statistics :
- TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask2
- VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
- ResourceFiles :
-
-
-
- Description
- -----------
- Gets the completed tasks under the job named "job-0000000001" under workitem "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchJob -WorkItemName "myWorkItem" -Name "job-0000000001" -BatchContext $context | Get-AzureBatchTask -BatchContext $context
-
- AffinityInformation :
- CommandLine : cmd /c dir /s
- CreationTime : 3/24/2015 10:21:51 PM
- EnvironmentSettings :
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
- LastModified : 3/24/2015 10:21:51 PM
- Name : myTask
- PreviousState : Running
- PreviousStateTransitionTime : 3/24/2015 10:22:00 PM
- RunElevated : False
- State : Completed
- StateTransitionTime : 3/24/2015 10:22:00 PM
- Statistics :
- TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask
- VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
- ResourceFiles :
-
- AffinityInformation :
- CommandLine : cmd /c echo hello > newFile.txt
- CreationTime : 3/24/2015 10:23:35 PM
- EnvironmentSettings :
- ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSTaskExecutionInformation
- LastModified : 3/24/2015 10:23:35 PM
- Name : myTask2
- PreviousState : Running
- PreviousStateTransitionTime : 3/24/2015 10:23:37 PM
- RunElevated : True
- State : Completed
- StateTransitionTime : 3/24/2015 10:23:37 PM
- Statistics :
- TaskConstraints : Microsoft.Azure.Commands.Batch.Models.PSTaskConstraints
- Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem/jobs/job-0000000001/tasks/myTask2
- VMInformation : Microsoft.Azure.Commands.Batch.Models.PSVMInformation
- ResourceFiles :
-
-
- Description
- -----------
- Gets all tasks under the job named "job-0000000001" under workitem "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureBatchTask
-
-
- Deletes the specified Azure Batch task.
+
+ InputObject
+
+ Specifies the PSVMFile object representing the file to download. You can use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
+
+ PSVMFile
+
+ PSVMFile
+
+
+ none
+
+
+ Name
+
+ Specifies the name of the virtual machine file to download. You cannot use wildcards.
+
+ String
+
+ String
+
+
+ none
+
+
+ PoolName
+
+ Specifies the name of the pool containing the virtual machine.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+ VMName
+
+ Specifies the name of the virtual machine in which this cmdlet operates.
+
+ String
+
+ String
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Get a single file from a virtual machine and save it to a specified path
+
+
+
+
+
+ PS C:\>Get-AzureBatchVMFileContent -PoolName "MyPool" -VMName "VM01" -Name "Startup\StdOut.txt" -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
+
+
+ This command gets the Startup\StdOut.txt file and saves it to the E:\PowerShell\stdout.txt file path. The file is from the virtual machine named VM01 in the pool named MyPool.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get a single file from a virtual machine and save it to a specified path
+
+
+
+
+
+ PS C:\>Get-AzureBatchVMFile -PoolName "MyPool" -VMName "VM01" -Name "Startup\StdOut.txt" -BatchContext $Context | Get-AzureBatchVMFileContent -DestinationPath "E:\PowerShell\StdOut.txt" -BatchContext $Context
+
+
+ This command gets the Startup\StdOut.txt file and saves it to the E:\PowerShell\StdOut.txt file path. The file is from the virtual machine named VM01 in the pool named MyPool.
+
+
+
+
+
+
+
+
+
+
+ Example 3: Get a single file from a virtual machine and save it to a specified stream
+
+
+
+
+
+ PS C:\>$Stream = New-Object System.IO.MemoryStream; Get-AzureBatchVMFileContent -PoolName "MyPool" -PoolName "VM01" -Name "startup\stdout.txt" -DestinationStream $Stream -BatchContext $Context
+
+
+ This command gets the file Startup\StdOut.txt from the virtual machine named VM01 in the pool named MyPool. The file contents are saved to the user supplied stream.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchVM
+
+
+
+ Get-AzureBatchVMFile
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Get-AzureBatchVMFile
+
+
+
+ Azure Batch Cmdlets
+
+
+
+
+
+
+ Get-AzureBatchVMFile
+
+ Gets the properties of the files associated with the specified Azure batch virtual machine.
+
+
+
+
+ Get
+ AzureBatchVMFile
+
+
+
+ The Get-AzureBatchVMFile cmdlet gets the properties of the files associated with the Azure batch virtual machine specified by either the PoolName and VMName parameters or the VM parameter. You can use the Name parameter to get a single virtual machine file, or you can use the Filter parameter to get the virtual machine files that match an OData filter. You can use the Recursive parameter to perform a recursive list of all files of the virtual machine.
+
+
+
+ Get-AzureBatchVMFile
+
+ PoolName
+
+ Specifies the name of the pool that contains the virtual machine.
+
+ String
+
+
+ VMName
+
+ Specifies the name of the virtual machine that contains the files.
+
+ String
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for virtual machine files. If no filter is specified, then all virtual machine files on the virtual machine specified with either the PoolName and VMName parameters or the VM parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of virtual machine files to return. If you specify a value of 0 or less, then no upper limit will be used. If you do not specify a value, a default value of 1000 will be used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ Recursive
+
+ Indicates the cmdlet performs a recursive search of all the files on the virtual machine. Otherwise, the cmdlet returns only the files at the virtual machine directory root.
+
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchVMFile
+
+ PoolName
+
+ Specifies the name of the pool that contains the virtual machine.
+
+ String
+
+
+ Name
+
+ Specifies the name of the file to retrieve from the virtual machine. You cannot use wildcards.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ VMName
+
+ Specifies the name of the virtual machine that contains the files.
+
+ String
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchVMFile
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for virtual machine files. If no filter is specified, then all virtual machine files on the virtual machine specified with either the PoolName and VMName parameters or the VM parameter will be returned.
+
+ String
+
+
+ VM
+
+ Specifies the PSVM object representing the virtual machine that contains the files. You can use the Get-AzureBatchVM cmdlet to get a PSVM object.
+
+ PSVM
+
+
+ MaxCount
+
+ Specifies the maximum number of virtual machine files to return. If you specify a value of 0 or less, then no upper limit will be used. If you do not specify a value, a default value of 1000 will be used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ Recursive
+
+ Indicates the cmdlet performs a recursive search of all the files on the virtual machine. Otherwise, the cmdlet returns only the files at the virtual machine directory root.
+
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for virtual machine files. If no filter is specified, then all virtual machine files on the virtual machine specified with either the PoolName and VMName parameters or the VM parameter will be returned.
+
+ String
+
+ String
+
+
+ none
+
+
+ MaxCount
+
+ Specifies the maximum number of virtual machine files to return. If you specify a value of 0 or less, then no upper limit will be used. If you do not specify a value, a default value of 1000 will be used.
+
+ Int32
+
+ Int32
+
+
+ none
+
+
+ Name
+
+ Specifies the name of the file to retrieve from the virtual machine. You cannot use wildcards.
+
+ String
+
+ String
+
+
+ none
+
+
+ PoolName
+
+ Specifies the name of the pool that contains the virtual machine.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+ Recursive
+
+ Indicates the cmdlet performs a recursive search of all the files on the virtual machine. Otherwise, the cmdlet returns only the files at the virtual machine directory root.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
+
+
+ VM
+
+ Specifies the PSVM object representing the virtual machine that contains the files. You can use the Get-AzureBatchVM cmdlet to get a PSVM object.
+
+ PSVM
+
+ PSVM
+
+
+ none
+
+
+ VMName
+
+ Specifies the name of the virtual machine that contains the files.
+
+ String
+
+ String
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PSVMFile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Get a single file from a virtual machine in a specified pool
+
+
+
+
+
+ PS C:\>Get-AzureBatchVMFile -PoolName "myPool" -VMName "VM01" -Name "Startup\StdOut.txt" -BatchContext $Context
+ IsDirectory Name Properties Url
+ ----------- ---- ---------- ---
+ False startup\stdout.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
+
+
+
+ This command gets the file named Startup\StdOut.txt from the virtual machine named VM01 in the pool MyPool.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get all files under a specific directory from a virtual machine in a specified pool
+
+
+
+
+
+ PS C:\>Get-AzureBatchVMFile -PoolName "MyPool" -VMName "VM01" -Filter "startswith(name,'startup')" -Recursive -BatchContext $Context
+ IsDirectory Name Properties Url
+ ----------- ---- ---------- ---
+ True startup https://cmdletexample.batch-test.windows-in...
+ False startup\ProcessEnv.cmd Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
+ False startup\stderr.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
+ False startup\stdout.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
+ True startup\wd https://cmdletexample.batch-test.windows-in...
+
+
+
+ This command gets all the files under the startup directory from the virtual machine named VM01 in pool MyPool.
+
+
+
+
+
+
+
+
+
+
+ Example 3: Get all files from the root directory of a specific virtual machine
+
+
+
+
+
+ PS C:\>Get-AzureBatchVM "MyPool" -VMName "VM01" -BatchContext $Context | Get-AzureBatchVMFile -BatchContext $Context
+ IsDirectory Name Properties Url
+ ----------- ---- ---------- ---
+ True shared https://cmdletexample.batch-test.windows-in...
+ True startup https://cmdletexample.batch-test.windows-in...
+ True workitems https://cmdletexample.batch-test.windows-in...
+
+
+
+ This command gets all the files at the root directory of the virtual machine named VM01 in the pool named MyPool.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Get-AzureBatchVM
+
+
+
+ Azure Batch Cmdlets
+
+
+
+
+
+
+ Get-AzureBatchVM
+
+ Gets Azure batch virtual machines under the specified pool.
+
+
+
+
+ Get
+ AzureBatchVM
+
+
+
+ The Get-AzureBatchVM cmdlet gets Azure batch virtual machines under the pool specified by either the PoolName or Pool parameters. You can use the Name parameter to get a single virtual machine, or you can use the Filter parameter to get the virtual machines that match an OData filter.
+
+
+
+ Get-AzureBatchVM
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for virtual machines. If you do not specify a filter, then all virtual machines under the pool specified with either the PoolName or the Pool parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of virtual machines to return. If you specify a value of 0 or less, then the cmdlet will not use an upper limit. If you do not specify a value, a default value of 1000 will be used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ PoolName
+
+ Specifies the name of the pool which contains the virtual machines.
+
+ String
+
+
+
+ Get-AzureBatchVM
+
+ PoolName
+
+ Specifies the name of the pool which contains the virtual machines.
+
+ String
+
+
+ Name
+
+ Specifies the name of the virtual machine to retrieve from the pool. You cannot specify wildcards.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchVM
+
+ Pool
+
+ Specifies the PSCloudPool object representing the pool which contains the virtual machines. You can use the Get-AzureBatchPool cmdlet to get a PSCloudPool object.
+
+ PSCloudPool
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for virtual machines. If you do not specify a filter, then all virtual machines under the pool specified with either the PoolName or the Pool parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of virtual machines to return. If you specify a value of 0 or less, then the cmdlet will not use an upper limit. If you do not specify a value, a default value of 1000 will be used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for virtual machines. If you do not specify a filter, then all virtual machines under the pool specified with either the PoolName or the Pool parameter will be returned.
+
+ String
+
+ String
+
+
+ none
+
+
+ MaxCount
+
+ Specifies the maximum number of virtual machines to return. If you specify a value of 0 or less, then the cmdlet will not use an upper limit. If you do not specify a value, a default value of 1000 will be used.
+
+ Int32
+
+ Int32
+
+
+ none
+
+
+ Name
+
+ Specifies the name of the virtual machine to retrieve from the pool. You cannot specify wildcards.
+
+ String
+
+ String
+
+
+ none
+
+
+ Pool
+
+ Specifies the PSCloudPool object representing the pool which contains the virtual machines. You can use the Get-AzureBatchPool cmdlet to get a PSCloudPool object.
+
+ PSCloudPool
+
+ PSCloudPool
+
+
+ none
+
+
+ PoolName
+
+ Specifies the name of the pool which contains the virtual machines.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PSVM
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Get a virtual machine by name from a specified pool
+
+
+
+
+
+ PS C:\>Get-AzureBatchVM -PoolName "MyPool" -Name "VM02" -BatchContext $Context
+ Name : VM02
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/VM02
+ State : Idle
+ StateTransitionTime : 3/30/2015 8:59:59 PM
+ LastBootTime : 3/30/2015 8:59:59 PM
+ VMAllocationTime : 3/30/2015 8:55:53 PM
+ IPAddress : 10.215.128.7
+ AffinityId : TVM:VM02
+ VMSize : small
+ TotalTasksRun : 0
+ StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
+ RecentTasks :
+ StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
+ CertificateReferences :
+ VMErrors :
+
+
+
+ This command gets the virtual machine named VM02 from the pool named MyPool.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get all idle virtual machines from a specified pool
+
+
+
+
+
+ PS C:\>Get-AzureBatchVM -PoolName "MyPool" -Filter "state eq 'idle'" -BatchContext $Context
+ Name : VM02
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/VM02
+ State : Idle
+ StateTransitionTime : 3/30/2015 8:59:59 PM
+ LastBootTime : 3/30/2015 8:59:59 PM
+ VMAllocationTime : 3/30/2015 8:55:53 PM
+ IPAddress : 10.215.128.7
+ AffinityId : TVM:VM02
+ VMSize : small
+ TotalTasksRun : 0
+ StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
+ RecentTasks :
+ StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
+ CertificateReferences :
+ VMErrors :
+ Name : VM03
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/VM03
+ State : Idle
+ StateTransitionTime : 3/30/2015 9:00:26 PM
+ LastBootTime : 3/30/2015 9:00:26 PM
+ VMAllocationTime : 3/30/2015 8:55:53 PM
+ IPAddress : 10.215.128.17
+ AffinityId : TVM:VM03
+ VMSize : small
+ TotalTasksRun : 0
+ StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
+ RecentTasks :
+ StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
+ CertificateReferences :
+ VMErrors :
+
+
+ This command gets all idle virtual machines contained in the pool named MyPool.
+
+
+
+
+
+
+
+
+
+
+ Example 3: Get all virtual machines in a specified pool
+
+
+
+
+
+ PS C:\>Get-AzureBatchPool -Name "MyPool" -BatchContext $Context | Get-AzureBatchVM -BatchContext $Context
+ Name : VM02
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/VM02
+ State : Idle
+ StateTransitionTime : 3/30/2015 8:59:59 PM
+ LastBootTime : 3/30/2015 8:59:59 PM
+ VMAllocationTime : 3/30/2015 8:55:53 PM
+ IPAddress : 10.215.128.7
+ AffinityId : TVM:VM02
+ VMSize : small
+ TotalTasksRun : 0
+ StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
+ RecentTasks :
+ StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
+ CertificateReferences :
+ VMErrors :
+ Name : VM03
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/VM03
+ State : Idle
+ StateTransitionTime : 3/30/2015 9:00:26 PM
+ LastBootTime : 3/30/2015 9:00:26 PM
+ VMAllocationTime : 3/30/2015 8:55:53 PM
+ IPAddress : 10.215.128.17
+ AffinityId : TVM:VM03
+ VMSize : small
+ TotalTasksRun : 0
+ StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
+ RecentTasks :
+ StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
+ CertificateReferences :
+ VMErrors :
+ Name : VM04
+ Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/VM04
+ State : Idle
+ StateTransitionTime : 3/30/2015 8:59:50 PM
+ LastBootTime : 3/30/2015 8:59:50 PM
+ VMAllocationTime : 3/30/2015 8:55:53 PM
+ IPAddress : 10.215.112.35
+ AffinityId : TVM:VM04
+ VMSize : small
+ TotalTasksRun : 0
+ StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
+ RecentTasks :
+ StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
+ CertificateReferences :
+ VMErrors :
+
+
+
+ This command gets all virtual machines from the pool named MyPool.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchVMFile
+
+
+
+ Get-AzureBatchVMFileContent
+
+
+
+ Azure Batch Cmdlets
+
+
+
+
+
+
+ Get-AzureBatchWorkItem
+
+ Gets Azure batch work items under the specified batch account.
+
+
+
+
+ Get
+ AzureBatchWorkItem
+
+
+
+ The Get-AzureBatchWorkItem cmdlet gets Azure batch work items under the batch account specified with the BatchContext parameter. You can use the Name parameter to get a single work item, or you can use the Filter parameter to get the work items that match an OData filter.
+
+
+
+ Get-AzureBatchWorkItem
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for work items. If no filter is specified, then all work items under the batch account specified with the BatchContext parameter will be returned.
+
+ String
+
+
+ MaxCount
+
+ Specifies the maximum number of work items to return. If you specify a value of 0 or less, then no upper limit is used. If no value is specified, a default value of 1000 is used.
+
+ Int32
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ Get-AzureBatchWorkItem
+
+ Name
+
+ Specifies the name of the work item to retrieve. Wildcards are not permitted.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
+
+
+ Filter
+
+ Specifies the OData filter clause to use when querying for work items. If no filter is specified, then all work items under the batch account specified with the BatchContext parameter will be returned.
+
+ String
+
+ String
+
+
+ none
+
+
+ MaxCount
+
+ Specifies the maximum number of work items to return. If you specify a value of 0 or less, then no upper limit is used. If no value is specified, a default value of 1000 is used.
+
+ Int32
+
+ Int32
+
+
+ none
+
+
+ Name
+
+ Specifies the name of the work item to retrieve. Wildcards are not permitted.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PSCloudWorkItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Get a work item by name
+
+
+
+
+
+ PS C:\>Get-AzureBatchWorkItem -Name "MyWorkItem" -BatchContext $Context
+
+ CreationTime : 3/24/2015 10:08:17 PM
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSWorkItemExecutionInformation
+ JobExecutionEnvironment : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment
+ JobSpecification :
+ LastModified : 3/24/2015 10:08:17 PM
+ Metadata :
+ Name : MyWorkItem
+ PreviousState : Invalid
+ PreviousStateTransitionTime :
+ Schedule :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:08:17 PM
+ Statistics :
+ Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem
+
+
+
+ This command gets the work item named MyWorkItem.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Get all work items by using a name filter
+
+
+
+
+
+ PS C:\>Get-AzureBatchWorkItem -Filter "startswith(name,'My')" -BatchContext $Context
+
+ CreationTime : 3/24/2015 10:08:17 PM
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSWorkItemExecutionInformation
+ JobExecutionEnvironment : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment
+ JobSpecification :
+ LastModified : 3/24/2015 10:08:17 PM
+ Metadata :
+ Name : MyWorkItem
+ PreviousState : Invalid
+ PreviousStateTransitionTime :
+ Schedule :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:08:17 PM
+ Statistics :
+ Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem
+ CreationTime : 3/24/2015 10:12:23 PM
+ ExecutionInformation : Microsoft.Azure.Commands.Batch.Models.PSWorkItemExecutionInformation
+ JobExecutionEnvironment : Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment
+ JobSpecification :
+ LastModified : 3/24/2015 10:12:23 PM
+ Metadata :
+ Name : MyWorkItem2
+ PreviousState : Invalid
+ PreviousStateTransitionTime :
+ Schedule :
+ State : Active
+ StateTransitionTime : 3/24/2015 10:12:23 PM
+ Statistics :
+ Url : https://cmdletexample.batch-test.windows-int.net/workitems/myWorkItem2
+
+
+ This command gets all work items whose names start with My by using the Filter parameter.
+
+
+
+
+
+
+
+
+
+
+
+
+ New-AzureBatchWorkItem
+
+
+
+ Remove-AzureBatchWorkItem
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+
+
+
+ New-AzureBatchAccountKey
+
+ Regenerates the specified key of the specified batch account.
+
+
+
+
+ New
+ AzureBatchAccountKey
+
+
+
+ The New-AzureBatchAccountKey cmdlet regenerates the specified key of the specified batch account. The cmdlet outputs a BatchAccountContext object with its PrimaryAccountKey and SecondaryAccountKey properties populated with the latest access keys.
+
+
+
+ New-AzureBatchAccountKey
+
+ AccountName
+
+ Specifies the name of the batch account to regenerate the specified key.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ ResourceGroupName
+
+ Specifies the resource group of the account.
+
+ String
+
+
+ KeyType
+
+ Specifies the type of key to regenerate.
+
+
+ Primary
+ Secondary
+
+
+
+
+
+
+ AccountName
+
+ Specifies the name of the batch account to regenerate the specified key.
+
+ String
+
+ String
+
+
+ none
+
+
+ KeyType
+
+ Specifies the type of key to regenerate.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+ ResourceGroupName
+
+ Specifies the resource group of the account.
+
+ String
+
+ String
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BatchAccountContext
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Regenerate the primary account key on a named batch account
+
+
+
+
+
+ PS C:\>New-AzureBatchAccountKey -AccountName "CmdletExample" -KeyType "Primary"
+ AccountName Location ResourceGroupName Tags TaskTenantUrl
+ ----------- -------- ----------------- ---- -------------
+ cmdletexample westus CmdletExample https://batch.core.contoso.net
+
+
+ This command regenerates the primary account key on the batch account named CmdletExample.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+
+
+
+ New-AzureBatchAccount
+
+ Creates a new Azure batch account.
+
+
+
+
+ New
+ AzureBatchAccount
+
+
+
+ The New-AzureBatchAccount cmdlet creates a new Azure batch account under the specified resource group and location.
+
+
+
+ New-AzureBatchAccount
+
+ AccountName
+
+ Specifies the name of the batch account to create.
+
+ String
+
+
+ Location
+
+ Specifies the region where the account will be created.
+
+ String
+
+
+ ResourceGroupName
+
+ Specifies the name of the resource group where the account will be created.
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ Tag
+
+ Specifies tags in an array of hash tables to set on the account.
+
+ Hashtable[]
+
+
+
+
+
+ AccountName
+
+ Specifies the name of the batch account to create.
+
+ String
+
+ String
+
+
+ none
+
+
+ Location
+
+ Specifies the region where the account will be created.
+
+ String
+
+ String
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+ ResourceGroupName
+
+ Specifies the name of the resource group where the account will be created.
+
+ String
+
+ String
+
+
+ none
+
+
+ Tag
+
+ Specifies tags in an array of hash tables to set on the account.
+
+ Hashtable[]
+
+ Hashtable[]
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BatchAccountContext
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Create a new batch account
+
+
+
+
+
+ PS C:\>New-AzureBatchAccount -AccountName "cmdletexample" -ResourceGroupName "CmdletExampleRG" -Location "WestUS"
+
+ AccountName Location ResourceGroupName Tags TaskTenantUrl
+ ----------- -------- ----------------- ---- -------------
+ cmdletexample WestUS CmdletExampleRG https://batch.core.contoso.net
+
+
+ This command creates a new batch account named cmdletexample using the CmdletExampleRG resource group in the WestUS location.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchAccount
+
+
+
+ Remove-AzureBatchAccount
+
+
+
+ Set-AzureBatchAccount
+
+
+
+ Azure Batch Cmdlets
+
+
+
+
+
+
+ New-AzureBatchPool
+
+ Creates a new pool in the Azure batch service under the specified account.
+
+
+
+
+ New
+ AzureBatchPool
+
+
+
+ The New-AzureBatchPool cmdlet creates a new pool in the Azure batch service under the account specified by the BatchContext parameter.
-
-
-
- Remove
- AzureBatchTask
-
-
-
- Deletes the specified Azure Batch task. You will be prompted for confirmation unless you use the Force parameter.
-
-
-
-
- Remove-AzureBatchTask
-
- InputObject
+
+
+ New-AzureBatchPool
+
+ Name
+
+ Specifies the name of the pool to create.
+
+ String
+
+
+ AutoScaleFormula
+
+
+ Specifies the formula for automatically scaling the pool. For more information on Autoscale formulas, see
+ https://msdn.microsoft.com/en-us/library/azure/dn820182.aspx
+
+
+
+
+ String
+
+
+ CertificateReferences
+
+ Specifies certificates associated with the pool. The batch service installs the referenced certificates on each Virtual Machine (VM) of the pool.
+
+ PSCertificateReference[]
+
+
+ CommunicationEnabled
+
+ Sets up the pool for direct communication between dedicated virtual machines.
+
+
+
+ MaxTasksPerVM
+
+ Specifies the maximum number of tasks that can run on a single virtual machine.
+
+ Int32
+
+
+ Metadata
+
+ Specifies the metadata to add to the new pool. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
+
+ IDictionary
+
+
+ OSFamily
+
+
+ Specifies the operating system family of the virtual machines in the pool. For more information about operating system families and versions, see
+ http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
+
+ .
+
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ SchedulingPolicy
+
+ Specifies the scheduling policy (such as the TVMFillType).
+
+ PSSchedulingPolicy
+
+
+ StartTask
+
+ Specifies the start task specification for the pool. The start task is run when a virtual machine joins the pool, or when the virtual machine is rebooted or reimaged.
+
+ PSStartTask
+
+
+ TargetOSVersion
+
+
+ Specifies the target operating system version of the virtual machines in the pool. You can use "*" for the latest operating system version for the specified family. For more information about operating system families and versions, see
+ http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
+
+ .
+
+
+ String
+
+
+ VMSize
+
+
+ Specifies the size of the virtual machines in the pool. For more information on virtual machine sizes, see
+ https://msdn.microsoft.com/en-us/library/dn197896.aspx
+
+ .
+
+
+ String
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+ New-AzureBatchPool
+
+ Name
+
+ Specifies the name of the pool to create.
+
+ String
+
+
+ CertificateReferences
+
+ Specifies certificates associated with the pool. The batch service installs the referenced certificates on each Virtual Machine (VM) of the pool.
+
+ PSCertificateReference[]
+
+
+ CommunicationEnabled
+
+ Sets up the pool for direct communication between dedicated virtual machines.
+
+
+
+ MaxTasksPerVM
+
+ Specifies the maximum number of tasks that can run on a single virtual machine.
+
+ Int32
+
+
+ Metadata
+
+ Specifies the metadata to add to the new pool. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
+
+ IDictionary
+
+
+ OSFamily
+
+
+ Specifies the operating system family of the virtual machines in the pool. For more information about operating system families and versions, see
+ http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
+
+ .
+
+
+ String
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ ResizeTimeout
+
+ Specifies the timeout for allocating virtual machines to the pool.
+
+ TimeSpan
+
+
+ SchedulingPolicy
+
+ Specifies the scheduling policy (such as the TVMFillType).
+
+ PSSchedulingPolicy
+
+
+ StartTask
+
+ Specifies the start task specification for the pool. The start task is run when a virtual machine joins the pool, or when the virtual machine is rebooted or reimaged.
+
+ PSStartTask
+
+
+ TargetDedicated
+
+ Specifies the target number of virtual machines to allocate to the pool.
+
+ Int32
+
+
+ TargetOSVersion
+
+
+ Specifies the target operating system version of the virtual machines in the pool. You can use "*" for the latest operating system version for the specified family. For more information about operating system families and versions, see
+ http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
+
+ .
+
+
+ String
+
+
+ VMSize
+
+
+ Specifies the size of the virtual machines in the pool. For more information on virtual machine sizes, see
+ https://msdn.microsoft.com/en-us/library/dn197896.aspx
+
+ .
+
+
+ String
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
+ AutoScaleFormula
+
+
+ Specifies the formula for automatically scaling the pool. For more information on Autoscale formulas, see
+ https://msdn.microsoft.com/en-us/library/azure/dn820182.aspx
+
+
+
+
+ String
+
+ String
+
+
+ none
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
+
+
+ CertificateReferences
+
+ Specifies certificates associated with the pool. The batch service installs the referenced certificates on each Virtual Machine (VM) of the pool.
+
+ PSCertificateReference[]
+
+ PSCertificateReference[]
+
+
+ none
+
+
+ CommunicationEnabled
+
+ Sets up the pool for direct communication between dedicated virtual machines.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
+
+
+ MaxTasksPerVM
- The PSCloudTask object representing the task to delete. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
+ Specifies the maximum number of tasks that can run on a single virtual machine.
- PSCloudJob
+ Int32
+
+ Int32
+
+
+ none
-
- BatchContext
+
+ Metadata
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the metadata to add to the new pool. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
- BatchAccountContext
+ IDictionary
+
+ IDictionary
+
+
+ none
-
- Force
+
+ Name
- If this parameter is not present, then you will be prompted for confirmation before the task is deleted. Use this parameter to delete the task without being asked for confirmation.
+ Specifies the name of the pool to create.
+ String
+
+ String
+
+
+ none
-
-
- Remove-AzureBatchTask
-
- WorkItemName
+
+ OSFamily
- The name of the workitem containing the task to delete.
+
+ Specifies the operating system family of the virtual machines in the pool. For more information about operating system families and versions, see
+ http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
+
+ .
+
- string
+ String
+
+ String
+
+
+ none
-
- JobName
+
+ Profile
- The name of the job containing the task to delete.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
+
+ AzureProfile
+
+
+ none
-
- Name
+
+ ResizeTimeout
- The name of the task to delete. Wildcards are not permitted.
+ Specifies the timeout for allocating virtual machines to the pool.
- string
+ TimeSpan
+
+ TimeSpan
+
+
+ none
-
- BatchContext
+
+ SchedulingPolicy
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the scheduling policy (such as the TVMFillType).
- BatchAccountContext
+ PSSchedulingPolicy
+
+ PSSchedulingPolicy
+
+
+ none
-
- Force
+
+ StartTask
- If this parameter is not present, then you will be prompted for confirmation before the task is deleted. Use this parameter to delete the task without being asked for confirmation.
+ Specifies the start task specification for the pool. The start task is run when a virtual machine joins the pool, or when the virtual machine is rebooted or reimaged.
+ PSStartTask
+
+ PSStartTask
+
+
+ none
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Force
-
- If this parameter is not present, then you will be prompted for confirmation before the task is deleted. Use this parameter to delete the task without being asked for confirmation.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- InputObject
-
- The PSCloudTask object representing the task to delete. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
-
-
- PSCloudJob
-
- PSCloudJob
-
-
-
-
-
- JobName
-
- The name of the job containing the task to delete.
-
-
- string
-
- string
-
-
-
-
-
- Name
-
- The name of the task to delete. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
- WorkItemName
-
- The name of the workitem containing the task to delete.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Remove-AzureBatchTask -WorkItemName "myWorkItem" -JobName "job-0000000001" -Name "myTask" -BatchContext $context
-
-
- Description
- -----------
- Deletes the task named "myTask" under job "job-0000000001" under workitem "myWorkItem". The user is prompted for confirmation before the delete operation takes place.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchTask "myWorkItem" "job-0000000001" "myTask2" -BatchContext $context | Remove-AzureBatchTask -Force -BatchContext $context
-
-
- Description
- -----------
- Deletes the task named "myTask2" under job "job-0000000001" under workitem "myWorkItem". Since the Force parameter is present, the confirmation prompt is suppressed.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureBatchTaskFile
-
-
- Gets the properties of the files associated with the specified Azure Batch task.
-
-
-
-
- Get
- AzureBatchTaskFile
-
-
-
- Gets the properties of the files associated with the Azure Batch task specified by either the WorkItemName, JobName, and TaskName parameters or the Task parameter. You can use the Name parameter to get a single task file, or you can use the Filter parameter to get the task files that match an OData filter. You can use the Recursive parameter to perform a recursive list of all files of the task.
-
-
-
-
- Get-AzureBatchTaskFile
-
- WorkItemName
+
+ TargetDedicated
- The name of the workitem which contains the specified target task.
+ Specifies the target number of virtual machines to allocate to the pool.
- string
+ Int32
+
+ Int32
+
+
+ none
-
- JobName
+
+ TargetOSVersion
- The name of the job containing the specified target task.
+
+ Specifies the target operating system version of the virtual machines in the pool. You can use "*" for the latest operating system version for the specified family. For more information about operating system families and versions, see
+ http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
+
+ .
+
- string
+ String
+
+ String
+
+
+ none
-
- TaskName
+
+ VMSize
+
+
+ Specifies the size of the virtual machines in the pool. For more information on virtual machine sizes, see
+ https://msdn.microsoft.com/en-us/library/dn197896.aspx
+
+ .
+
+
+ String
+
+ String
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Create a new pool using the TargetDedicated parameter set
+
+
+
+
+
+ PS C:\>New-AzureBatchPool -Name "MyPool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -TargetDedicated 3 -BatchContext $Context
+
+
+ This command creates a new pool named MyPool using the TargetDedicated parameter set. The target allocation is three small virtual machines with the latest operating system version of family four.
+
+
+
+
+
+
+
+
+
+
+ Example 2: Create a new pool using the AutoScale parameter set
+
+
+
+
+
+ PS C:\>New-AzureBatchPool -Name "AutoScalePool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -AutoScaleFormula '$TargetDedicated=2;' -BatchContext $Context
+
+
+ This command creates a new pool named AutoScalePool using the AutoScale parameter set. The pool will use small virtual machines with the latest operating system version of family four, and the target number of virtual machines will be determined by the Autoscale formula.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchPool
+
+
+
+ Remove-AzureBatchPool
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+
+
+
+ New-AzureBatchTask
+
+ Creates a new Azure batch task under the specified job.
+
+
+
+
+ New
+ AzureBatchTask
+
+
+
+ The New-AzureBatchTask cmdlet creates a new Azure batch task under the job specified by the WorkItemName and JobName parameters or the Job parameter.
+
+
+
+ New-AzureBatchTask
+
+ AffinityInformation
+
+ Specifies the processor affinity for the task.
+
+ PSAffinityInformation
+
+
+ CommandLine
+
+ Specifies the command-line command for the task.
+
+ String
+
+
+ EnvironmentSettings
+
+ Specifies the environment settings to add to the new task. For each key/value pair, set the key to the environment setting name, and the value to the environment setting.
+
+ IDictionary
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ ResourceFiles
+
+ Specifies resource files required by the task. For each key/value pair, set the key to the resource file path, and the value to the resource file blob source.
+
+ IDictionary
+
+
+ RunElevated
+
+ Indicates that the task process runs elevated as Administrator. Otherwise, the process runs without elevation.
+
+
+
+ TaskConstraints
+
+ Specifies the execution constraints for the task.
+
+ PSTaskConstraints
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ JobName
+
+ Specifies the name of the job to create the task.
+
+ String
+
+
+ Name
+
+ Specifies the name of the task to create.
+
+ String
+
+
+ WorkItemName
+
+ Specifies the name of the work item to create the task.
+
+ String
+
+
+
+ New-AzureBatchTask
+
+ AffinityInformation
+
+ Specifies the processor affinity for the task.
+
+ PSAffinityInformation
+
+
+ CommandLine
+
+ Specifies the command-line command for the task.
+
+ String
+
+
+ EnvironmentSettings
+
+ Specifies the environment settings to add to the new task. For each key/value pair, set the key to the environment setting name, and the value to the environment setting.
+
+ IDictionary
+
+
+ Job
+
+ Specifies the PSCloudJob object representing the job to create the task. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
+
+ PSCloudJob
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ ResourceFiles
+
+ Specifies resource files required by the task. For each key/value pair, set the key to the resource file path, and the value to the resource file blob source.
+
+ IDictionary
+
+
+ RunElevated
+
+ Indicates that the task process runs elevated as Administrator. Otherwise, the process runs without elevation.
+
+
+
+ TaskConstraints
+
+ Specifies the execution constraints for the task.
+
+ PSTaskConstraints
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ Name
+
+ Specifies the name of the task to create.
+
+ String
+
+
+
+
+
+ AffinityInformation
- The name of the task.
+ Specifies the processor affinity for the task.
- string
+ PSAffinityInformation
+
+ PSAffinityInformation
+
+
+ none
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
+
+ BatchAccountContext
+
+
+ none
-
- Filter
-
- The OData filter clause to use when querying for task files. If no filter is specified, then all task files associated with the task specified with either the WorkItemName, JobName, and TaskName parameters or the Task parameter will be returned.
-
- string
-
-
- MaxCount
+
+ CommandLine
- The maximum number of task files to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies the command-line command for the task.
- int
+ String
+
+ String
+
+
+ none
-
- Recursive
+
+ EnvironmentSettings
- If present, performs a recursive list of files of the task. Otherwise, returns only the files at the task directory root.
+ Specifies the environment settings to add to the new task. For each key/value pair, set the key to the environment setting name, and the value to the environment setting.
+ IDictionary
+
+ IDictionary
+
+
+ none
-
-
- Get-AzureBatchTaskFile
-
- WorkItemName
+
+ Job
- The name of the workitem which contains the specified target task.
+ Specifies the PSCloudJob object representing the job to create the task. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
- string
+ PSCloudJob
+
+ PSCloudJob
+
+
+ none
-
+
JobName
- The name of the job containing the specified target task.
+ Specifies the name of the job to create the task.
- string
+ String
+
+ String
+
+
+ none
-
- TaskName
+
+ Name
- The name of the task.
+ Specifies the name of the task to create.
- string
+ String
+
+ String
+
+
+ none
-
- Name
+
+ Profile
- The name of the task file to retrieve. Wildcards are not permitted.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
+
+ AzureProfile
+
+
+ none
-
- BatchContext
+
+ ResourceFiles
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies resource files required by the task. For each key/value pair, set the key to the resource file path, and the value to the resource file blob source.
- BatchAccountContext
+ IDictionary
+
+ IDictionary
+
+
+ none
-
-
- Get-AzureBatchTaskFile
-
- Task
+
+ RunElevated
- The PSCloudTask object representing the task that the task files are associated with. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
+ Indicates that the task process runs elevated as Administrator. Otherwise, the process runs without elevation.
- PSCloudTask
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
-
- BatchContext
+
+ TaskConstraints
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the execution constraints for the task.
- BatchAccountContext
+ PSTaskConstraints
+
+ PSTaskConstraints
+
+
+ none
-
- Filter
+
+ WorkItemName
- The OData filter clause to use when querying for task files. If no filter is specified, then all task files associated with the task specified with either the WorkItemName, JobName, and TaskName parameters or the Task parameter will be returned.
+ Specifies the name of the work item to create the task.
- string
+ String
+
+ String
+
+
+ none
-
- MaxCount
+
+
+
+
+
+
+
+
+
+
+
+
- The maximum number of task files to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+
+
- int
-
-
- Recursive
+
+
+
+
+
+
+
+
+
+
+
+
+
- If present, performs a recursive list of files of the task. Otherwise, returns only the files at the task directory root.
+
+
-
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Filter
-
- The OData filter clause to use when querying for task files. If no filter is specified, then all task files associated with the task specified with either the WorkItemName, JobName, and TaskName parameters or the Task parameter will be returned.
-
-
- string
-
- string
-
-
-
-
-
- JobName
-
- The name of the job containing the specified target task.
-
-
- string
-
- string
-
-
-
-
-
- MaxCount
-
- The maximum number of task files to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
-
- int
-
- int
-
-
-
-
-
- Name
-
- The name of the task file to retrieve. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
- Recursive
-
- If present, performs a recursive list of files of the task. Otherwise, returns only the files at the task directory root.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- Task
-
- The PSCloudTask object representing the task that the task files are associated with. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
-
-
- PSCloudTask
-
- PSCloudTask
-
-
-
-
-
- TaskName
-
- The name of the task.
-
-
- string
-
- string
-
-
-
-
-
- WorkItemName
-
- The name of the workitem which contains the specified target task.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PSTaskFile
+
+
+
+
+
+
+ Example 1: Create a new batch task
+
+
+
+
+
+ PS C:\>New-AzureBatchTask -WorkItemName "MyWorkItem" -JobName "Job-000001" -Name "MyTask" -CommandLine "cmd /c dir /s" -BatchContext $Context
+
+
+ This command creates a new task named MyTask under job Job-000001 under work item MyWorkItem. The task will run the command-line "cmd /c dir /s".
+
+
+
+
+
+
+
+
+
+
+ Example 2: Create a new batch task that runs on the command-line
+
+
+
+
+
+ PS C:\>Get-AzureBatchJob -WorkItemName "MyWorkItem" -Name "Job-000001" -BatchContext $Context | New-AzureBatchTask -Name "MyTask2" -CommandLine "cmd /c echo hello > newFile.txt" -RunElevated -BatchContext $Context
+
+
+ This command creates a new task named MyTask2 under job Job-000001 under work item MyWorkItem. The task will run the command-line "cmd /c echo hello > newFile.txt" with elevated permissions.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchTask
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchTaskFile -WorkItemName "myWorkItem" -JobName "job-0000000001" -TaskName "myTask" -Name "stdout.txt" -BatchContext $context
-
- IsDirectory Name Properties Url
- ----------- ---- ---------- ---
- False stdout.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
-
-
- Description
- -----------
- Gets the properties of the "stdout.txt" task file associated with the task named "myTask" under job "job-0000000001" under workitem "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchTaskFile -WorkItemName "myWorkItem" -JobName "job-0000000001" -TaskName "myTask" -Filter "startswith(name,'st')" -BatchContext $context
-
- IsDirectory Name Properties Url
- ----------- ---- ---------- ---
- False stderr.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
- False stdout.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
-
-
- Description
- -----------
- Gets the properties of the task files whose names start with "st" and are associated with task "myTask" under job "job-0000000001" under workitem "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchTask "myWorkItem" "job-0000000001" "myTask2" -BatchContext $context | Get-AzureBatchTaskFile -Recursive -BatchContext $context
-
- IsDirectory Name Properties Url
- ----------- ---- ---------- ---
- False ProcessEnv.cmd Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
- False stderr.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
- False stdout.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
- True wd https://cmdletexample.batch-test.windows-in...
- False wd\newFile.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
-
-
- Description
- -----------
- Gets the properties of all files associated with the task named "myTask2" under job "job-0000000001" under workitem "myWorkItem". Since the Recursive parameter is present, a recursive file search is performed, and the "wd\newFile.txt" task file is returned.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ Remove-AzureBatchTask
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Get-AzureBatchJob
+
+
+
+
+
-
- Get-AzureBatchTaskFileContent
-
+ New-AzureBatchVMUser
- Downloads the specified task file.
+ Creates a new user on the specified Azure batch virtual machine.
-
+
- Get
- AzureBatchTaskFileContent
-
+ New
+ AzureBatchVMUser
+
- Downloads the specified task file to the specified file location or to the user supplied stream.
+ The New-AzureBatchVMUser cmdlet creates a new user on the specified Azure batch virtual machine.
-
- Get-AzureBatchTaskFileContent
-
- InputObject
+ New-AzureBatchVMUser
+
+ PoolName
- The PSTaskFile object representing the file to download. Use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
+ Specifies the name of the pool containing the virtual machine to create the user.
- PSTaskFile
+ String
-
- InputObject
+
+ VMName
- The PSTaskFile object representing the file to download. Use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
+ Specifies the name of the virtual machine to create the user.
- PSTaskFile
+ String
-
- BatchContext
+
+ ExpiryTime
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the expiry time of the new user.
- BatchAccountContext
+ DateTime
-
- DestinationPath
+
+ IsAdmin
- The file path where the task file will be downloaded.
+ Indicates that the cmdlet will create the user with administrator privileges.
- string
-
-
- Get-AzureBatchTaskFileContent
-
- InputObject
+
+ Password
- The PSTaskFile object representing the file to download. Use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
+ Specifies the user account password.
- PSTaskFile
+ String
-
- InputObject
+
+ Profile
- The PSTaskFile object representing the file to download. Use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- PSTaskFile
+ AzureProfile
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- DestinationStream
+
+ Name
- The Stream into which the vm file contents will be written. This stream will not be closed or rewound by this call.
+ Specifies the name of the created local windows account.
- Stream
+ String
- Get-AzureBatchTaskFileContent
-
- WorkItemName
-
- The name of the workitem which contains the specified target task.
-
- string
-
-
- InputObject
-
- The PSTaskFile object representing the file to download. Use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
-
- PSTaskFile
-
-
- JobName
-
- The name of the job containing the specified target task.
-
- string
-
-
- TaskName
-
- The name of the task.
-
- string
-
-
- Name
+ New-AzureBatchVMUser
+
+ ExpiryTime
- The name of the task file to download. Wildcards are not permitted.
+ Specifies the expiry time of the new user.
- string
+ DateTime
-
- BatchContext
+
+ IsAdmin
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Indicates that the cmdlet will create the user with administrator privileges.
- BatchAccountContext
-
- DestinationPath
+
+ Password
- The file path where the task file will be downloaded.
+ Specifies the user account password.
- string
+ String
-
-
- Get-AzureBatchTaskFileContent
-
- WorkItemName
+
+ Profile
- The name of the workitem which contains the specified target task.
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- string
+ AzureProfile
-
- InputObject
+
+ VM
- The PSTaskFile object representing the file to download. Use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
+ Specifies The PSVM object representing the virtual machine to create the user.
- PSTaskFile
+ PSVM
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- DestinationStream
-
- The Stream into which the vm file contents will be written. This stream will not be closed or rewound by this call.
-
- Stream
-
-
- JobName
-
- The name of the job containing the specified target task.
-
- string
-
-
+
Name
- The name of the task file to download. Wildcards are not permitted.
-
- string
-
-
- TaskName
-
- The name of the task.
+ Specifies the name of the created local windows account.
- string
+ String
-
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
BatchAccountContext
-
+
-
+ none
-
- DestinationPath
+
+ ExpiryTime
- The file path where the task file will be downloaded.
-
+ Specifies the expiry time of the new user.
+
+ DateTime
+
+ DateTime
+
+
+ none
+
+
+ IsAdmin
+
+ Indicates that the cmdlet will create the user with administrator privileges.
- string
+ SwitchParameter
- string
-
+ SwitchParameter
+
-
+ none
-
- DestinationStream
+
+ Name
- The Stream into which the vm file contents will be written. This stream will not be closed or rewound by this call.
-
+ Specifies the name of the created local windows account.
- Stream
+ String
- Stream
-
+ String
+
-
+ none
-
- InputObject
+
+ Password
- The PSTaskFile object representing the file to download. Use the Get-AzureBatchTaskFile cmdlet to get a PSTaskFile object.
-
+ Specifies the user account password.
- PSTaskFile
+ String
- PSTaskFile
-
+ String
+
-
+ none
-
- JobName
+
+ PoolName
- The name of the job containing the specified target task.
-
+ Specifies the name of the pool containing the virtual machine to create the user.
- string
+ String
- string
-
+ String
+
-
+ none
-
- Name
+
+ Profile
- The name of the task file to download. Wildcards are not permitted.
-
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- string
+ AzureProfile
- string
-
+ AzureProfile
+
-
+ none
-
- TaskName
+
+ VM
- The name of the task.
-
+ Specifies The PSVM object representing the virtual machine to create the user.
- string
+ PSVM
- string
-
+ PSVM
+
-
+ none
-
- WorkItemName
+
+ VMName
- The name of the workitem which contains the specified target task.
-
+ Specifies the name of the virtual machine to create the user.
- string
+ String
- string
-
+ String
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -4230,1319 +5639,653 @@
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchTaskFileContent -WorkItemName "myWorkItem" -JobName "job-0000000001" -TaskName "myTask" -Name "stdout.txt" -DestinationPath "E:\PowerShell\stdout.txt" -BatchContext $context
-
-
- Description
- -----------
- Downloads the task file named "stdout.txt" to the "E:\PowerShell\stdout.txt" file path. The "stdout.txt" task file is associated with task "myTask" under job "job-0000000001" under workitem "myWorkItem".
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
+ Example 1: Create a new user on a virtual machine with administrator privileges providing a password
- C:\PS>
+
+
- Get-AzureBatchTaskFile "myWorkItem" "job-0000000001" "myTask" "stderr.txt" -BatchContext $context | Get-AzureBatchTaskFileContent -DestinationPath "E:\PowerShell\stdout.txt" -BatchContext $context
+ PS C:\>New-AzureBatchVMUser -PoolName "MyPool01" -VMName "VM01" -Name "TestUser" -Password "Password1234!" -ExpiryTime ([DateTime]::Now.AddDays(7)) -IsAdmin -BatchContext $Context
- Description
- -----------
- Downloads the task file named "stderr.txt" to the "E:\PowerShell\stdout.txt" file path. The "stdout.txt" task file is associated with task "myTask" under job "job-0000000001" under workitem "myWorkItem".
-
-
-
-
+ This command creates a new user on the virtual machine named VM01 in the pool named MyPool01. The user name is TestUser, the password is Password1234!, the account expiry time is in seven days, and the account is created with administrator privileges.
+
+
-
+
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
+ Example 2: Create a new user on a virtual machine providing a password
- C:\PS>
+
+
- $stream = New-Object System.IO.MemoryStream; Get-AzureBatchTaskFileContent "myWorkItem" "job-0000000001" "myTask" "stdout.txt" -DestinationStream $stream -BatchContext $context
+ PS C:\>Get-AzureBatchVM "MyPool01" -VMName "VM01" -BatchContext $Context | New-AzureBatchVMUser -Name "TestUser" -Password "Password1234!" -BatchContext $Context
- Description
- -----------
- Downloads the task file named "stdout.txt" from task "myTask" under job "job-0000000001" under workitem "myWorkItem". The file contents are copied to the user supplied Stream.
-
-
-
-
+ This command creates a new user on the VM01 virtual machine in the pool named MyPool01. The user name is TestUser, the user password is Password1234!.
+
+
-
+
-
-
-
+ Remove-AzureBatchVMUser
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Azure Batch Cmdlets
+
-
-
-
-
- New-AzureBatchPool
-
+
+
+ New-AzureBatchWorkItem
+
+ Creates a new work item in the Azure batch service under the specified account.
+
+
+
+
+ New
+ AzureBatchWorkItem
+
+
- Creates a new pool in the Azure Batch service under the specified account.
+ The New-AzureBatchWorkItem cmdlet creates a new work item in the Azure batch service under the account specified by the BatchAccountContext parameter.
-
-
-
- New
- AzureBatchPool
-
-
-
- Creates a new pool in the Azure Batch service under the account specified by the BatchContext parameter.
-
-
-
-
- New-AzureBatchPool
-
- Name
-
- The name of the pool to create.
-
- string
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
- CertificateReferences
-
- Certificates associated with the pool. The Batch service installs the referenced certificates on each VM of the pool.
-
- PSCertificateReference[]
-
-
- CommunicationEnabled
-
- Set up the pool for direct communication between dedicated VMs.
-
-
-
- MaxTasksPerVM
-
- The maximum number of tasks that can run on a single VM.
-
- int
-
-
- Metadata
-
- Metadata to add to the new pool. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
-
- IDictionary
-
-
- OSFamily
-
- The OS family of the VMs in the pool. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
-
- string
-
-
- ResizeTimeout
-
- The timeout for allocating VMs to the pool.
-
- TimeSpan
-
-
- SchedulingPolicy
-
- The scheduling policy (such as the TVMFillType).
-
- PSSchedulingPolicy
-
-
- StartTask
-
- The start task specification for the pool. The start task is run when a VM joins the pool, or when the VM is rebooted or reimaged.
-
- PSStartTask
-
-
- TargetDedicated
-
- The target number of VMs to allocate to the pool.
-
- int
-
-
- TargetOSVersion
-
- The target OS version of the VMs in the pool. Use "*" for the latest OS version for the specified family. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
-
- string
-
-
- VMSize
-
- The size of the VMs in the pool. For more information on VM sizes, see https://msdn.microsoft.com/en-us/library/dn197896.aspx
-
- string
-
-
-
- New-AzureBatchPool
-
- Name
-
- The name of the pool to create.
-
- string
-
-
+
+
+ New-AzureBatchWorkItem
+
+ Name
+
+ Specifies the name of the work item to create.
+
+ String
+
+
+ JobExecutionEnvironment
+
+ Specifies the job execution environment to use when creating the work item.
+
+ PSJobExecutionEnvironment
+
+
+ JobSpecification
+
+ Specifies the job specification to use when creating the work item.
+
+ PSJobSpecification
+
+
+ Metadata
+
+ Specifies metadata to add to the new work item. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
+
+ IDictionary
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+
+ Schedule
+
+ Specifies the schedule to use when the work item is created.
+
+ PSWorkItemSchedule
+
+
+ BatchContext
+
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
-
- AutoScaleFormula
-
- The formula for automatically scaling the pool. For more information on autoscale formulas, see https://msdn.microsoft.com/en-us/library/azure/dn820182.aspx
-
- string
-
-
- CertificateReferences
-
- Certificates associated with the pool. The Batch service installs the referenced certificates on each VM of the pool.
-
- PSCertificateReference[]
-
-
- CommunicationEnabled
-
- Set up the pool for direct communication between dedicated VMs.
-
-
-
- MaxTasksPerVM
-
- The maximum number of tasks that can run on a single VM.
-
- int
-
-
- Metadata
-
- Metadata to add to the new pool. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
-
- IDictionary
-
-
- OSFamily
-
- The OS family of the VMs in the pool. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
-
- string
-
-
- SchedulingPolicy
-
- The scheduling policy (such as the TVMFillType).
-
- PSSchedulingPolicy
-
-
- StartTask
-
- The start task specification for the pool. The start task is run when a VM joins the pool, or when the VM is rebooted or reimaged.
-
- PSStartTask
-
-
- TargetOSVersion
-
- The target OS version of the VMs in the pool. Use "*" for the latest OS version for the specified family. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
-
- string
-
-
- VMSize
-
- The size of the VMs in the pool. For more information on VM sizes, see https://msdn.microsoft.com/en-us/library/dn197896.aspx
-
- string
-
-
-
-
-
-
- AutoScaleFormula
-
- The formula for automatically scaling the pool. For more information on autoscale formulas, see https://msdn.microsoft.com/en-us/library/azure/dn820182.aspx
-
-
- string
-
- string
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- CertificateReferences
-
- Certificates associated with the pool. The Batch service installs the referenced certificates on each VM of the pool.
-
-
- PSCertificateReference[]
-
- PSCertificateReference[]
-
-
-
-
-
- CommunicationEnabled
-
- Set up the pool for direct communication between dedicated VMs.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- MaxTasksPerVM
-
- The maximum number of tasks that can run on a single VM.
-
-
- int
-
- int
-
-
-
-
-
- Metadata
-
- Metadata to add to the new pool. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
-
-
- IDictionary
-
- IDictionary
-
-
-
-
-
- Name
-
- The name of the pool to create.
-
-
- string
-
- string
-
-
-
-
-
- OSFamily
-
- The OS family of the VMs in the pool. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
-
-
- string
-
- string
-
-
-
-
-
- ResizeTimeout
-
- The timeout for allocating VMs to the pool.
-
-
- TimeSpan
-
- TimeSpan
-
-
-
-
-
- SchedulingPolicy
-
- The scheduling policy (such as the TVMFillType).
-
-
- PSSchedulingPolicy
-
- PSSchedulingPolicy
-
-
-
-
-
- StartTask
-
- The start task specification for the pool. The start task is run when a VM joins the pool, or when the VM is rebooted or reimaged.
-
-
- PSStartTask
-
- PSStartTask
-
-
-
-
-
- TargetDedicated
-
- The target number of VMs to allocate to the pool.
-
-
- int
-
- int
-
-
-
-
-
- TargetOSVersion
-
- The target OS version of the VMs in the pool. Use "*" for the latest OS version for the specified family. You can learn more about OS families and versions at http://azure.microsoft.com/en-us/documentation/articles/cloud-services-guestos-update-matrix/
-
-
- string
-
- string
-
-
-
-
-
- VMSize
-
- The size of the VMs in the pool. For more information on VM sizes, see https://msdn.microsoft.com/en-us/library/dn197896.aspx
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- New-AzureBatchPool -Name "myPool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -TargetDedicated 3 -BatchContext $context
-
-
- Description
- -----------
- Creates a new pool named "myPool" using the TargetDedicated parameter set. The target allocation is 3 small VMs with the latest OS version of family 4.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- New-AzureBatchPool -Name "autoScalePool" -VMSize "small" -OSFamily "4" -TargetOSVersion "*" -AutoScaleFormula '$TargetDedicated=2;' -BatchContext $context
-
-
- Description
- -----------
- Creates a new pool named "autoScalePool" using the AutoScale parameter set. The pool will use small VMs with the latest OS version of family 4, and the target number of VMs will be determined by the autoscale formula.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Get-AzureBatchPool
-
-
- Gets Azure Batch pools under the specified Batch account.
-
-
-
-
- Get
- AzureBatchPool
-
-
-
- Gets the Azure Batch pools under the Batch account specified with the BatchContext parameter. You can use the Name parameter to get a single pool, or you can use the Filter parameter to get the pools that match an OData filter.
-
-
-
-
- Get-AzureBatchPool
-
- BatchContext
+
+ BatchAccountContext
+
+
+ none
+
+
+ JobExecutionEnvironment
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the job execution environment to use when creating the work item.
- BatchAccountContext
+ PSJobExecutionEnvironment
+
+ PSJobExecutionEnvironment
+
+
+ none
-
- Filter
+
+ JobSpecification
- The OData filter clause to use when querying for pools. If no filter is specified, then all pools under the Batch account specified with the BatchContext parameter will be returned.
+ Specifies the job specification to use when creating the work item.
- string
+ PSJobSpecification
+
+ PSJobSpecification
+
+
+ none
-
- MaxCount
+
+ Metadata
- The maximum number of pools to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies metadata to add to the new work item. For each key/value pair, set the key to the metadata name, and the value to the metadata value.
- int
+ IDictionary
+
+ IDictionary
+
+
+ none
-
-
- Get-AzureBatchPool
-
+
Name
- The name of the pool to retrieve. Wildcards are not permitted.
+ Specifies the name of the work item to create.
- string
+ String
+
+ String
+
+
+ none
-
- BatchContext
+
+ Profile
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- BatchAccountContext
+ AzureProfile
+
+ AzureProfile
+
+
+ none
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Filter
-
- The OData filter clause to use when querying for pools. If no filter is specified, then all pools under the Batch account specified with the BatchContext parameter will be returned.
-
-
- string
-
- string
-
-
-
-
-
- MaxCount
-
- The maximum number of pools to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
-
- int
-
- int
-
-
-
-
-
- Name
-
- The name of the pool to retrieve. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PSCloudPool
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchPool -Name "myPool" -BatchContext $context
-
- AllocationState : Resizing
- AllocationStateTransitionTime : 3/24/2015 10:02:46 PM
- AutoScaleFormula :
- AutoScaleRun :
- CertificateReferences :
- Communication : False
- CreationTime : 3/24/2015 10:02:46 PM
- CurrentDedicated : 0
- CurrentOSVersion : *
- AutoScaleEnabled : False
- LastModified : 3/24/2015 10:02:46 PM
- MaxTasksPerVM : 1
- Metadata :
- Name : myPool
- OSFamily : 4
- ResizeError :
- ResizeTimeout : 00:05:00
- SchedulingPolicy : Microsoft.Azure.Commands.Batch.Models.PSSchedulingPolicy
- StartTask :
- State : Active
- StateTransitionTime : 3/24/2015 10:02:46 PM
- Statistics :
- TargetDedicated : 3
- TargetOSVersion : *
- VMSize : small
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool
-
-
- Description
- -----------
- Gets the pool named "myPool".
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchPool -Filter "startswith(name,'my')" -BatchContext $context
-
- AllocationState : Steady
- AllocationStateTransitionTime : 3/24/2015 10:04:55 PM
- AutoScaleFormula :
- AutoScaleRun :
- CertificateReferences :
- Communication : False
- CreationTime : 3/24/2015 10:02:46 PM
- CurrentDedicated : 3
- CurrentOSVersion : *
- AutoScaleEnabled : False
- LastModified : 3/24/2015 10:02:46 PM
- MaxTasksPerVM : 1
- Metadata :
- Name : myPool
- OSFamily : 4
- ResizeError :
- ResizeTimeout : 00:05:00
- SchedulingPolicy : Microsoft.Azure.Commands.Batch.Models.PSSchedulingPolicy
- StartTask :
- State : Active
- StateTransitionTime : 3/24/2015 10:02:46 PM
- Statistics :
- TargetDedicated : 3
- TargetOSVersion : *
- VMSize : small
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool
-
- AllocationState : Resizing
- AllocationStateTransitionTime : 3/24/2015 10:04:55 PM
- AutoScaleFormula :
- AutoScaleRun :
- CertificateReferences :
- Communication : False
- CreationTime : 3/24/2015 10:04:55 PM
- CurrentDedicated : 0
- CurrentOSVersion : *
- AutoScaleEnabled : False
- LastModified : 3/24/2015 10:04:55 PM
- MaxTasksPerVM : 1
- Metadata :
- Name : myPool2
- OSFamily : 4
- ResizeError :
- ResizeTimeout : 00:05:00
- SchedulingPolicy : Microsoft.Azure.Commands.Batch.Models.PSSchedulingPolicy
- StartTask :
- State : Active
- StateTransitionTime : 3/24/2015 10:04:55 PM
- Statistics :
- TargetDedicated : 3
- TargetOSVersion : *
- VMSize : small
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool2
-
-
- Description
- -----------
- Gets the pools whose names start with "my" by using the Filter parameter.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Remove-AzureBatchPool
-
-
- Deletes the specified Azure Batch pool.
-
-
-
-
- Remove
- AzureBatchPool
-
-
-
- Deletes the specified Azure Batch pool. You will be prompted for confirmation unless you use the Force parameter.
-
-
-
-
- Remove-AzureBatchPool
-
- Name
+
+ Schedule
- The name of the pool to delete. Wildcards are not permitted.
+ Specifies the schedule to use when the work item is created.
- string
+ PSWorkItemSchedule
+
+ PSWorkItemSchedule
+
+
+ none
-
- BatchContext
+
+
+
+
+
+
+
+
+
+
+
+
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+
- BatchAccountContext
-
-
- Force
+
+
+
+
+
+
+
+
+
+
+
+
+
- If this parameter is not present, then you will be prompted for confirmation before the pool is deleted. Use this parameter to delete the pool without being asked for confirmation.
+
+
-
-
-
-
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Force
-
- If this parameter is not present, then you will be prompted for confirmation before the pool is deleted. Use this parameter to delete the pool without being asked for confirmation.
-
-
- SwitchParameter
-
- SwitchParameter
-
-
-
-
-
- Name
-
- The name of the pool to delete. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Example 1: Create a new work item using a job execution environment
+
+
+
+
+
+ PS C:\>$Environment = New-Object Microsoft.Azure.Commands.Batch.Models.PSJobExecutionEnvironment;
+ $Environment.PoolName = "MyPool";
+ New-AzureBatchWorkItem -Name "MyWorkItem" -JobExecutionEnvironment $Environment -BatchContext $Context
+
+
+ This command creates a PSJobExecutionEnvironment object that specifies the pool named MyPool. Next, the command creates a new work item named MyWorkItem that uses this job execution environment.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchWorkItem
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Remove-AzureBatchPool -Name "myPool" -BatchContext $context
-
-
- Description
- -----------
- Deletes the pool named "myPool". The user is prompted for confirmation before the delete operation takes place.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchPool -BatchContext $context | Remove-AzureBatchPool -Force -BatchContext $context
-
-
- Description
- -----------
- Deletes all pools. Since the Force parameter is present, the confirmation prompt is suppressed.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+ Remove-AzureBatchWorkItem
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+
+
-
- Get-AzureBatchVM
-
+ Remove-AzureBatchAccount
- Gets Azure Batch vms under the specified pool.
+ Removes the specified Azure batch account.
-
+
- Get
- AzureBatchVM
-
+ Remove
+ AzureBatchAccount
+
- Gets the Azure Batch vms under the pool specified by either the PoolName or Pool parameters. You can use the Name parameter to get a single vm, or you can use the Filter parameter to get the vms that match an OData filter.
+ The Remove-AzureBatchAccount cmdlet removes the specified batch account. You will be prompted for confirmation unless you use the Force parameter.
-
- Get-AzureBatchVM
-
- Filter
+ Remove-AzureBatchAccount
+
+ AccountName
- The OData filter clause to use when querying for vms. If no filter is specified, then all vms under the pool specified with either the PoolName or the Pool parameter will be returned.
+ Specifies the name of the batch account to remove.
- string
+ String
-
- PoolName
+
+ ResourceGroupName
- The name of the pool which contains the vms.
+ Specifies the resource group of the account to remove.
- string
+ String
-
- BatchContext
+
+ Force
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Forces the command to run without asking for user confirmation.
- BatchAccountContext
-
- MaxCount
+
+ Profile
- The maximum number of vms to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- int
+ AzureProfile
+
+
+
+ AccountName
+
+ Specifies the name of the batch account to remove.
+
+ String
+
+ String
+
+
+ none
+
+
+ Force
+
+ Forces the command to run without asking for user confirmation.
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+ none
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
+
+ AzureProfile
+
+ AzureProfile
+
+
+ none
+
+
+ ResourceGroupName
+
+ Specifies the resource group of the account to remove.
+
+ String
+
+ String
+
+
+ none
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Example 1: Remove a batch account by name
+
+
+
+
+
+ PS C:\>Remove-AzureBatchAccount -AccountName "cmdletexample"
+
+
+ This command removes the batch account named cmdletexample. The user is prompted for confirmation before the delete operation takes place.
+
+
+
+
+
+
+
+
+
+
+
+
+ Get-AzureBatchAccount
+
+
+
+ New-AzureBatchAccount
+
+
+
+ Set-AzureBatchAccount
+
+
+
+
+
+
+ Remove-AzureBatchJob
+
+ Removes the specified Azure batch job.
+
+
+
+
+ Remove
+ AzureBatchJob
+
+
+
+ The Remove-AzureBatchJob cmdlet removes the specified Azure batch job. You will be prompted for confirmation unless you use the Force parameter.
+
+
- Get-AzureBatchVM
-
- PoolName
+ Remove-AzureBatchJob
+
+ WorkItemName
- The name of the pool which contains the vms.
+ Specifies the name of the work item containing the job to remove.
- string
+ String
-
+
Name
- The name of the vm to retrieve from the pool. Wildcards are not permitted.
+ Specifies the name of the job to remove. Wildcards are not permitted.
+
+ String
+
+
+ Force
+
+ Forces the command to run without asking for user confirmation.
+
+
+
+ Profile
+
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- Get-AzureBatchVM
-
- Filter
+
+ Remove-AzureBatchJob
+
+ InputObject
- The OData filter clause to use when querying for vms. If no filter is specified, then all vms under the pool specified with either the PoolName or the Pool parameter will be returned.
+ Specifies the PSCloudJob object representing the job to remove. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
- string
+ PSCloudJob
-
- Pool
+
+ Force
- The PSCloudPool object representing the pool which contains the vms. Use the Get-AzureBatchPool cmdlet to get a PSCloudPool object.
+ Forces the command to run without asking for user confirmation.
- PSCloudPool
-
- BatchContext
+
+ Profile
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- BatchAccountContext
+ AzureProfile
-
- MaxCount
+
+ BatchContext
- The maximum number of vms to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
- int
+ BatchAccountContext
-
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
BatchAccountContext
-
+
-
+ none
-
- Filter
+
+ Force
- The OData filter clause to use when querying for vms. If no filter is specified, then all vms under the pool specified with either the PoolName or the Pool parameter will be returned.
-
+ Forces the command to run without asking for user confirmation.
- string
+ SwitchParameter
- string
-
+ SwitchParameter
+
-
+ none
-
- MaxCount
+
+ InputObject
- The maximum number of vms to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
+ Specifies the PSCloudJob object representing the job to remove. Use the Get-AzureBatchJob cmdlet to get a PSCloudJob object.
- int
+ PSCloudJob
- int
-
+ PSCloudJob
+
-
+ none
-
+
Name
- The name of the vm to retrieve from the pool. Wildcards are not permitted.
-
+ Specifies the name of the job to remove. Wildcards are not permitted.
- string
+ String
- string
-
+ String
+
-
+ none
-
- Pool
+
+ Profile
- The PSCloudPool object representing the pool which contains the vms. Use the Get-AzureBatchPool cmdlet to get a PSCloudPool object.
-
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- PSCloudPool
+ AzureProfile
- PSCloudPool
-
+ AzureProfile
+
-
+ none
-
- PoolName
+
+ WorkItemName
- The name of the pool which contains the vms.
-
+ Specifies the name of the work item containing the job to remove.
- string
+ String
- string
-
+ String
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -5550,476 +6293,186 @@
- PSVM
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchVM -PoolName "myPool" -Name "tvm-1900272697_1-20150330t205553z" -BatchContext $context
-
- Name : tvm-1900272697_1-20150330t205553z
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/tvm-1900272697_1-20150330t205553z
- State : Idle
- StateTransitionTime : 3/30/2015 8:59:59 PM
- LastBootTime : 3/30/2015 8:59:59 PM
- VMAllocationTime : 3/30/2015 8:55:53 PM
- IPAddress : 10.215.128.7
- AffinityId : TVM:tvm-1900272697_1-20150330t205553z
- VMSize : small
- TotalTasksRun : 0
- StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
- RecentTasks :
- StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
- CertificateReferences :
- VMErrors :
-
-
- Description
- -----------
- Gets the vm named "tvm-1900272697_1-20150330t205553z" from pool "myPool".
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
+ Example 1: Remove a batch job by name
- C:\PS>
+
+
- Get-AzureBatchVM -PoolName "myPool" -Filter "state eq 'idle'" -BatchContext $context
-
- Name : tvm-1900272697_1-20150330t205553z
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/tvm-1900272697_1-20150330t205553z
- State : Idle
- StateTransitionTime : 3/30/2015 8:59:59 PM
- LastBootTime : 3/30/2015 8:59:59 PM
- VMAllocationTime : 3/30/2015 8:55:53 PM
- IPAddress : 10.215.128.7
- AffinityId : TVM:tvm-1900272697_1-20150330t205553z
- VMSize : small
- TotalTasksRun : 0
- StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
- RecentTasks :
- StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
- CertificateReferences :
- VMErrors :
-
- Name : tvm-1900272697_2-20150330t205553z
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/tvm-1900272697_2-20150330t205553z
- State : Idle
- StateTransitionTime : 3/30/2015 9:00:26 PM
- LastBootTime : 3/30/2015 9:00:26 PM
- VMAllocationTime : 3/30/2015 8:55:53 PM
- IPAddress : 10.215.128.17
- AffinityId : TVM:tvm-1900272697_2-20150330t205553z
- VMSize : small
- TotalTasksRun : 0
- StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
- RecentTasks :
- StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
- CertificateReferences :
- VMErrors :
+ PS C:\>Remove-AzureBatchJob -WorkItemName "MyWorkItem" -Name "Job-000001" -BatchContext $Context
- Description
- -----------
- Gets the idle vms under pool "myPool".
-
-
-
-
+ This command removes the job named Job-000001 under the work item named MyWorkItem. The user is prompted for confirmation before the delete operation takes place.
+
+
-
+
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
+ Example 2: Remove a batch job by name without confirmation
- C:\PS>
+
+
- Get-AzureBatchPool -Name "myPool" -BatchContext $context | Get-AzureBatchVM -BatchContext $context
-
- Name : tvm-1900272697_1-20150330t205553z
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/tvm-1900272697_1-20150330t205553z
- State : Idle
- StateTransitionTime : 3/30/2015 8:59:59 PM
- LastBootTime : 3/30/2015 8:59:59 PM
- VMAllocationTime : 3/30/2015 8:55:53 PM
- IPAddress : 10.215.128.7
- AffinityId : TVM:tvm-1900272697_1-20150330t205553z
- VMSize : small
- TotalTasksRun : 0
- StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
- RecentTasks :
- StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
- CertificateReferences :
- VMErrors :
-
- Name : tvm-1900272697_2-20150330t205553z
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/tvm-1900272697_2-20150330t205553z
- State : Idle
- StateTransitionTime : 3/30/2015 9:00:26 PM
- LastBootTime : 3/30/2015 9:00:26 PM
- VMAllocationTime : 3/30/2015 8:55:53 PM
- IPAddress : 10.215.128.17
- AffinityId : TVM:tvm-1900272697_2-20150330t205553z
- VMSize : small
- TotalTasksRun : 0
- StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
- RecentTasks :
- StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
- CertificateReferences :
- VMErrors :
-
- Name : tvm-1900272697_3-20150330t205553z
- Url : https://cmdletexample.batch-test.windows-int.net/pools/myPool/tvms/tvm-1900272697_3-20150330t205553z
- State : Idle
- StateTransitionTime : 3/30/2015 8:59:50 PM
- LastBootTime : 3/30/2015 8:59:50 PM
- VMAllocationTime : 3/30/2015 8:55:53 PM
- IPAddress : 10.215.112.35
- AffinityId : TVM:tvm-1900272697_3-20150330t205553z
- VMSize : small
- TotalTasksRun : 0
- StartTaskInformation : Microsoft.Azure.Commands.Batch.Models.PSStartTaskInformation
- RecentTasks :
- StartTask : Microsoft.Azure.Commands.Batch.Models.PSStartTask
- CertificateReferences :
- VMErrors :
+ PS C:\>Get-AzureBatchJob -WorkItemName "MyWorkItem" -Name "Job-000002" -BatchContext $Context | Remove-AzureBatchJob -Force -BatchContext $Context
- Description
- -----------
- Gets all vms under pool "myPool".
-
-
-
-
+ This command removes the job named Job-000002 under the work item named MyWorkItem. Since the Force parameter is present, the confirmation prompt is suppressed.
+
+
-
+
-
-
-
+ Get-AzureBatchAccountKeys
+
+
+
+ Get-AzureBatchJob
+
-
+
-
- Get-AzureBatchVMFile
-
+ Remove-AzureBatchPool
- Gets the properties of the files associated with the specified Azure Batch vm.
+ Removes the specified Azure batch pool.
-
+
- Get
- AzureBatchVMFile
-
+ Remove
+ AzureBatchPool
+
- Gets the properties of the files associated with the Azure Batch vm specified by either the PoolName and VMName parameters or the VM parameter. You can use the Name parameter to get a single vm file, or you can use the Filter parameter to get the vm files that match an OData filter. You can use the Recursive parameter to perform a recursive list of all files of the vm.
+ The Remove-AzureBatchPool cmdlet removes the specified Azure batch pool. You will be prompted for confirmation unless you use the Force parameter.
-
- Get-AzureBatchVMFile
-
- Filter
-
- The OData filter clause to use when querying for vm files. If no filter is specified, then all vm files on the vm specified with either the PoolName and VMName parameters or the VM parameter will be returned.
-
- string
-
-
- PoolName
-
- The name of the pool which contains the vm.
-
- string
-
-
- VMName
-
- The name of the vm containing the files.
-
- string
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
- MaxCount
-
- The maximum number of vm files to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
- int
-
-
- Recursive
-
- If present, performs a recursive list of files of the vm. Otherwise, returns only the files at the vm directory root.
-
-
-
-
- Get-AzureBatchVMFile
-
- PoolName
-
- The name of the pool which contains the vm.
-
- string
-
-
+ Remove-AzureBatchPool
+
Name
- The name of the file to retrieve from the vm. Wildcards are not permitted.
-
- string
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
- Recursive
-
- If present, performs a recursive list of files of the vm. Otherwise, returns only the files at the vm directory root.
-
-
-
- VMName
-
- The name of the vm containing the files.
+ Specifies the name of the pool to remove. You cannot use wildcards.
- string
+ String
-
-
- Get-AzureBatchVMFile
-
- Filter
+
+ Force
- The OData filter clause to use when querying for vm files. If no filter is specified, then all vm files on the vm specified with either the PoolName and VMName parameters or the VM parameter will be returned.
+ Forces the command to run without asking for user confirmation.
- string
-
- VM
+
+ Profile
- The PSVM object representing the vm which contains the files. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- PSVM
+ AzureProfile
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- MaxCount
-
- The maximum number of vm files to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
- int
-
-
- Recursive
-
- If present, performs a recursive list of files of the vm. Otherwise, returns only the files at the vm directory root.
-
-
-
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
BatchAccountContext
-
-
-
-
-
- Filter
-
- The OData filter clause to use when querying for vm files. If no filter is specified, then all vm files on the vm specified with either the PoolName and VMName parameters or the VM parameter will be returned.
-
-
- string
-
- string
-
-
-
-
-
- MaxCount
-
- The maximum number of vm files to return. If a value of 0 or less is specified, then no upper limit will be used. If no value is specified, a default value of 1000 will be used.
-
-
- int
-
- int
-
-
-
-
-
- Name
-
- The name of the file to retrieve from the vm. Wildcards are not permitted.
-
-
- string
-
- string
-
-
-
-
-
- PoolName
-
- The name of the pool which contains the vm.
-
-
- string
-
- string
-
+
-
+ none
-
- Recursive
+
+ Force
- If present, performs a recursive list of files of the vm. Otherwise, returns only the files at the vm directory root.
-
+ Forces the command to run without asking for user confirmation.
SwitchParameter
SwitchParameter
-
+
-
+ none
-
- VM
+
+ Name
- The PSVM object representing the vm which contains the files. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
-
+ Specifies the name of the pool to remove. You cannot use wildcards.
- PSVM
+ String
- PSVM
-
+ String
+
-
+ none
-
- VMName
+
+ Profile
- The name of the vm containing the files.
-
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- string
+ AzureProfile
- string
-
+ AzureProfile
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -6027,421 +6480,274 @@
- PSVMFile
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchVMFile -PoolName "myPool" -VMName "tvm-1900272697_3-20150330t205553z" -Name "startup\stdout.txt" -BatchContext $context
-
- IsDirectory Name Properties Url
- ----------- ---- ---------- ---
- False startup\stdout.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
-
-
- Description
- -----------
- Gets the file named "startup\stdout.txt" from the vm named "tvm-1900272697_3-20150330t205553z" in the pool "myPool".
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
+ Example 1: Remove a batch pool by pool name
- C:\PS>
+
+
- Get-AzureBatchVMFile -PoolName "myPool" -VMName "tvm-1900272697_3-20150330t205553z" -Filter "startswith(name,'startup')" -Recursive -BatchContext $context
-
- IsDirectory Name Properties Url
- ----------- ---- ---------- ---
- True startup https://cmdletexample.batch-test.windows-in...
- False startup\ProcessEnv.cmd Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
- False startup\stderr.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
- False startup\stdout.txt Microsoft.Azure.Commands.Batch.Models.PSFile... https://cmdletexample.batch-test.windows-in...
- True startup\wd https://cmdletexample.batch-test.windows-in...
+ PS C:\>Remove-AzureBatchPool -Name "MyPool" -BatchContext $Context
- Description
- -----------
- Gets the files under the "startup" directory from the vm named "tvm-1900272697_3-20150330t205553z" in pool "myPool".
-
-
-
-
+ This command removes the pool named MyPool. The user is prompted for confirmation before the delete operation takes place.
+
+
-
+
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
+ Example 2: Remove all batch pools by force
- C:\PS>
+
+
- Get-AzureBatchVM "myPool" "tvm-1900272697_3-20150330t205553z" -BatchContext $context | Get-AzureBatchVMFile -BatchContext $context
-
- IsDirectory Name Properties Url
- ----------- ---- ---------- ---
- True shared https://cmdletexample.batch-test.windows-in...
- True startup https://cmdletexample.batch-test.windows-in...
- True workitems https://cmdletexample.batch-test.windows-in...
+ PS C:\>Get-AzureBatchPool -BatchContext $context | Remove-AzureBatchPool -Force -BatchContext $Context
- Description
- -----------
-
- Gets all the files at the root directory of the vm named "tvm-1900272697_3-20150330t205553z" in pool "myPool".
-
-
-
-
-
+ This command removes all batch pools. Since the Force parameter is present, the confirmation prompt is suppressed.
+
+
-
+
-
-
-
+ Get-AzureBatchPool
+
+
+
+ New-AzureBatchPool
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Azure Batch Cmdlets
+
-
+
-
- Get-AzureBatchVMFileContent
-
+ Remove-AzureBatchTask
- Downloads the specified vm file.
+ Removes the specified Azure batch task.
-
+
- Get
- AzureBatchVMFileContent
-
+ Remove
+ AzureBatchTask
+
- Downloads the specified vm file to the specified file location or to the user supplied stream.
+ The Remove-AzureBatchTask cmdlet removes the specified Azure batch task. You will be prompted for confirmation unless you use the Force parameter.
-
- Get-AzureBatchVMFileContent
-
- InputObject
-
- The PSVMFile object representing the file to download. Use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
-
- PSVMFile
-
-
- InputObject
+ Remove-AzureBatchTask
+
+ WorkItemName
- The PSVMFile object representing the file to download. Use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
+ Specifies the name of the work item containing the task to remove.
- PSVMFile
+ String
-
- BatchContext
+
+ JobName
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the name of the job containing the task to remove.
- BatchAccountContext
+ String
-
- DestinationPath
+
+ Name
- The file path where the vm file will be downloaded.
+ Specifies the name of the task to remove. Wildcards are not permitted.
- string
+ String
-
-
- Get-AzureBatchVMFileContent
-
- InputObject
+
+ Force
- The PSVMFile object representing the file to download. Use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
+ Forces the command to run without asking for user confirmation.
- PSVMFile
-
- InputObject
+
+ Profile
- The PSVMFile object representing the file to download. Use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- PSVMFile
+ AzureProfile
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- DestinationStream
-
- The Stream into which the vm file contents will be written. This stream will not be closed or rewound by this call.
-
- Stream
-
- Get-AzureBatchVMFileContent
-
- PoolName
-
- The name of the pool containing the vm.
-
- string
-
-
+ Remove-AzureBatchTask
+
InputObject
- The PSVMFile object representing the file to download. Use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
-
- PSVMFile
-
-
- VMName
-
- The name of the vm.
-
- string
-
-
- Name
-
- The name of the vm file to download. Wildcards are not permitted.
-
- string
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
- DestinationPath
-
- The file path where the vm file will be downloaded.
+ Specifies the PSCloudTask object representing the task to remove. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
- string
+ PSCloudTask
-
-
- Get-AzureBatchVMFileContent
-
- InputObject
+
+ Force
- The PSVMFile object representing the file to download. Use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
+ Forces the command to run without asking for user confirmation.
- PSVMFile
-
- VMName
+
+ Profile
- The name of the vm.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- DestinationStream
-
- The Stream into which the vm file contents will be written. This stream will not be closed or rewound by this call.
-
- Stream
-
-
- Name
-
- The name of the vm file to download. Wildcards are not permitted.
-
- string
-
-
- PoolName
-
- The name of the pool containing the vm.
-
- string
-
-
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
BatchAccountContext
-
+
-
+ none
-
- DestinationPath
+
+ Force
- The file path where the vm file will be downloaded.
-
+ Forces the command to run without asking for user confirmation.
- string
+ SwitchParameter
- string
-
+ SwitchParameter
+
-
+ none
-
- DestinationStream
+
+ InputObject
- The Stream into which the vm file contents will be written. This stream will not be closed or rewound by this call.
-
+ Specifies the PSCloudTask object representing the task to remove. Use the Get-AzureBatchTask cmdlet to get a PSCloudTask object.
- Stream
+ PSCloudTask
- Stream
-
+ PSCloudTask
+
-
+ none
-
- InputObject
+
+ JobName
- The PSVMFile object representing the file to download. Use the Get-AzureBatchVMFile cmdlet to get a PSVMFile object.
-
+ Specifies the name of the job containing the task to remove.
- PSVMFile
+ String
- PSVMFile
-
+ String
+
-
+ none
-
+
Name
- The name of the vm file to download. Wildcards are not permitted.
-
+ Specifies the name of the task to remove. Wildcards are not permitted.
- string
+ String
- string
-
+ String
+
-
+ none
-
- PoolName
+
+ Profile
- The name of the pool containing the vm.
-
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
- string
-
+ AzureProfile
+
-
+ none
-
- VMName
+
+ WorkItemName
- The name of the vm.
-
+ Specifies the name of the work item containing the task to remove.
- string
+ String
- string
-
+ String
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -6449,381 +6755,228 @@
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchVMFileContent -PoolName "myPool" -VMName "tvm-1900272697_1-20150330t205553z" -Name "startup\stdout.txt" -DestinationPath "E:\PowerShell\stdout.txt" -BatchContext $context
-
-
- Description
- -----------
- Downloads the "startup\stdout.txt" file to the "E:\PowerShell\stdout.txt" file path. The file is from the vm named "tvm-1900272697_1-20150330t205553z" in the pool named "myPool".
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
+ Example 1: Remove a batch task by name with user confirmation
- C:\PS>
+
+
- Get-AzureBatchVMFile -PoolName "myPool" -VMName "tvm-1900272697_1-20150330t205553z" -Name "startup\stdout.txt" -BatchContext $context | Get-AzureBatchVMFileContent -DestinationPath "E:\PowerShell\stdout.txt" -BatchContext $context
+ PS C:\>Remove-AzureBatchTask -WorkItemName "MyWorkItem" -JobName "Job-000001" -Name "MyTask" -BatchContext $Context
- Description
- -----------
- Downloads the "startup\stdout.txt" file to the "E:\PowerShell\stdout.txt" file path. The file is from the vm named "tvm-1900272697_1-20150330t205553z" in the pool named "myPool".
-
-
-
-
+ This command removes the task named MyTask in job Job-000001 under work item MyWorkItem. The user is prompted for confirmation before the delete operation takes place.
+
+
-
+
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
+ Example 2: Remove a batch task by name without user confirmation
- C:\PS>
+
+
- $stream = New-Object System.IO.MemoryStream; Get-AzureBatchVMFileContent "myPool" "tvm-1900272697_1-20150330t205553z" "startup\stdout.txt" -DestinationStream $stream -BatchContext $context
+ PS C:\>Get-AzureBatchTask "MyWorkItem" "Job-000001" "MyTask2" -BatchContext $Context | Remove-AzureBatchTask -Force -BatchContext $Context
- Description
- -----------
- Downloads vm file "startup\stdout.txt" from the vm named "tvm-1900272697_1-20150330t205553z" in the pool named "myPool". The file contents are copied to the user supplied Stream.
-
-
-
-
+ This command removes the task named MyTask2 in job Job-000001 under work item MyWorkItem. Since the Force parameter is present, the confirmation prompt is suppressed.
+
+
-
+
-
-
-
+ Get-AzureBatchTask
+
+
+
+ New-AzureBatchTask
+
+
+
+ Get-AzureBatchAccountKeys
+
-
-
+
-
- Get-AzureBatchRDPFile
-
+ Remove-AzureBatchVMUser
- Downloads an RDP file pointing to the specified vm.
+ Deletes the specified user account from the specified Azure batch virtual machine.
-
+
- Get
- AzureBatchRDPFile
-
+ Remove
+ AzureBatchVMUser
+
- Downloads an RDP file pointing to the specified vm to the specified file location or to the user supplied stream.
+ The Remove-AzureBatchVMUser cmdlet deletes the specified user account from the specified Azure batch virtual machine.
-
- Get-AzureBatchRDPFile
-
- VM
-
- The PSVM object representing the vm to which the RDP file will point. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
-
- PSVM
-
-
- VM
-
- The PSVM object representing the vm to which the RDP file will point. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
-
- PSVM
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
- DestinationPath
-
- The file path where the RDP file will be downloaded.
-
- string
-
-
-
- Get-AzureBatchRDPFile
-
- VM
-
- The PSVM object representing the vm to which the RDP file will point. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
-
- PSVM
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
- DestinationStream
-
- The Stream into which the RDP file data will be written. This stream will not be closed or rewound by this call.
-
- Stream
-
-
- VM
-
- The PSVM object representing the vm to which the RDP file will point. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
-
- PSVM
-
-
-
- Get-AzureBatchRDPFile
-
+ Remove-AzureBatchVMUser
+
PoolName
- The name of the pool containing the vm.
-
- string
-
-
- VM
-
- The PSVM object representing the vm to which the RDP file will point. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
+ Specifies the name of the pool that contains the virtual machine.
- PSVM
+ String
-
+
VMName
-
- The name of the vm to which the RDP file will point.
-
+ Specifies the name of the virtual machine to remove the user.
- string
+ String
-
- BatchContext
+
+ Name
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the name of the user to delete. You cannot specify wildcards.
- BatchAccountContext
+ String
-
- DestinationPath
+
+ Force
- The file path where the RDP file will be downloaded.
+ Forces the command to run without asking for user confirmation.
- string
-
-
- Get-AzureBatchRDPFile
-
- VM
+
+ Profile
- The PSVM object representing the vm to which the RDP file will point. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- PSVM
+ AzureProfile
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- DestinationStream
-
- The Stream into which the RDP file data will be written. This stream will not be closed or rewound by this call.
-
- Stream
-
-
- PoolName
-
- The name of the pool containing the vm.
-
- string
-
-
- VMName
-
-
- The name of the vm to which the RDP file will point.
-
-
- string
-
-
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. You can use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
BatchAccountContext
-
+
-
+ none
-
- DestinationPath
+
+ Force
- The file path where the RDP file will be downloaded.
-
+ Forces the command to run without asking for user confirmation.
- string
+ SwitchParameter
- string
-
+ SwitchParameter
+
-
+ none
-
- DestinationStream
+
+ Name
- The Stream into which the RDP file data will be written. This stream will not be closed or rewound by this call.
-
+ Specifies the name of the user to delete. You cannot specify wildcards.
- Stream
+ String
- Stream
-
+ String
+
-
+ none
-
+
PoolName
- The name of the pool containing the vm.
-
+ Specifies the name of the pool that contains the virtual machine.
- string
+ String
- string
-
+ String
+
-
+ none
-
- VM
+
+ Profile
- The PSVM object representing the vm to which the RDP file will point. Use the Get-AzureBatchVM cmdlet to get a PSVM object.
-
+ Specifies the Azure profile in which this cmdlet operates. If you do not specify a profile, this cmdlet uses the default profile.
- PSVM
+ AzureProfile
- PSVM
-
+ AzureProfile
+
-
+ none
-
+
VMName
-
- The name of the vm to which the RDP file will point.
-
-
+ Specifies the name of the virtual machine to remove the user.
- string
+ String
- string
-
+ String
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -6831,371 +6984,170 @@
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchRDPFile -PoolName "myPool" -VMName "tvm-1900272697_1-20150330t205553z" -DestinationPath "E:\PowerShell\vm.rdp" -BatchContext $context
-
-
- Description
- -----------
- Downloads an RDP file to the vm named "tvm-1900272697_1-20150330t205553z" in the pool named "myPool". The file is downloaded to the "E:\PowerShell\vm.rdp" file path.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
-
- C:\PS>
-
-
- Get-AzureBatchVM -PoolName "myPool" -Name "tvm-1900272697_1-20150330t205553z" -BatchContext $context | Get-AzureBatchRDPFile -DestinationPath "E:\PowerShell\vm.rdp" -BatchContext $context
-
-
- Description
- -----------
- Downloads an RDP file to the vm named "tvm-1900272697_1-20150330t205553z" in the pool named "myPool". The file is downloaded to the "E:\PowerShell\vm.rdp" file path.
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 3 --------------------------
-
+ Example 1: Delete a user from a virtual machine and suppress confirmation
- C:\PS>
+
+
- $stream = New-Object System.IO.MemoryStream; Get-AzureBatchRDPFile "myPool" "tvm-1900272697_1-20150330t205553z" -DestinationStream $stream -BatchContext $context
+ PS C:\>Remove-AzureBatchVMUser -PoolName "MyPool01" -VMName "VM01" -Name "MyUser" -Force -BatchContext $Context
- Description
- -----------
- Downloads an RDP file to the vm named "tvm-1900272697_1-20150330t205553z" in the pool named "myPool". The file contents are copied to the user supplied Stream.
-
-
-
-
+ This command deletes the user named MyUser from virtual machine VM01 in pool MyPool01. This command also suppresses the confirmation prompt since the Force parameter is present.
+
+
-
+
-
-
-
+ New-AzureBatchVMUser
+
+
+
+ Get-AzureBatchAccountKeys
+
+
+
+ Azure Batch Cmdlets
+
-
+
-
- New-AzureBatchVMUser
-
+ Remove-AzureBatchWorkItem
- Creates a new user on the specified Azure Batch vm.
+ Removes the specified Azure batch work item.
-
+
- New
- AzureBatchVMUser
-
+ Remove
+ AzureBatchWorkItem
+
- Creates a new user on the specified Azure Batch vm.
+ The Remove-AzureBatchWorkItem cmdlet removes the specified Azure batch work item. You will be prompted for confirmation unless you use the Force parameter.
-
- New-AzureBatchVMUser
-
- PoolName
-
- The name of the pool containing the vm to create the user on.
-
- string
-
-
- VMName
-
- The name of the vm to create the user on.
-
- string
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
- BatchAccountContext
-
-
+ Remove-AzureBatchWorkItem
+
Name
- The name of the local windows account created.
-
- string
-
-
- ExpiryTime
-
- The expiry time.
-
- DateTime
-
-
- IsAdmin
-
- If present, the user is created with administrator privilege.
+ Specifies the name of the work item to remove. Wildcards are not permitted.
+ String
-
- Password
+
+ Force
- The account password.
+ Forces the command to run without asking for user confirmation.
- string
-
- VM
+
+ Profile
- The PSVM object representing the vm to create the user on.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- PSVM
+ AzureProfile
-
-
- New-AzureBatchVMUser
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
-
- Name
-
- The name of the local windows account created.
-
- string
-
-
- ExpiryTime
-
- The expiry time.
-
- DateTime
-
-
- IsAdmin
-
- If present, the user is created with administrator privilege.
-
-
-
- Password
-
- The account password.
-
- string
-
-
- VM
-
- The PSVM object representing the vm to create the user on.
-
- PSVM
-
-
- VM
-
- The PSVM object representing the vm to create the user on.
-
- PSVM
-
-
-
+
BatchContext
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
+ Specifies the BatchAccountContext instance to use when interacting with the batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
BatchAccountContext
BatchAccountContext
-
-
-
-
-
- ExpiryTime
-
- The expiry time.
-
-
- DateTime
-
- DateTime
-
+
-
+ none
-
- IsAdmin
+
+ Force
- If present, the user is created with administrator privilege.
-
+ Forces the command to run without asking for user confirmation.
SwitchParameter
SwitchParameter
-
+
-
+ none
-
+
Name
- The name of the local windows account created.
-
-
- string
-
- string
-
-
-
-
-
- Password
-
- The account password.
-
-
- string
-
- string
-
-
-
-
-
- PoolName
-
- The name of the pool containing the vm to create the user on.
-
-
- string
-
- string
-
-
-
-
-
- VM
-
- The PSVM object representing the vm to create the user on.
-
+ Specifies the name of the work item to remove. Wildcards are not permitted.
- PSVM
+ String
- PSVM
-
+ String
+
-
+ none
-
- VMName
+
+ Profile
- The name of the vm to create the user on.
-
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
- string
-
+ AzureProfile
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -7203,227 +7155,191 @@
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
+ Example 1: Remove a work item by name with user confirmation
- C:\PS>
+
+
- New-AzureBatchVMUser -PoolName "myPool" -VMName "tvm-1900272697_1-20150330t205553z" -Name "testUser" -Password "Password1234!" -ExpiryTime ([DateTime]::Now.AddDays(7)) -IsAdmin -BatchContext $context
+ PS C:\>Remove-AzureBatchWorkItem "MyWorkItem" -BatchContext $Context
- Description
- -----------
- Creates a new user on the "tvm-1900272697_1-20150330t205553z" vm in the pool named "myPool". The user name is "testUser", the password is "Password1234!", the account expiry time is 7 days from now, and the account is created with administrator privilege.
-
-
-
-
+ This command removes the work item named MyWorkItem. The user is prompted for confirmation before the delete operation takes place.
+
+
-
+
-
-
- -------------------------- EXAMPLE 2 --------------------------
-
+ Example 2: Remove a work item by name without user confirmation
- C:\PS>
+
+
- Get-AzureBatchVM "myPool" "tvm-1900272697_1-20150330t205553z" -BatchContext $context | New-AzureBatchVMUser -Name "testUser" -Password "Password1234!" -BatchContext $context
+ PS C:\>Get-AzureBatchWorkItem -Name "MyWorkItem2" -BatchContext $Context | Remove-AzureBatchWorkItem -Force -BatchContext $Context
- Description
- -----------
- Creates a new user on the "tvm-1900272697_1-20150330t205553z" vm in the pool named "myPool". The user name is "testUser", the password is "Password1234!".
-
-
-
-
+ This command removes the work item named MyWorkItem2. Because the Force parameter is present, the confirmation prompt is suppressed.
+
+
-
+
-
-
-
+ Get-AzureBatchWorkItem
+
+
+
+ New-AzureBatchWorkItem
+
+
+
+ Get-AzureBatchAccountKeys
+
-
+
-
- Remove-AzureBatchVMUser
-
+ Set-AzureBatchAccount
- Deletes the specified user account from the specified Azure Batch vm.
+ Updates the specified Azure batch account.
-
+
- Remove
- AzureBatchVMUser
-
+ Set
+ AzureBatchAccount
+
- Deletes the specified user account from the specified Azure Batch vm.
+ The Set-AzureBatchAccount cmdlet updates the specified batch account. Currently, only tags can be updated.
-
- Remove-AzureBatchVMUser
-
- PoolName
+ Set-AzureBatchAccount
+
+ AccountName
- The name of the pool that contains the vm.
+ Specifies the name of the existing batch account to update.
- string
+ String
-
- Name
+
+ Tag
- The name of the user to delete. Wildcards are not permitted.
+ Specifies tags in an array of hash tables to set on the account.
- string
+ Hashtable[]
-
- BatchContext
+
+ Profile
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- BatchAccountContext
+ AzureProfile
-
- Force
+
+ ResourceGroupName
- If this parameter is not present, then you will be prompted for confirmation before the user is deleted. Use this parameter to delete the user without being asked for confirmation.
+ Specifies the resource group of the account being updated.
+ String
-
-
- BatchContext
-
- The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
-
-
- BatchAccountContext
-
- BatchAccountContext
-
-
-
-
-
- Force
+
+ AccountName
- If this parameter is not present, then you will be prompted for confirmation before the user is deleted. Use this parameter to delete the user without being asked for confirmation.
-
+ Specifies the name of the existing batch account to update.
- SwitchParameter
+ String
- SwitchParameter
-
+ String
+
-
+ none
-
- Name
+
+ Profile
- The name of the user to delete. Wildcards are not permitted.
-
+ Specifies the Azure profile for the cmdlet to read. If you do not specify a profile, the cmdlet reads from the default profile.
- string
+ AzureProfile
- string
-
+ AzureProfile
+
-
+ none
-
- PoolName
+
+ ResourceGroupName
- The name of the pool that contains the vm.
-
+ Specifies the resource group of the account being updated.
- string
+ String
- string
-
+ String
+
-
+ none
-
- VMName
+
+ Tag
- The name of the vm that contains the user.
-
+ Specifies tags in an array of hash tables to set on the account.
- string
+ Hashtable[]
- string
-
+ Hashtable[]
+
-
+ none
-
-
-
-
+
+
+
+
+
+
+
-
-
@@ -7431,68 +7347,472 @@
-
-
-
+ BatchAccountContext
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
+ Example 1: Update the tags on an existing batch account
- C:\PS>
+
+
- Remove-AzureBatchVMUser -PoolName "myPool" -VMName "tvm-1900272697_1-20150330t205553z" -Name "myUser" -Force -BatchContext $context
+ PS C:\>Set-AzureBatchAccount -AccountName "cmdletexample" -Tag @(@{Name = "tag1";Value = "value1"},@{Name = "tag2";Value = "value2"})
+
+
+ AccountName Location ResourceGroupName Tags TaskTenantUrl
+ ----------- -------- ----------------- ---- -------------
+ cmdletexample westus cmdletexamplerg {System.Collection https://batch.core.windows.net
+ s.Hashtable, Syste
+ m.Collections.Hash
+ table}
- Description
- -----------
- Deletes the user named "myUser" from vm "tvm-1900272697_1-20150330t205553z" in pool "myPool". Since the Force parameter is present, the confirmation prompt is suppressed.
-
-
-
-
+ This command updates the tags on the cmdletexample account.
+
+
-
+
-
-
-
+ Get-AzureBatchAccount
+
+
+
+ New-AzureBatchAccount
+
+
+
+ Remove-AzureBatchAccount
+
-
\ No newline at end of file
+
+
+
+ Start-AzureBatchPoolResize
+
+
+ Begins a pool resize operation.
+
+
+
+
+ Start
+ AzureBatchPoolResize
+
+
+
+ Begins a resize operation on the specified pool.
+
+
+
+
+ Start-AzureBatchPoolResize
+
+ Name
+
+ The name of the pool to resize.
+
+ string
+
+
+ BatchContext
+
+ The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+ DeallocationOption
+
+ The deallocation option associated with this resize.
+
+ TVMDeallocationOption
+
+
+ ResizeTimeout
+
+ The resize timeout. If the pool has not reached the target after this time the resize is automatically stopped.
+
+ TimeSpan
+
+
+ TargetDedicated
+
+ The number of target dedicated vms.
+
+ int
+
+
+
+
+
+
+ BatchContext
+
+ The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+
+ BatchAccountContext
+
+ BatchAccountContext
+
+
+
+
+
+ DeallocationOption
+
+ The deallocation option associated with this resize.
+
+
+ TVMDeallocationOption
+
+ TVMDeallocationOption
+
+
+
+
+
+ Name
+
+ The name of the pool to resize.
+
+
+ string
+
+ string
+
+
+
+
+
+ ResizeTimeout
+
+ The resize timeout. If the pool has not reached the target after this time the resize is automatically stopped.
+
+
+ TimeSpan
+
+ TimeSpan
+
+
+
+
+
+ TargetDedicated
+
+ The number of target dedicated vms.
+
+
+ int
+
+ int
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
+
+ Start-AzureBatchPoolResize -Name "testPool" -TargetDedicated 10 -BatchContext $context
+
+ Description
+ -----------
+ Starts a resize operation on pool "testPool" with a new target of 10 dedicated vms.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 2 --------------------------
+
+
+ C:\PS>
+
+
+ Get-AzureBatchPool -Name "testPool" -BatchContext $context | Start-AzureBatchPoolResize -TargetDedicated 50 -ResizeTimeout ([TimeSpan]::FromHours(1)) -DeallocationOption ([Microsoft.Azure.Batch.Common.TVMDeallocationOption]::Terminate) -BatchContext $context
+
+ Description
+ -----------
+ Starts a resize operation on pool "testPool" with a new target of 50 dedicated vms, a resize timeout of 1 hour, and the Terminate deallocation option.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Stop-AzureBatchPoolResize
+
+
+ Stops a pool resize operation.
+
+
+
+
+ Stop
+ AzureBatchPoolResize
+
+
+
+ Stops a pool resize operation.
+
+
+
+
+ Stop-AzureBatchPoolResize
+
+ Name
+
+ The name of the pool.
+
+ string
+
+
+ BatchContext
+
+ The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+ BatchAccountContext
+
+
+
+
+
+
+ BatchContext
+
+ The BatchAccountContext instance to use when interacting with the Batch service. Use the Get-AzureBatchAccountKeys cmdlet to get a BatchAccountContext object with its access keys populated.
+
+
+ BatchAccountContext
+
+ BatchAccountContext
+
+
+
+
+
+ Name
+
+ The name of the pool.
+
+
+ string
+
+ string
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 1 --------------------------
+
+
+ C:\PS>
+
+
+ Stop-AzureBatchPoolResize -Name "testPool" -BatchContext $context
+
+ Description
+ -----------
+ Stops the resize operation on pool "testPool"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- EXAMPLE 2 --------------------------
+
+
+ C:\PS>
+
+
+ Get-AzureBatchPool -Name "testPool" -BatchContext $context | Stop-AzureBatchPoolResize -BatchContext $context
+
+ Description
+ -----------
+ Stops the resize operation on pool "testPool" using the pipeline.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/ResourceManager/Batch/Commands.Batch/Models/BatchClient.Pools.cs b/src/ResourceManager/Batch/Commands.Batch/Models/BatchClient.Pools.cs
index 51c1e1f4a8b5..b72a7641ec3d 100644
--- a/src/ResourceManager/Batch/Commands.Batch/Models/BatchClient.Pools.cs
+++ b/src/ResourceManager/Batch/Commands.Batch/Models/BatchClient.Pools.cs
@@ -162,5 +162,45 @@ public void DeletePool(BatchAccountContext context, string poolName, IEnumerable
poolManager.DeletePool(poolName, additionBehaviors);
}
}
+
+ ///
+ /// Resizes the specified pool
+ ///
+ /// The parameters to use when resizing the pool
+ public void ResizePool(PoolResizeParameters parameters)
+ {
+ if (parameters == null)
+ {
+ throw new ArgumentNullException("parameters");
+ }
+
+ string poolName = parameters.Pool == null ? parameters.PoolName : parameters.Pool.Name;
+
+ WriteVerbose(string.Format(Resources.SBPR_ResizingPool, poolName, parameters.TargetDedicated));
+ using (IPoolManager poolManager = parameters.Context.BatchOMClient.OpenPoolManager())
+ {
+ poolManager.ResizePool(poolName, parameters.TargetDedicated, parameters.ResizeTimeout, parameters.DeallocationOption, parameters.AdditionalBehaviors);
+ }
+ }
+
+ ///
+ /// Stops the resize operation on the specified pool
+ ///
+ /// The account to use.
+ /// The name of the pool.
+ /// Additional client behaviors to perform.
+ public void StopResizePool(BatchAccountContext context, string poolName, IEnumerable additionalBehaviors = null)
+ {
+ if (string.IsNullOrWhiteSpace(poolName))
+ {
+ throw new ArgumentNullException("poolName");
+ }
+
+ WriteVerbose(string.Format(Resources.SBPR_StopResizingPool, poolName));
+ using (IPoolManager poolManager = context.BatchOMClient.OpenPoolManager())
+ {
+ poolManager.StopResizePool(poolName, additionalBehaviors);
+ }
+ }
}
}
diff --git a/src/ResourceManager/Batch/Commands.Batch/Models/PoolResizeParameters.cs b/src/ResourceManager/Batch/Commands.Batch/Models/PoolResizeParameters.cs
new file mode 100644
index 000000000000..8d2804037f1c
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch/Models/PoolResizeParameters.cs
@@ -0,0 +1,43 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Batch;
+using Microsoft.Azure.Batch.Common;
+using System;
+using System.Collections.Generic;
+
+namespace Microsoft.Azure.Commands.Batch.Models
+{
+ public class PoolResizeParameters : PoolOperationParameters
+ {
+ public PoolResizeParameters(BatchAccountContext context, string poolName, PSCloudPool pool, IEnumerable additionalBehaviors = null)
+ : base(context, poolName, pool, additionalBehaviors)
+ { }
+
+ ///
+ /// The number of target dedicated vms.
+ ///
+ public int TargetDedicated { get; set; }
+
+ ///
+ /// The resize timeout. If the pool has not reached the targets after this time the resize is automatically stopped.
+ ///
+ public TimeSpan? ResizeTimeout { get; set; }
+
+ ///
+ /// The deallocation option associated with this resize.
+ ///
+ public TVMDeallocationOption DeallocationOption { get; set; }
+ }
+}
diff --git a/src/ResourceManager/Batch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs b/src/ResourceManager/Batch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs
new file mode 100644
index 000000000000..79d4a536f6f8
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch/Pools/StartBatchPoolResizeCommand.cs
@@ -0,0 +1,54 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Batch;
+using Microsoft.Azure.Batch.Common;
+using Microsoft.Azure.Commands.Batch.Models;
+using System;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Batch
+{
+ [Cmdlet(VerbsLifecycle.Start, "AzureBatchPoolResize")]
+ public class StartBatchPoolResizeCommand : BatchObjectModelCmdletBase
+ {
+ [Parameter(Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Mandatory = true, HelpMessage = "The name of the pool to resize.")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(Mandatory = true, HelpMessage = "The number of target dedicated VMs.")]
+ [ValidateNotNullOrEmpty]
+ public int TargetDedicated { get; set; }
+
+ [Parameter(HelpMessage = "The resize timeout. If the pool has not reached the target after this time the resize is automatically stopped.")]
+ [ValidateNotNullOrEmpty]
+ public TimeSpan? ResizeTimeout { get; set; }
+
+ [Parameter(HelpMessage = "The deallocation option associated with this resize.")]
+ [ValidateNotNullOrEmpty]
+ public TVMDeallocationOption DeallocationOption { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ PoolResizeParameters parameters = new PoolResizeParameters(this.BatchContext, this.Name, null, this.AdditionalBehaviors)
+ {
+ TargetDedicated = this.TargetDedicated,
+ ResizeTimeout = this.ResizeTimeout,
+ DeallocationOption = this.DeallocationOption
+ };
+
+ BatchClient.ResizePool(parameters);
+ }
+ }
+}
diff --git a/src/ResourceManager/Batch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs b/src/ResourceManager/Batch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs
new file mode 100644
index 000000000000..029cf435b1c3
--- /dev/null
+++ b/src/ResourceManager/Batch/Commands.Batch/Pools/StopBatchPoolResizeCommand.cs
@@ -0,0 +1,31 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.Batch
+{
+ [Cmdlet(VerbsLifecycle.Stop, "AzureBatchPoolResize")]
+ public class StopBatchPoolResizeCommand : BatchObjectModelCmdletBase
+ {
+ [Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the pool.")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ BatchClient.StopResizePool(this.BatchContext, this.Name, this.AdditionalBehaviors);
+ }
+ }
+}
diff --git a/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.Designer.cs b/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.Designer.cs
index 103511b4f400..27f5c098b54d 100644
--- a/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.Designer.cs
+++ b/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.Designer.cs
@@ -662,5 +662,23 @@ internal static string SBA_Updating {
return ResourceManager.GetString("SBA_Updating", resourceCulture);
}
}
+
+ ///
+ /// Looks up a localized string similar to Resizing pool {0}, new target dedicated: {1}..
+ ///
+ internal static string SBPR_ResizingPool {
+ get {
+ return ResourceManager.GetString("SBPR_ResizingPool", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Stopping resize operation on pool {0}..
+ ///
+ internal static string SBPR_StopResizingPool {
+ get {
+ return ResourceManager.GetString("SBPR_StopResizingPool", resourceCulture);
+ }
+ }
}
}
diff --git a/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.resx b/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.resx
index 1fc2bca1dec4..b6256668afbb 100644
--- a/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.resx
+++ b/src/ResourceManager/Batch/Commands.Batch/Properties/Resources.resx
@@ -319,4 +319,10 @@
Updating account {0}
+
+ Resizing pool {0}, new target dedicated: {1}.
+
+
+ Stopping resize operation on pool {0}.
+
\ No newline at end of file
diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/DataSliceContextBaseCmdlet.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/DataSliceContextBaseCmdlet.cs
index bc7034f66ea6..983b33beb216 100644
--- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/DataSliceContextBaseCmdlet.cs
+++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/DataSliceContextBaseCmdlet.cs
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.DataFactories
{
public abstract class DataSliceContextBaseCmdlet : DataFactoryBaseCmdlet
{
- private DateTime _endDateTime;
+ protected DateTime _endDateTime;
[Parameter(ParameterSetName = ByFactoryObject, Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true,
HelpMessage = "The data factory object.")]
@@ -38,20 +38,5 @@ public abstract class DataSliceContextBaseCmdlet : DataFactoryBaseCmdlet
[Parameter(Position = 3, Mandatory = true, HelpMessage = "The data slice range start time.")]
public DateTime StartDateTime { get; set; }
-
- [Parameter(Position = 4, Mandatory = false, HelpMessage = "The data slice range end time.")]
- public DateTime EndDateTime
- {
- get
- {
- return _endDateTime == default(DateTime)
- ? StartDateTime + Constants.DefaultSliceActivePeriodDuration
- : _endDateTime;
- }
- set
- {
- _endDateTime = value;
- }
- }
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs
index b4128dbb37a4..c66130de9032 100644
--- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs
+++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/GetAzureDataFactorySliceCommand.cs
@@ -14,6 +14,7 @@
using Microsoft.Azure.Commands.DataFactories.Models;
using Microsoft.Azure.Commands.DataFactories.Properties;
+using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
@@ -25,6 +26,25 @@ namespace Microsoft.Azure.Commands.DataFactories
[Cmdlet(VerbsCommon.Get, Constants.DataSlice, DefaultParameterSetName = ByFactoryName), OutputType(typeof(List))]
public class GetAzureDataFactorySliceCommand : DataSliceContextBaseCmdlet
{
+ [Parameter(Position = 4, Mandatory = false, HelpMessage = "The data slice range end time.")]
+ public DateTime EndDateTime
+ {
+ get
+ {
+ if (_endDateTime == default(DateTime))
+ {
+ WriteWarning(Resources.EndDateTimeNotSpecifiedForGetSlice);
+ return StartDateTime + Constants.DefaultSliceActivePeriodDuration;
+ }
+
+ return _endDateTime;
+ }
+ set
+ {
+ _endDateTime = value;
+ }
+ }
+
[EnvironmentPermission(SecurityAction.Demand, Unrestricted = true)]
public override void ExecuteCmdlet()
{
diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs
index 9d1126b15d66..9061f9a472b4 100644
--- a/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs
+++ b/src/ResourceManager/DataFactories/Commands.DataFactories/DataSlices/SetAzureDataFactorySliceStatusCommand.cs
@@ -14,6 +14,7 @@
using Microsoft.Azure.Commands.DataFactories.Properties;
using Microsoft.Azure.Management.DataFactories.Models;
+using System;
using System.Collections;
using System.Globalization;
using System.Management.Automation;
@@ -26,6 +27,25 @@ public class SetAzureDataFactorySliceStatusCommand : DataSliceContextBaseCmdlet
{
private string _updateType = "Individual";
+ [Parameter(Position = 4, Mandatory = false, HelpMessage = "The data slice range end time.")]
+ public DateTime EndDateTime
+ {
+ get
+ {
+ if (_endDateTime == default(DateTime))
+ {
+ WriteWarning(Resources.EndDateTimeNotSpecifiedForSetSliceStatus);
+ return StartDateTime + Constants.DefaultSliceActivePeriodDuration;
+ }
+
+ return _endDateTime;
+ }
+ set
+ {
+ _endDateTime = value;
+ }
+ }
+
[Parameter(Position = 5, Mandatory = true, HelpMessage = "The data slice status.")]
[ValidateSet(
DataSliceStatus.NotSpecified,
diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs
index 7ab9411adafc..6a80eaa0de94 100644
--- a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs
+++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs
@@ -1,7 +1,7 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:4.0.30319.34014
+// Runtime Version:4.0.30319.34209
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -170,6 +170,24 @@ internal static string DownloadLogCompleted {
}
}
+ ///
+ /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzureDataFactorySlice command if you want to specify EndDateTime..
+ ///
+ internal static string EndDateTimeNotSpecifiedForGetSlice {
+ get {
+ return ResourceManager.GetString("EndDateTimeNotSpecifiedForGetSlice", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzureDataFactorySliceStatus command if you want to specify EndDateTime..
+ ///
+ internal static string EndDateTimeNotSpecifiedForSetSliceStatus {
+ get {
+ return ResourceManager.GetString("EndDateTimeNotSpecifiedForSetSliceStatus", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to {0} name provided using -Name switch: '{1}' in cmdlet doesn't match with {0} name: '{2}' in JSON file. {0} will be created with name: '{1}'.
///
diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx
index 7cce188ed19b..708211898133 100644
--- a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx
+++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx
@@ -255,4 +255,10 @@ Are you sure you want to continue?
{0}
For data factory naming restrictions, please see http://msdn.microsoft.com/en-us/library/dn835027.aspx
+
+ EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzureDataFactorySlice command if you want to specify EndDateTime.
+
+
+ EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzureDataFactorySliceStatus command if you want to specify EndDateTime.
+
\ No newline at end of file
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj
index e76c7007c983..9a47aa2b11b4 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Commands.ResourceManager.Cmdlets.csproj
@@ -143,6 +143,8 @@
+
+
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs
index b562e849ffcf..cca6cb33ab7f 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/GetAzureResourceLockCmdlet.cs
@@ -17,7 +17,6 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
using System.Management.Automation;
using System.Threading.Tasks;
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
- using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources;
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions;
using Newtonsoft.Json.Linq;
@@ -27,40 +26,25 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
[Cmdlet(VerbsCommon.Get, "AzureResourceLock"), OutputType(typeof(PSObject))]
public class GetAzureResourceLockCmdlet : ResourceLockManagementCmdletBase
{
- ///
- /// Gets or sets the at-scope filter.
- ///
- [Parameter(Mandatory = false, HelpMessage = "When specified returns all locks at or above the specified scope, otherwise returns all locks at, above or below the scope.")]
- [ValidateNotNullOrEmpty]
- public SwitchParameter AtScope { get; set; }
-
-
///
/// Gets or sets the extension resource name parameter.
///
[Alias("ExtensionResourceName")]
- [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupLevelLock, Mandatory = false, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = false, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ScopeLevelLock, Mandatory = false, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionLevelLock, Mandatory = false, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = false, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = false, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
[ValidateNotNullOrEmpty]
public string LockName { get; set; }
///
- /// Gets the resource Id from the supplied PowerShell parameters.
+ /// Gets or sets the at-scope filter.
///
- protected string GetResourceId()
- {
- return !string.IsNullOrWhiteSpace(this.Scope)
- ? ResourceIdUtility.GetResourceId(
- resourceId: this.Scope,
- extensionResourceType: Constants.MicrosoftAuthorizationLocksType,
- extensionResourceName: this.LockName)
- : ResourceIdUtility.GetResourceId(
- subscriptionId: this.SubscriptionId,
- resourceGroupName: this.ResourceGroupName,
- resourceType: this.ResourceType,
- resourceName: this.ResourceName,
- extensionResourceType: Constants.MicrosoftAuthorizationLocksType,
- extensionResourceName: this.LockName);
- }
+ [Parameter(Mandatory = false, HelpMessage = "When specified returns all locks at or above the specified scope, otherwise returns all locks at, above or below the scope.")]
+ [ValidateNotNullOrEmpty]
+ public SwitchParameter AtScope { get; set; }
///
/// Executes the cmdlet.
@@ -68,19 +52,11 @@ protected string GetResourceId()
protected override void OnProcessRecord()
{
base.OnProcessRecord();
- this.RunCmdlet();
- }
-
- ///
- /// Contains the cmdlet's execution logic.
- ///
- private void RunCmdlet()
- {
PaginatedResponseHelper.ForEach(
getFirstPage: () => this.GetResources(),
getNextPage: nextLink => this.GetNextLink(nextLink),
cancellationToken: this.CancellationToken,
- action: resources => this.WriteObject(sendToPipeline: resources.CoalesceEnumerable().SelectArray(resource => resource.ToPsObject(ResourceObjectFormat.New)), enumerateCollection: true));
+ action: resources => this.WriteObject(sendToPipeline: this.GetOutputObjects(resources), enumerateCollection: true));
}
///
@@ -102,7 +78,7 @@ private async Task> GetResources()
///
private async Task GetResource()
{
- var resourceId = this.GetResourceId();
+ var resourceId = this.GetResourceId(this.LockName);
var apiVersion = await this
.DetermineApiVersion(resourceId: resourceId)
@@ -122,7 +98,7 @@ private async Task GetResource()
///
private async Task> ListResourcesTypeCollection()
{
- var resourceCollectionId = this.GetResourceId();
+ var resourceCollectionId = this.GetResourceId(this.LockName);
var apiVersion = await this
.DetermineApiVersion(resourceId: resourceCollectionId)
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs
index b670dc2c48f6..c07f9f786951 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/NewAzureResourceLockCmdlet.cs
@@ -15,9 +15,7 @@
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
{
using System.Management.Automation;
- using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Locks;
- using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources;
using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions;
using Newtonsoft.Json.Linq;
@@ -27,6 +25,19 @@ namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
[Cmdlet(VerbsCommon.New, "AzureResourceLock", SupportsShouldProcess = true, DefaultParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock), OutputType(typeof(PSObject))]
public class NewAzureResourceLockCmdlet : ResourceLockManagementCmdletBase
{
+ ///
+ /// Gets or sets the extension resource name parameter.
+ ///
+ [Alias("ExtensionResourceName")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ScopeLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [ValidateNotNullOrEmpty]
+ public string LockName { get; set; }
+
///
/// Gets or sets the extension resource name parameter.
///
@@ -49,42 +60,13 @@ public class NewAzureResourceLockCmdlet : ResourceLockManagementCmdletBase
[Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")]
public SwitchParameter Force { get; set; }
- ///
- /// Gets or sets the extension resource name parameter.
- ///
- [Alias("ExtensionResourceName")]
- [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The name of the lock.")]
- [ValidateNotNullOrEmpty]
- public string LockName { get; set; }
-
- ///
- /// Gets the resource Id from the supplied PowerShell parameters.
- ///
- protected string GetResourceId()
- {
- return !string.IsNullOrWhiteSpace(this.Scope)
- ? ResourceIdUtility.GetResourceId(
- resourceId: this.Scope,
- extensionResourceType: Constants.MicrosoftAuthorizationLocksType,
- extensionResourceName: this.LockName)
- : ResourceIdUtility.GetResourceId(
- subscriptionId: this.SubscriptionId,
- resourceGroupName: this.ResourceGroupName,
- resourceType: this.ResourceType,
- resourceName: this.ResourceName,
- extensionResourceType: Constants.MicrosoftAuthorizationLocksType,
- extensionResourceName: this.LockName);
- }
-
///
/// Executes the cmdlet.
///
protected override void OnProcessRecord()
{
base.OnProcessRecord();
-
- var resourceId = this.GetResourceId();
-
+ var resourceId = this.GetResourceId(this.LockName);
this.ConfirmAction(
this.Force,
this.GetActionMessage(resourceId),
@@ -112,7 +94,7 @@ protected override void OnProcessRecord()
var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: true)
.WaitOnOperation(operationResult: operationResult);
- this.WriteObject(result, ResourceObjectFormat.New);
+ this.WriteObject(this.GetOutputObjects(result.ToJToken()), enumerateCollection: true);
});
}
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceLockCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceLockCmdlet.cs
index c9ebee95ed8d..bbd552ff4b0e 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceLockCmdlet.cs
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/RemoveAzureResourceLockCmdlet.cs
@@ -15,12 +15,68 @@
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
{
using System.Management.Automation;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions;
///
/// The remove azure resource lock cmdlet.
///
[Cmdlet(VerbsCommon.Remove, "AzureResourceLock", SupportsShouldProcess = true), OutputType(typeof(PSObject))]
- public class RemoveAzureResourceLockCmdlet : RemoveAzureResourceCmdlet
+ public class RemoveAzureResourceLockCmdlet : ResourceLockManagementCmdletBase
{
+ ///
+ /// Gets or sets the extension resource name parameter.
+ ///
+ [Alias("ExtensionResourceName")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ScopeLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The name of the lock.")]
+ [ValidateNotNullOrEmpty]
+ public string LockName { get; set; }
+
+ ///
+ /// Gets or sets the force parameter.
+ ///
+ [Parameter(Mandatory = false, HelpMessage = "Do not ask for confirmation.")]
+ public SwitchParameter Force { get; set; }
+
+ ///
+ /// Executes the cmdlet.
+ ///
+ protected override void OnProcessRecord()
+ {
+ base.OnProcessRecord();
+ var resourceId = this.GetResourceId(this.LockName);
+ this.ConfirmAction(
+ this.Force,
+ string.Format("Are you sure you want to delete the following lock: {0}", resourceId),
+ "Deleting the lock...",
+ resourceId,
+ () =>
+ {
+ var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result;
+
+ var operationResult = this.GetResourcesClient()
+ .DeleteResource(
+ resourceId: resourceId,
+ apiVersion: apiVersion,
+ cancellationToken: this.CancellationToken.Value)
+ .Result;
+
+ var managementUri = this.GetResourcesClient()
+ .GetResourceManagementRequestUri(
+ resourceId: resourceId,
+ apiVersion: apiVersion);
+
+ var activity = string.Format("DELETE {0}", managementUri.PathAndQuery);
+
+ var result = this.GetLongRunningOperationTracker(activityName: activity, isResourceCreateOrUpdate: false)
+ .WaitOnOperation(operationResult: operationResult);
+
+ this.WriteObject(this.GetOutputObjects(result.ToJToken()), enumerateCollection: true);
+ });
+ }
}
-}
\ No newline at end of file
+}
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs
index 8a02e36c0f5e..19d01241f5e1 100644
--- a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/ResourceLockManagementCmdletBase.cs
@@ -15,13 +15,23 @@
namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation
{
using System;
+ using System.Linq;
using System.Management.Automation;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.Resources;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions;
+ using Newtonsoft.Json.Linq;
///
/// Base class for resource lock management cmdlets.
///
public abstract class ResourceLockManagementCmdletBase : ResourceManagerCmdletBase
{
+ ///
+ /// The Id parameter set.
+ ///
+ internal const string LockIdParameterSet = "A lock, by Id.";
+
///
/// The resource group level resource lock.
///
@@ -55,43 +65,44 @@ public abstract class ResourceLockManagementCmdletBase : ResourceManagerCmdletBa
///
/// Gets or sets the scope.
///
- [Alias("Id")]
+ [Alias("Id", "ResourceId")]
[Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ScopeLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The scope. e.g. to specify a database '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaserName}', to specify a resoruce group: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}'")]
[ValidateNotNullOrEmpty]
public string Scope { get; set; }
///
- /// Gets or sets the extension resource name parameter.
+ /// Gets or sets the resource name parameter.
///
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
[ValidateNotNullOrEmpty]
public string ResourceName { get; set; }
///
/// Gets or sets the resource type parameter.
///
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
[ValidateNotNullOrEmpty]
public string ResourceType { get; set; }
///
/// Gets or sets the subscription id parameter.
///
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupLevelLock, Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionLevelLock, Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The subscription to use.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupLevelLock, Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The subscription to use.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionLevelLock, Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The subscription to use.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.SubscriptionResourceLevelLock, Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The subscription to use.")]
[ValidateNotNullOrEmpty]
public Guid? SubscriptionId { get; set; }
///
/// Gets or sets the resource group name parameter.
///
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group name.")]
- [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group name.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupResourceLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource group name.")]
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.ResourceGroupLevelLock, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource group name.")]
[ValidateNotNullOrEmpty]
public string ResourceGroupName { get; set; }
@@ -101,17 +112,79 @@ public abstract class ResourceLockManagementCmdletBase : ResourceManagerCmdletBa
[Parameter(ParameterSetName = ResourceLockManagementCmdletBase.TenantResourceLevelLock, Mandatory = true, HelpMessage = "Indicates that this is a tenant level operation.")]
public SwitchParameter TenantLevel { get; set; }
+ ///
+ /// The Id of the lock.
+ ///
+ [Parameter(ParameterSetName = ResourceLockManagementCmdletBase.LockIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The Id of the lock.")]
+ [ValidateNotNullOrEmpty]
+ public string LockId { get; set; }
+
///
/// Initializes the default subscription id if needed.
///
protected override void OnProcessRecord()
{
- if (string.IsNullOrWhiteSpace(this.Scope) && this.SubscriptionId == null && !this.TenantLevel)
+ if (string.IsNullOrWhiteSpace(this.LockId) &&
+ string.IsNullOrWhiteSpace(this.Scope) &&
+ this.SubscriptionId == null &&
+ !this.TenantLevel)
{
this.SubscriptionId = this.Profile.Context.Subscription.Id;
}
base.OnProcessRecord();
}
+
+ ///
+ /// Gets the resource Id from the supplied PowerShell parameters.
+ ///
+ /// The name of the lock.
+ protected string GetResourceId(string lockName)
+ {
+ if (!string.IsNullOrWhiteSpace(this.LockId))
+ {
+ var resourceType = ResourceIdUtility.GetResourceType(this.LockId);
+ var extensionResourceType = ResourceIdUtility.GetExtensionResourceType(this.LockId);
+
+ if ((resourceType.EqualsInsensitively(Constants.MicrosoftAuthorizationLocksType) &&
+ string.IsNullOrWhiteSpace(extensionResourceType)) ||
+ extensionResourceType.EqualsInsensitively(Constants.MicrosoftAuthorizationLocksType))
+ {
+ return this.LockId;
+ }
+
+ throw new InvalidOperationException(string.Format("The Id '{0}' does not belong to a lock.", this.LockId));
+ }
+
+ return !string.IsNullOrWhiteSpace(this.Scope)
+ ? ResourceIdUtility.GetResourceId(
+ resourceId: this.Scope,
+ extensionResourceType: Constants.MicrosoftAuthorizationLocksType,
+ extensionResourceName: lockName)
+ : ResourceIdUtility.GetResourceId(
+ subscriptionId: this.SubscriptionId,
+ resourceGroupName: this.ResourceGroupName,
+ resourceType: this.ResourceType,
+ resourceName: this.ResourceName,
+ extensionResourceType: Constants.MicrosoftAuthorizationLocksType,
+ extensionResourceName: lockName);
+ }
+
+ ///
+ /// Converts the resource object to output that can be piped to the lock cmdlets.
+ ///
+ /// The lock resource object.
+ protected PSObject[] GetOutputObjects(params JToken[] resources)
+ {
+ return resources
+ .CoalesceEnumerable()
+ .Where(resource => resource != null)
+ .SelectArray(resource =>
+ {
+ var psobject = resource.ToResource().ToPsObject(ResourceObjectFormat.New);
+ psobject.Properties.Add(new PSNoteProperty("LockId", psobject.Properties["ResourceId"].Value));
+ return psobject;
+ });
+ }
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs
new file mode 100644
index 000000000000..5d38636d9610
--- /dev/null
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceCmdlet.cs
@@ -0,0 +1,188 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.ResourceManager.Cmdlets.Implementation
+{
+ using System;
+ using System.Management.Automation;
+ using System.Net;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.ErrorResponses;
+ using Newtonsoft.Json.Linq;
+
+ ///
+ /// Cmdlet to check if a resource exists or not
+ ///
+ [Cmdlet(VerbsDiagnostic.Test, "AzureResource", DefaultParameterSetName = TestAzureResoruceCmdlet.GetTenantResourceParameterSet), OutputType(typeof(bool))]
+ public sealed class TestAzureResoruceCmdlet : ResourceManagerCmdletBase
+ {
+ ///
+ /// The get resource parameter set.
+ ///
+ internal const string GetResourceGroupResourceParameterSet = "Tests for the existance of a single resource in a resource group.";
+
+ ///
+ /// The get tenant resource parameter set.
+ ///
+ internal const string GetTenantResourceParameterSet = "Tests for the existance of a single resource at the tenant level.";
+
+ ///
+ /// The get tenant resource parameter set.
+ ///
+ internal const string GetResourceByIdParameterSet = "Tests for the existance of a single resource by its Id.";
+
+ ///
+ /// The get tenant resource parameter set.
+ ///
+ internal const string GetSubscriptionResourcesParameterSet = "Tests for the existance of a single resource at the subscription level.";
+
+ ///
+ /// Gets or sets the resource name parameter.
+ ///
+ [Alias("Id")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetResourceByIdParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = false, HelpMessage = "The resource's Id.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceId { get; set; }
+
+ ///
+ /// Gets or sets the resource name parameter.
+ ///
+ [Alias("Name")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetTenantResourceParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetSubscriptionResourcesParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceName { get; set; }
+
+ ///
+ /// Gets or sets the resource type parameter.
+ ///
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetTenantResourceParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetSubscriptionResourcesParameterSet, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceType { get; set; }
+
+ ///
+ /// Gets or sets the extension resource name parameter.
+ ///
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The extension resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetTenantResourceParameterSet, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The extension resource name. e.g. to specify a database MyServer/MyDatabase.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetSubscriptionResourcesParameterSet, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [ValidateNotNullOrEmpty]
+ public string ExtensionResourceName { get; set; }
+
+ ///
+ /// Gets or sets the extension resource type.
+ ///
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetTenantResourceParameterSet, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetSubscriptionResourcesParameterSet, Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
+ [ValidateNotNullOrEmpty]
+ public string ExtensionResourceType { get; set; }
+ ///
+ /// Gets or sets the subscription ids.
+ ///
+ [Parameter(Mandatory = false, ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
+ [Parameter(Mandatory = false, ParameterSetName = TestAzureResoruceCmdlet.GetSubscriptionResourcesParameterSet, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
+ [ValidateNotNullOrEmpty]
+ public Guid? SubscriptionId { get; set; }
+
+ ///
+ /// Gets or sets the resource group name.
+ ///
+ [Parameter(Mandatory = true, ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group name.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ ///
+ /// Gets or sets the tenant level parameter.
+ ///
+ [Parameter(ParameterSetName = TestAzureResoruceCmdlet.GetTenantResourceParameterSet, Mandatory = true, HelpMessage = "Indicates that this is a tenant level operation.")]
+ public SwitchParameter TenantLevel { get; set; }
+
+ ///
+ /// Collects subscription ids from the pipeline.
+ ///
+ protected override void OnProcessRecord()
+ {
+ base.OnProcessRecord();
+ if (!this.TenantLevel)
+ {
+ this.SubscriptionId = this.Profile.Context.Subscription.Id;
+ }
+
+ this.RunCmdlet();
+ }
+
+ ///
+ /// Contains the cmdlet's execution logic.
+ ///
+ private void RunCmdlet()
+ {
+ this.WriteObject(this.TestResource());
+ }
+
+ ///
+ /// Tests if a resource exists or not.
+ ///
+ private bool TestResource()
+ {
+ var resourceId = this.GetResourceId();
+
+ var apiVersion = this.DetermineApiVersion(resourceId: resourceId).Result;
+
+ try
+ {
+ this.GetResourcesClient().GetResource(resourceId: resourceId, apiVersion: apiVersion, cancellationToken: this.CancellationToken.Value).Wait();
+ return true;
+ }
+ catch (Exception ex)
+ {
+ if(ex.InnerException != null && ex.InnerException is ErrorResponseMessageException)
+ {
+ var exception = ex.InnerException as ErrorResponseMessageException;
+ if (exception.HttpStatus.Equals(HttpStatusCode.NotFound))
+ {
+ return false;
+ }
+ else
+ {
+ throw ex.InnerException;
+ }
+ }
+ else
+ {
+ throw ex;
+ }
+ }
+ }
+
+ ///
+ /// Gets the resource Id from the supplied PowerShell parameters.
+ ///
+ private string GetResourceId()
+ {
+ return !string.IsNullOrWhiteSpace(this.ResourceId)
+ ? this.ResourceId
+ : ResourceIdUtility.GetResourceId(
+ subscriptionId: this.SubscriptionId,
+ resourceGroupName: this.ResourceGroupName,
+ resourceType: this.ResourceType,
+ resourceName: this.ResourceName,
+ extensionResourceType: this.ExtensionResourceType,
+ extensionResourceName: this.ExtensionResourceName);
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs
new file mode 100644
index 000000000000..3de440f13e6f
--- /dev/null
+++ b/src/ResourceManager/ResourceManager/Commands.ResourceManager/Cmdlets/Implementation/TestAzureResourceGroupCmdlet.cs
@@ -0,0 +1,108 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.ResourceManager.Cmdlets.Implementation
+{
+ using System;
+ using System.Management.Automation;
+ using System.Net;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components;
+ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Entities.ErrorResponses;
+ using Newtonsoft.Json.Linq;
+
+ ///
+ /// Cmdlet to check if a resource group exists or not
+ ///
+ [Cmdlet(VerbsDiagnostic.Test, "AzureResourceGroup"), OutputType(typeof(bool))]
+ public sealed class TestAzureResoruceGroupCmdlet : ResourceManagerCmdletBase
+ {
+ ///
+ /// Gets or sets the subscription ids.
+ ///
+ [Parameter(Mandatory = false, ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
+ [Parameter(Mandatory = false, ParameterSetName = TestAzureResoruceCmdlet.GetSubscriptionResourcesParameterSet, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The subscription to use.")]
+ [ValidateNotNullOrEmpty]
+ public Guid? SubscriptionId { get; set; }
+
+ ///
+ /// Gets or sets the resource group name.
+ ///
+ [Parameter(Mandatory = true, ParameterSetName = TestAzureResoruceCmdlet.GetResourceGroupResourceParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "The resource group name.")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ ///
+ /// Collects subscription ids from the pipeline.
+ ///
+ protected override void OnProcessRecord()
+ {
+ base.OnProcessRecord();
+ this.SubscriptionId = this.Profile.Context.Subscription.Id;
+ this.RunCmdlet();
+ }
+
+ ///
+ /// Contains the cmdlet's execution logic.
+ ///
+ private void RunCmdlet()
+ {
+ this.WriteObject(this.TestResourceGroup());
+ }
+
+ ///
+ /// Tests if a resource group exists or not.
+ ///
+ private bool TestResourceGroup()
+ {
+ var resourceGroupId = this.GetResourceGroupId();
+ var apiVersion = this.DetermineApiVersion(resourceId: resourceGroupId).Result;
+ try
+ {
+ this.GetResourcesClient().GetResource(resourceId: resourceGroupId, apiVersion: apiVersion, cancellationToken: this.CancellationToken.Value).Wait();
+ return true;
+ }
+ catch (Exception ex)
+ {
+ if (ex.InnerException != null && ex.InnerException is ErrorResponseMessageException)
+ {
+ var exception = ex.InnerException as ErrorResponseMessageException;
+ if (exception.HttpStatus.Equals(HttpStatusCode.NotFound))
+ {
+ return false;
+ }
+ else
+ {
+ throw ex.InnerException;
+ }
+ }
+ else
+ {
+ throw ex;
+ }
+ }
+ }
+
+ ///
+ /// Gets the resource Id from the supplied PowerShell parameters.
+ ///
+ private string GetResourceGroupId()
+ {
+ return ResourceIdUtility.GetResourceId(
+ subscriptionId: this.SubscriptionId,
+ resourceGroupName: this.ResourceGroupName,
+ resourceType: null,
+ resourceName: null);
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1
index 7f9a6e2608a8..4a5ccf2de646 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DatabaseCrudTests.ps1
@@ -18,7 +18,7 @@
#>
function Test-CreateDatabase
{
- Test-CreateDatabaseInternal "12.0"
+ Test-CreateDatabaseInternal "12.0" "Southeast Asia"
}
<#
@@ -61,6 +61,18 @@ function Test-CreateDatabaseInternal ($serverVersion, $location = "Japan East")
Assert-NotNull $db.Edition
Assert-NotNull $db.CurrentServiceObjectiveName
Assert-NotNull $db.CollationName
+
+ # Create data warehouse database with all parameters.
+ $databaseName = Get-DatabaseName
+ $collationName = "SQL_Latin1_General_CP1_CI_AS"
+ $maxSizeBytes = 250GB
+ $dwdb = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName `
+ -CollationName $collationName -MaxSizeBytes $maxSizeBytes -Edition DataWarehouse -RequestedServiceObjectiveName DW100
+ Assert-AreEqual $dwdb.DatabaseName $databaseName
+ Assert-AreEqual $dwdb.MaxSizeBytes $maxSizeBytes
+ Assert-AreEqual $dwdb.Edition DataWarehouse
+ Assert-AreEqual $dwdb.CurrentServiceObjectiveName DW100
+ Assert-AreEqual $dwdb.CollationName $collationName
}
# Create with all parameters
@@ -95,7 +107,7 @@ function Test-CreateDatabaseInternal ($serverVersion, $location = "Japan East")
#>
function Test-UpdateDatabase
{
- Test-UpdateDatabaseInternal "12.0"
+ Test-UpdateDatabaseInternal "12.0" "Southeast Asia"
}
<#
@@ -144,10 +156,24 @@ function Test-UpdateDatabaseInternal ($serverVersion, $location = "Japan East")
Assert-AreEqual $db2.Edition Standard
Assert-AreEqual $db2.CurrentServiceObjectiveName S1
Assert-AreEqual $db2.CollationName $db.CollationName
+
+ # Create and alter data warehouse database.
+ $databaseName = Get-DatabaseName
+ $collationName = "SQL_Latin1_General_CP1_CI_AS"
+ $maxSizeBytes = 250GB
+ $dwdb = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName `
+ -CollationName $collationName -MaxSizeBytes $maxSizeBytes -Edition DataWarehouse -RequestedServiceObjectiveName DW100
+
+ $dwdb2 = Set-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $dwdb.DatabaseName `
+ -MaxSizeBytes $maxSizeBytes -RequestedServiceObjectiveName DW200 -Edition DataWarehouse
+ Assert-AreEqual $dwdb2.DatabaseName $dwdb.DatabaseName
+ Assert-AreEqual $dwdb2.MaxSizeBytes $maxSizeBytes
+ Assert-AreEqual $dwdb2.Edition DataWarehouse
+ Assert-AreEqual $dwdb2.CurrentServiceObjectiveName DW200
+ Assert-AreEqual $dwdb2.CollationName $collationName
}
else
{
-
# Alter all properties
$db1 = Set-AzureSqlDatabase -ResourceGroupName $db.ResourceGroupName -ServerName $db.ServerName -DatabaseName $db.DatabaseName `
-MaxSizeBytes 1GB -Edition Basic -RequestedServiceObjectiveName Basic
@@ -179,7 +205,7 @@ function Test-UpdateDatabaseInternal ($serverVersion, $location = "Japan East")
#>
function Test-GetDatabase
{
- Test-GetDatabaseInternal "12.0"
+ Test-GetDatabaseInternal "12.0" "Southeast Asia"
}
<#
@@ -214,6 +240,28 @@ function Test-GetDatabaseInternal ($serverVersion, $location = "Japan East")
try
{
+ if($serverVersion -eq "12.0")
+ {
+ # Create data warehouse database.
+ $databaseName = Get-DatabaseName
+ $dwdb = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName `
+ -CollationName SQL_Latin1_General_CP1_CI_AS -MaxSizeBytes 250GB -Edition DataWarehouse -RequestedServiceObjectiveName DW100
+ $dwdb2 = Get-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupname -ServerName $server.ServerName -DatabaseName $dwdb.DatabaseName
+ Assert-AreEqual $dwdb2.DatabaseName $dwdb.DatabaseName
+ Assert-AreEqual $dwdb2.MaxSizeBytes $dwdb.MaxSizeBytes
+ Assert-AreEqual $dwdb2.Edition $dwdb.Edition
+ Assert-AreEqual $dwdb2.CurrentServiceObjectiveName $dwdb.CurrentServiceObjectiveName
+ Assert-AreEqual $dwdb2.CollationName $dwdb.CollationName
+
+ $all = $server | Get-AzureSqlDatabase
+ Assert-AreEqual $all.Count 4 # 4 because master database is included
+ }
+ else
+ {
+ $all = $server | Get-AzureSqlDatabase
+ Assert-AreEqual $all.Count 3 # 3 because master database is included
+ }
+
$gdb1 = Get-AzureSqlDatabase -ResourceGroupName $server.ResourceGroupname -ServerName $server.ServerName -DatabaseName $db1.DatabaseName
Assert-NotNull $gdb1
Assert-AreEqual $db1.DatabaseName $gdb1.DatabaseName
@@ -229,9 +277,6 @@ function Test-GetDatabaseInternal ($serverVersion, $location = "Japan East")
Assert-AreEqual $db2.CollationName $gdb2.CollationName
Assert-AreEqual $db2.CurrentServiceObjectiveName $gdb2.CurrentServiceObjectiveName
Assert-AreEqual $db2.MaxSizeBytes $gdb2.MaxSizeBytes
-
- $all = $server | Get-AzureSqlDatabase
- Assert-AreEqual $all.Count 3 # 3 because master database is included
}
finally
{
@@ -246,7 +291,7 @@ function Test-GetDatabaseInternal ($serverVersion, $location = "Japan East")
#>
function Test-RemoveDatabase
{
- Test-RemoveDatabaseInternal "12.0"
+ Test-RemoveDatabaseInternal "12.0" "Southeast Asia"
}
<#
@@ -281,9 +326,20 @@ function Test-RemoveDatabaseInternal ($serverVersion, $location = "Japan East")
try
{
- $all = $server | Get-AzureSqlDatabase
- Assert-AreEqual $all.Count 3 # 3 because master database is included
+ if($serverVersion -eq "12.0")
+ {
+ # Create data warehouse database
+ $databaseName = Get-DatabaseName
+ $dwdb = New-AzureSqlDatabase -ResourceGroupName $rg.ResourceGroupName -ServerName $server.ServerName -DatabaseName $databaseName `
+ -CollationName "SQL_Latin1_General_CP1_CI_AS" -MaxSizeBytes 250GB -Edition DataWarehouse -RequestedServiceObjectiveName DW100
+ Assert-AreEqual $dwdb.DatabaseName $databaseName
+ Remove-AzureSqlDatabase -ResourceGroupName $server.ResourceGroupname -ServerName $server.ServerName -DatabaseName $dwdb.DatabaseName -Force
+ }
+
+ $all = $server | Get-AzureSqlDatabase
+ Assert-AreEqual $all.Count 3 # 3 because master database is included
+
Remove-AzureSqlDatabase -ResourceGroupName $server.ResourceGroupname -ServerName $server.ServerName -DatabaseName $db1.DatabaseName -Force
$db2 | Remove-AzureSqlDatabase -Force
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs
index 656bb2b9815a..e22403cf56c6 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/SqlTestsBase.cs
@@ -64,22 +64,47 @@ protected void RunPowerShellTest(params string[] scripts)
protected SqlManagementClient GetSqlClient()
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ SqlManagementClient client = TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ if (HttpMockServer.Mode == HttpRecorderMode.Playback)
+ {
+ client.LongRunningOperationInitialTimeout = 0;
+ client.LongRunningOperationRetryTimeout = 0;
+ }
+ return client;
}
protected StorageManagementClient GetStorageClient()
{
- return TestBase.GetServiceClient(new RDFETestEnvironmentFactory());
+ StorageManagementClient client = TestBase.GetServiceClient(new RDFETestEnvironmentFactory());
+ if (HttpMockServer.Mode == HttpRecorderMode.Playback)
+ {
+ client.LongRunningOperationInitialTimeout = 0;
+ client.LongRunningOperationRetryTimeout = 0;
+ }
+ return client;
}
protected ResourceManagementClient GetResourcesClient()
{
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ ResourceManagementClient client = TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ if (HttpMockServer.Mode == HttpRecorderMode.Playback)
+ {
+ client.LongRunningOperationInitialTimeout = 0;
+ client.LongRunningOperationRetryTimeout = 0;
+ }
+ return client;
}
private AuthorizationManagementClient GetAuthorizationManagementClient()
- {
- return TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ {
+ AuthorizationManagementClient client = TestBase.GetServiceClient(new CSMTestEnvironmentFactory());
+ if (HttpMockServer.Mode == HttpRecorderMode.Playback)
+ {
+ client.LongRunningOperationInitialTimeout = 0;
+ client.LongRunningOperationRetryTimeout = 0;
+ }
+ return client;
+
}
}
}
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreate.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreate.json
index de7fd896d699..fad2480a1627 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreate.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreate.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk4226?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk7619?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14999"
],
"x-ms-request-id": [
- "d8471650-cf7e-40b2-839c-7d3311e7bf20"
+ "e2c10eae-aa91-46ae-bf8f-ef6cf9037624"
],
"x-ms-correlation-request-id": [
- "d8471650-cf7e-40b2-839c-7d3311e7bf20"
+ "e2c10eae-aa91-46ae-bf8f-ef6cf9037624"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163551Z:d8471650-cf7e-40b2-839c-7d3311e7bf20"
+ "CENTRALUS:20150610T160224Z:e2c10eae-aa91-46ae-bf8f-ef6cf9037624"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:35:51 GMT"
+ "Wed, 10 Jun 2015 16:02:24 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk4226?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk7619?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14998"
],
"x-ms-request-id": [
- "ac33c49a-2358-4474-beb3-561419c8e8e9"
+ "5206a345-687e-4e62-bcfb-aca640d912c4"
],
"x-ms-correlation-request-id": [
- "ac33c49a-2358-4474-beb3-561419c8e8e9"
+ "5206a345-687e-4e62-bcfb-aca640d912c4"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164035Z:ac33c49a-2358-4474-beb3-561419c8e8e9"
+ "CENTRALUS:20150610T161022Z:5206a345-687e-4e62-bcfb-aca640d912c4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:35 GMT"
+ "Wed, 10 Jun 2015 16:10:22 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk4226?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk7619?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226\",\r\n \"name\": \"onesdk4226\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619\",\r\n \"name\": \"onesdk7619\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1199"
],
"x-ms-request-id": [
- "756627fb-4cb1-4566-9dfc-237cd1166e7b"
+ "93395d36-5b47-4095-baef-f4fa82f6bfc0"
],
"x-ms-correlation-request-id": [
- "756627fb-4cb1-4566-9dfc-237cd1166e7b"
+ "93395d36-5b47-4095-baef-f4fa82f6bfc0"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163552Z:756627fb-4cb1-4566-9dfc-237cd1166e7b"
+ "CENTRALUS:20150610T160225Z:93395d36-5b47-4095-baef-f4fa82f6bfc0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:35:52 GMT"
+ "Wed, 10 Jun 2015 16:02:24 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,118 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "0005f32b-a1ee-4eae-a1ea-b9420b60fd09"
+ ],
+ "x-ms-correlation-request-id": [
+ "0005f32b-a1ee-4eae-a1ea-b9420b60fd09"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160225Z:0005f32b-a1ee-4eae-a1ea-b9420b60fd09"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:02:24 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk7619/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "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:5de26381-29d1-425c-a9bc-db82b633d6ad"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc6416fc-0540-4c26-bfaa-a19f96cc095a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160225Z:bc6416fc-0540-4c26-bfaa-a19f96cc095a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:02:25 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "6867a10a-76db-49fc-ad7f-ea5afeaa0e05"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "02cc755f-38bb-4fec-a80f-b745a0fa44e0"
+ "6117e278-3b48-4448-8422-91d377e19dda"
],
"x-ms-correlation-request-id": [
- "02cc755f-38bb-4fec-a80f-b745a0fa44e0"
+ "6117e278-3b48-4448-8422-91d377e19dda"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163552Z:02cc755f-38bb-4fec-a80f-b745a0fa44e0"
+ "CENTRALUS:20150610T160225Z:6117e278-3b48-4448-8422-91d377e19dda"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,25 +295,715 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:35:52 GMT"
+ "Wed, 10 Jun 2015 16:02:25 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "97c2e946-a12c-410e-b23d-7c8819c1887b"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857\",\r\n \"name\": \"onesdk1857\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1857.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "119618e0-dc48-46cf-9465-ef0f8dc283cd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "4773f55a-5922-4b55-8e86-4648668a7bc9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160308Z:4773f55a-5922-4b55-8e86-4648668a7bc9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:03:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f3d9d31f-cdea-4442-a547-7124c81e38b1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857\",\r\n \"name\": \"onesdk1857\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1857.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "dc5d9d88-ecad-4df2-a39a-fd68e4008ecf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14991"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d705808-acdc-4717-bf18-06ea4b0ca937"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160416Z:1d705808-acdc-4717-bf18-06ea4b0ca937"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:04:16 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "bbd5cc50-764e-4b0b-b376-89bfc771c949"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857\",\r\n \"name\": \"onesdk1857\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1857.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "e1b34208-5af9-43cf-994a-bcbe0377c04e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14984"
+ ],
+ "x-ms-correlation-request-id": [
+ "f019e6e3-837a-4087-a251-4f9378047b3d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160539Z:f019e6e3-837a-4087-a251-4f9378047b3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:05:38 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "51a915b3-d59e-40de-91bf-1022fe3fdca1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857\",\r\n \"name\": \"onesdk1857\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1857.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "bf2fbe22-1bd0-4682-bfe0-20caf8f30315"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14971"
+ ],
+ "x-ms-correlation-request-id": [
+ "16d85e10-c6ab-48a0-b167-d0dadd69d382"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160841Z:16d85e10-c6ab-48a0-b167-d0dadd69d382"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:08:40 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "d1ba2f45-c214-4135-bfe4-9bf47f13edcf"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857\",\r\n \"name\": \"onesdk1857\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1857.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "63bdff91-c5df-49d4-ba4b-ae2b8708a00c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-correlation-request-id": [
+ "816f7363-fe3f-45ad-8c28-85021b54fe55"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160948Z:816f7363-fe3f-45ad-8c28-85021b54fe55"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:09:47 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "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\": \"Southeast Asia\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "182"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "478b3ffa-2fc8-4c65-9652-af8179ad7c5e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857\",\r\n \"name\": \"onesdk1857\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1857.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": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "d75f4688-c22d-4ad7-b18b-2bbab18eb1d5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5ca4a92-4727-4aaa-bc78-fd22c9a0fb5e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160308Z:e5ca4a92-4727-4aaa-bc78-fd22c9a0fb5e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:03:08 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsyNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "33e0679f-ac31-474c-9a43-add116457049"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "215f273b-102a-4094-b58e-a2a27a11f6bd"
+ ],
+ "x-ms-correlation-request-id": [
+ "215f273b-102a-4094-b58e-a2a27a11f6bd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160308Z:215f273b-102a-4094-b58e-a2a27a11f6bd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:03:08 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsyNDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "101"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3eb08e2d-82a7-40e6-8c31-3b176f17fd26"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T09:03:10.265-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": [
+ "1d3499af-c9b9-46cd-a169-2095867b1398"
+ ],
+ "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": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "683298e0-2cab-4fc9-a8ce-7e3cc4f28d49"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160310Z:683298e0-2cab-4fc9-a8ce-7e3cc4f28d49"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:03:10 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsyNDAxL29wZXJhdGlvblJlc3VsdHMvMWQzNDk5YWYtYzliOS00NmNkLWExNjktMjA5NTg2N2IxMzk4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3eb08e2d-82a7-40e6-8c31-3b176f17fd26"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:03:10.25Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "afc771e7-3055-4ca9-ac5c-1f6a60e8c3e5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14996"
+ ],
+ "x-ms-correlation-request-id": [
+ "b50716b5-b1a8-45d2-a381-82a6c0351904"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160311Z:b50716b5-b1a8-45d2-a381-82a6c0351904"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:03:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsyNDAxL29wZXJhdGlvblJlc3VsdHMvMWQzNDk5YWYtYzliOS00NmNkLWExNjktMjA5NTg2N2IxMzk4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3eb08e2d-82a7-40e6-8c31-3b176f17fd26"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:03:10.25Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "8c13a9d6-a716-4e5f-a80d-6b72cbc0b5fc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14995"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4291f28-ad45-40e3-9786-33d44f4ae6a6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160342Z:d4291f28-ad45-40e3-9786-33d44f4ae6a6"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:03:42 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsyNDAxL29wZXJhdGlvblJlc3VsdHMvMWQzNDk5YWYtYzliOS00NmNkLWExNjktMjA5NTg2N2IxMzk4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3eb08e2d-82a7-40e6-8c31-3b176f17fd26"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:03:10.25Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "bcfe2860-197f-40f2-9083-155a7a648338"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d891dbe-e2d4-49be-a820-10e2158ddd82"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160359Z:9d891dbe-e2d4-49be-a820-10e2158ddd82"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:03:59 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401/operationResults/1d3499af-c9b9-46cd-a169-2095867b1398?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsyNDAxL29wZXJhdGlvblJlc3VsdHMvMWQzNDk5YWYtYzliOS00NmNkLWExNjktMjA5NTg2N2IxMzk4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "3eb08e2d-82a7-40e6-8c31-3b176f17fd26"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk2401\",\r\n \"name\": \"onesdk2401\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"251a2643-f078-4a71-a992-c31a0af8f848\",\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-06-10T16:03:16.33Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T16:14:06.217Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "824"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "923d050f-244e-4f1f-8368-8dc69a12de85"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14993"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ddae0b7-f4ae-46d8-8aa7-cc45fe308b3c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160415Z:2ddae0b7-f4ae-46d8-8aa7-cc45fe308b3c"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 16:04:14 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk4226/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsxNTQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "7d9c3cc4-f238-4c7c-a948-85b828d5ba65"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "45"
+ "69"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -222,20 +1014,17 @@
"Pragma": [
"no-cache"
],
- "Vary": [
- "Accept-Encoding"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "centralus:7b4bc78f-4e3f-4aa6-898a-2752c9020101"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "d113e3fd-bd5b-4f37-b5fe-845aa11fcffa"
],
"x-ms-correlation-request-id": [
- "752e954a-c789-48e5-96ce-947fb8afb3fd"
+ "d113e3fd-bd5b-4f37-b5fe-845aa11fcffa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163552Z:752e954a-c789-48e5-96ce-947fb8afb3fd"
+ "CENTRALUS:20150610T160415Z:d113e3fd-bd5b-4f37-b5fe-845aa11fcffa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,65 +1033,83 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:35:52 GMT"
+ "Wed, 10 Jun 2015 16:04:14 GMT"
]
},
- "StatusCode": 200
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsxNTQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "101"
+ ],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "9277813e-f79d-490d-8486-7edf840c44ab"
+ "e44f3dae-a645-48bb-9956-f89f1620f033"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T09:04:17.469-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "80"
],
"Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "80cf8c20-056c-4e84-9e80-acfd44443bba"
+ "032bd5f8-e33d-4305-ab0d-887f7fb6e7df"
],
- "x-ms-correlation-request-id": [
- "80cf8c20-056c-4e84-9e80-acfd44443bba"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150527T163553Z:80cf8c20-056c-4e84-9e80-acfd44443bba"
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c79efd4-2c07-4727-923c-0bafdbd01f32"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160417Z:1c79efd4-2c07-4727-923c-0bafdbd01f32"
+ ],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:35:52 GMT"
+ "Wed, 10 Jun 2015 16:04:17 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 404
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsxNTQ5L29wZXJhdGlvblJlc3VsdHMvMDMyYmQ1ZjgtZTMzZC00MzA1LWFiMGQtODg3ZjdmYjZlN2RmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,19 +1117,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "81aec075-975a-437a-adec-08bc49b12bd5"
+ "e44f3dae-a645-48bb-9956-f89f1620f033"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770\",\r\n \"name\": \"onesdk770\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk770.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}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:04:17.453Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "462"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "253daff5-7832-4d40-a14b-8e01574ea0b9"
+ "fd2a4d03-7cdf-4756-aac9-9852f0ae02bd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -330,33 +1140,36 @@
"DataServiceVersion": [
"3.0;"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14990"
],
"x-ms-correlation-request-id": [
- "1be20211-162a-4346-bfe0-22e889038f42"
+ "2a3ef153-38c1-45df-ad66-5ae507c34695"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163627Z:1be20211-162a-4346-bfe0-22e889038f42"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUS:20150610T160419Z:2a3ef153-38c1-45df-ad66-5ae507c34695"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:36:27 GMT"
+ "Wed, 10 Jun 2015 16:04:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsxNTQ5L29wZXJhdGlvblJlc3VsdHMvMDMyYmQ1ZjgtZTMzZC00MzA1LWFiMGQtODg3ZjdmYjZlN2RmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -364,19 +1177,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "2568e7b6-4175-4bae-8e04-a22fa40ce6de"
+ "e44f3dae-a645-48bb-9956-f89f1620f033"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770\",\r\n \"name\": \"onesdk770\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk770.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}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:04:17.453Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "462"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "7ec91583-5701-41b1-b4be-48416151e5d4"
+ "0b05503c-293e-47e9-b848-1662c660ed8a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -384,33 +1200,36 @@
"DataServiceVersion": [
"3.0;"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14989"
],
"x-ms-correlation-request-id": [
- "2161a478-d7c4-406f-a03c-7e371d976ffa"
+ "d5d4d759-65db-4d99-a582-603ef42d6534"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163750Z:2161a478-d7c4-406f-a03c-7e371d976ffa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUS:20150610T160450Z:d5d4d759-65db-4d99-a582-603ef42d6534"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:49 GMT"
+ "Wed, 10 Jun 2015 16:04:50 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsxNTQ5L29wZXJhdGlvblJlc3VsdHMvMDMyYmQ1ZjgtZTMzZC00MzA1LWFiMGQtODg3ZjdmYjZlN2RmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -418,19 +1237,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "de7cab67-b258-4c12-b9b1-0f005d0f8fe8"
+ "e44f3dae-a645-48bb-9956-f89f1620f033"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770\",\r\n \"name\": \"onesdk770\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk770.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}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:04:17.453Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "462"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "8fd2e0f7-6df3-4952-a401-058efaf51e79"
+ "56ec2b99-7a7a-401c-bb50-43bcd17e9019"
],
"X-Content-Type-Options": [
"nosniff"
@@ -438,33 +1260,36 @@
"DataServiceVersion": [
"3.0;"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14966"
+ "14988"
],
"x-ms-correlation-request-id": [
- "fcc2878d-ffc3-4a97-97dd-2e869120ecfe"
+ "3d41c796-05f7-42ee-8aea-b544fb9bcf93"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163856Z:fcc2878d-ffc3-4a97-97dd-2e869120ecfe"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUS:20150610T160506Z:3d41c796-05f7-42ee-8aea-b544fb9bcf93"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:38:56 GMT"
+ "Wed, 10 Jun 2015 16:05:06 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsxNTQ5L29wZXJhdGlvblJlc3VsdHMvMDMyYmQ1ZjgtZTMzZC00MzA1LWFiMGQtODg3ZjdmYjZlN2RmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -472,19 +1297,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "fb5452ed-4bd1-4e21-9f69-d744162f630b"
+ "e44f3dae-a645-48bb-9956-f89f1620f033"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770\",\r\n \"name\": \"onesdk770\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk770.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}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:04:17.453Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "462"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "0bce5128-4474-4ca6-a765-46aadb9eae76"
+ "7bc6bb30-16c6-40a8-8840-80feb51b160b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -492,86 +1320,80 @@
"DataServiceVersion": [
"3.0;"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14960"
+ "14987"
],
"x-ms-correlation-request-id": [
- "b165c9fc-7b44-4a37-8f14-8d0468325841"
+ "6147c8b9-e957-4f90-8450-4c9799e4f1e5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164001Z:b165c9fc-7b44-4a37-8f14-8d0468325841"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUS:20150610T160522Z:6147c8b9-e957-4f90-8450-4c9799e4f1e5"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:01 GMT"
+ "Wed, 10 Jun 2015 16:05:22 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzA/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\": \"Japan East\"\r\n}",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549/operationResults/032bd5f8-e33d-4305-ab0d-887f7fb6e7df?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGsxNTQ5L29wZXJhdGlvblJlc3VsdHMvMDMyYmQ1ZjgtZTMzZC00MzA1LWFiMGQtODg3ZjdmYjZlN2RmP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "178"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "9b0b59d5-7443-43f4-803f-e84ca178e801"
+ "e44f3dae-a645-48bb-9956-f89f1620f033"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770\",\r\n \"name\": \"onesdk770\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk770.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}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk1549\",\r\n \"name\": \"onesdk1549\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"620a9de3-7cf8-4de4-90d4-9fd8f0d0b530\",\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-06-10T16:04:17.627Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T16:15:38.253Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "476"
+ "825"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "2ac68b05-224b-4c2d-8134-1f2fdc70b365"
+ "a12444f9-9373-4b7e-87a6-e44a74583b8f"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Preference-Applied": [
- "return-content"
- ],
"DataServiceVersion": [
"3.0;"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14986"
],
"x-ms-correlation-request-id": [
- "29c60049-e755-4ebc-a69f-6c03d5655f05"
+ "fe0574cc-6f06-45d6-94df-b2281d6f2711"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163627Z:29c60049-e755-4ebc-a69f-6c03d5655f05"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUS:20150610T160538Z:fe0574cc-6f06-45d6-94df-b2281d6f2711"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:36:27 GMT"
+ "Wed, 10 Jun 2015 16:05:38 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -580,8 +1402,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -589,7 +1411,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "e6651e01-5d1d-4122-b24e-768fa4c75c6c"
+ "900097bd-2eff-48e7-b265-5fb9d30ebc16"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -610,13 +1432,13 @@
"gateway"
],
"x-ms-request-id": [
- "6996e766-a7a4-41ba-a538-3d8702bd9525"
+ "41320c41-3fab-431c-a958-e4e8041bffd3"
],
"x-ms-correlation-request-id": [
- "6996e766-a7a4-41ba-a538-3d8702bd9525"
+ "41320c41-3fab-431c-a958-e4e8041bffd3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163627Z:6996e766-a7a4-41ba-a538-3d8702bd9525"
+ "CENTRALUS:20150610T160539Z:41320c41-3fab-431c-a958-e4e8041bffd3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -625,31 +1447,31 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:36:27 GMT"
+ "Wed, 10 Jun 2015 16:05:38 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"DataWarehouse\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"DW100\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "97"
+ "242"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4d778d5b-f656-4f4d-9a8b-c84c64fb7bff"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T09:36:29.511-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T09:05:41.073-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -661,7 +1483,7 @@
"30"
],
"x-ms-request-id": [
- "2bb13238-af7a-4317-973c-ab7c6d818b2c"
+ "d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -676,22 +1498,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1196"
],
"x-ms-correlation-request-id": [
- "b8246b74-61f4-468e-bfea-f0edfdeaf6e4"
+ "d455d53c-221e-4596-80d6-dd4e4b216549"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163629Z:b8246b74-61f4-468e-bfea-f0edfdeaf6e4"
+ "CENTRALUS:20150610T160541Z:d455d53c-221e-4596-80d6-dd4e4b216549"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:36:29 GMT"
+ "Wed, 10 Jun 2015 16:05:40 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -700,8 +1522,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazIzL29wZXJhdGlvblJlc3VsdHMvMmJiMTMyMzgtYWY3YS00MzE3LTk3M2MtYWI3YzZkODE4YjJjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -709,10 +1531,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4d778d5b-f656-4f4d-9a8b-c84c64fb7bff"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:36:29.48Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -724,7 +1546,7 @@
"30"
],
"x-ms-request-id": [
- "dd8ed894-88f0-4807-b314-6b0b6e26dcea"
+ "c5fb7232-1800-4450-9edb-e0024400829e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -736,22 +1558,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14978"
+ "14983"
],
"x-ms-correlation-request-id": [
- "ce82093a-9504-4e40-a4d3-a724ac550fca"
+ "5a987471-3e46-471a-855c-cdf29d954963"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163630Z:ce82093a-9504-4e40-a4d3-a724ac550fca"
+ "CENTRALUS:20150610T160542Z:5a987471-3e46-471a-855c-cdf29d954963"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:36:29 GMT"
+ "Wed, 10 Jun 2015 16:05:41 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -760,8 +1582,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazIzL29wZXJhdGlvblJlc3VsdHMvMmJiMTMyMzgtYWY3YS00MzE3LTk3M2MtYWI3YzZkODE4YjJjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -769,10 +1591,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4d778d5b-f656-4f4d-9a8b-c84c64fb7bff"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:36:29.48Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -784,7 +1606,7 @@
"30"
],
"x-ms-request-id": [
- "c3f7cad0-cb5d-4e03-afc9-11b138a6dbd0"
+ "086469f8-46a1-4a29-8eb9-9d16c2b85fed"
],
"X-Content-Type-Options": [
"nosniff"
@@ -796,22 +1618,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
+ "14982"
],
"x-ms-correlation-request-id": [
- "34bb1e5c-31d6-4735-acd9-e17c5eeb2205"
+ "8e7c4feb-8b6f-449a-a196-9c6980bf76ef"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163701Z:34bb1e5c-31d6-4735-acd9-e17c5eeb2205"
+ "CENTRALUS:20150610T160613Z:8e7c4feb-8b6f-449a-a196-9c6980bf76ef"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:01 GMT"
+ "Wed, 10 Jun 2015 16:06:13 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -820,8 +1642,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazIzL29wZXJhdGlvblJlc3VsdHMvMmJiMTMyMzgtYWY3YS00MzE3LTk3M2MtYWI3YzZkODE4YjJjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -829,10 +1651,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4d778d5b-f656-4f4d-9a8b-c84c64fb7bff"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:36:29.48Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -844,7 +1666,7 @@
"30"
],
"x-ms-request-id": [
- "e2f74584-4c1c-4944-a382-6214e55a708b"
+ "4735d1be-4f39-4d86-b299-b965bf274986"
],
"X-Content-Type-Options": [
"nosniff"
@@ -856,22 +1678,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14976"
+ "14981"
],
"x-ms-correlation-request-id": [
- "95794c9a-3a70-4405-8a99-e57db4566592"
+ "5cc58660-3a2c-454b-b0f9-054231c5e5df"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163717Z:95794c9a-3a70-4405-8a99-e57db4566592"
+ "CENTRALUS:20150610T160630Z:5cc58660-3a2c-454b-b0f9-054231c5e5df"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:17 GMT"
+ "Wed, 10 Jun 2015 16:06:29 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -880,8 +1702,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazIzL29wZXJhdGlvblJlc3VsdHMvMmJiMTMyMzgtYWY3YS00MzE3LTk3M2MtYWI3YzZkODE4YjJjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -889,10 +1711,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4d778d5b-f656-4f4d-9a8b-c84c64fb7bff"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:36:29.48Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -904,7 +1726,7 @@
"30"
],
"x-ms-request-id": [
- "f7d149c1-d250-44ac-8a3e-2d2561eb7b24"
+ "84261410-ca3b-4185-8b3b-8bf54595d4a4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -916,22 +1738,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14975"
+ "14980"
],
"x-ms-correlation-request-id": [
- "a9df1e9f-4fd9-4ae6-98e5-fa5e1f6b45b3"
+ "6cc061e9-fbb7-4774-adaa-df5ef0a7f81c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163733Z:a9df1e9f-4fd9-4ae6-98e5-fa5e1f6b45b3"
+ "CENTRALUS:20150610T160646Z:6cc061e9-fbb7-4774-adaa-df5ef0a7f81c"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:33 GMT"
+ "Wed, 10 Jun 2015 16:06:45 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -940,8 +1762,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23/operationResults/2bb13238-af7a-4317-973c-ab7c6d818b2c?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazIzL29wZXJhdGlvblJlc3VsdHMvMmJiMTMyMzgtYWY3YS00MzE3LTk3M2MtYWI3YzZkODE4YjJjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -949,19 +1771,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4d778d5b-f656-4f4d-9a8b-c84c64fb7bff"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk23\",\r\n \"name\": \"onesdk23\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8b539e9f-045f-48a0-b0cf-73ce7329124a\",\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-05-27T16:36:29.683Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T16:47:45.117Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "820"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "e66002a0-baa8-4d45-bb47-7c356196c70f"
+ "6138e03c-5283-4260-b582-2b2d04898481"
],
"X-Content-Type-Options": [
"nosniff"
@@ -973,29 +1798,32 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14979"
],
"x-ms-correlation-request-id": [
- "2c484f3b-c2a6-4f42-87db-910fabb2c4c9"
+ "86408330-cfcb-4a19-b193-94b3800edec9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163749Z:2c484f3b-c2a6-4f42-87db-910fabb2c4c9"
+ "CENTRALUS:20150610T160702Z:86408330-cfcb-4a19-b193-94b3800edec9"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:48 GMT"
+ "Wed, 10 Jun 2015 16:07:02 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 201
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazE0MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1003,109 +1831,109 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0473ee06-0c36-4d94-9a7a-4059cbc408a3"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "75"
],
"Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
+ "application/json"
],
- "x-ms-failure-cause": [
- "gateway"
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "f320f49e-2252-4da1-ab80-197dc491da3c"
+ "10b803a2-aa7d-4584-8945-ec2b9403c5ab"
],
- "x-ms-correlation-request-id": [
- "f320f49e-2252-4da1-ab80-197dc491da3c"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150527T163749Z:f320f49e-2252-4da1-ab80-197dc491da3c"
+ "DataServiceVersion": [
+ "3.0;"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-correlation-request-id": [
+ "66097a47-bf0e-4b19-9443-cf444f530440"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T160718Z:66097a47-bf0e-4b19-9443-cf444f530440"
+ ],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:48 GMT"
+ "Wed, 10 Jun 2015 16:07:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 404
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazE0MDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "97"
- ],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "55f16d0b-1225-4803-8d64-272811f3074f"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T09:37:51.449-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "80"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
],
"Retry-After": [
"30"
],
"x-ms-request-id": [
- "e5db14d3-2ea7-4c13-bca0-f077568f1012"
+ "aa1e08ff-a009-43ca-a2d9-63706c981c38"
],
"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-ratelimit-remaining-subscription-reads": [
+ "14977"
],
"x-ms-correlation-request-id": [
- "ee4289fb-7c8f-413a-a296-bd36f68f192a"
+ "40203a9f-e36a-417c-a029-fcf60fab9587"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163751Z:ee4289fb-7c8f-413a-a296-bd36f68f192a"
+ "CENTRALUS:20150610T160734Z:40203a9f-e36a-417c-a029-fcf60fab9587"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:51 GMT"
+ "Wed, 10 Jun 2015 16:07:34 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1114,8 +1942,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazE0MDgvb3BlcmF0aW9uUmVzdWx0cy9lNWRiMTRkMy0yZWE3LTRjMTMtYmNhMC1mMDc3NTY4ZjEwMTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1123,10 +1951,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "55f16d0b-1225-4803-8d64-272811f3074f"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:37:51.417Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1138,7 +1966,7 @@
"30"
],
"x-ms-request-id": [
- "2067f23a-0a62-4b3d-8b61-238b414e0585"
+ "ea0ced7f-0a29-4cb6-bc9b-38185fea29e0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1150,22 +1978,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14976"
],
"x-ms-correlation-request-id": [
- "b5a68aa7-4d97-43e0-8f57-de73012d8b63"
+ "1fcfa67d-15f9-4eeb-aedb-b509c7fd447c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163752Z:b5a68aa7-4d97-43e0-8f57-de73012d8b63"
+ "CENTRALUS:20150610T160751Z:1fcfa67d-15f9-4eeb-aedb-b509c7fd447c"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:37:52 GMT"
+ "Wed, 10 Jun 2015 16:07:51 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1174,8 +2002,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazE0MDgvb3BlcmF0aW9uUmVzdWx0cy9lNWRiMTRkMy0yZWE3LTRjMTMtYmNhMC1mMDc3NTY4ZjEwMTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1183,10 +2011,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "55f16d0b-1225-4803-8d64-272811f3074f"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:37:51.417Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1198,7 +2026,7 @@
"30"
],
"x-ms-request-id": [
- "61d78ed7-ac8f-4b39-a185-8f4b01f83cfc"
+ "d301fa05-e739-40f3-b259-913ec00a8ade"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1210,22 +2038,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14970"
+ "14975"
],
"x-ms-correlation-request-id": [
- "7f6cb43b-2953-4744-a141-3a8a8b6157ad"
+ "6e82680d-9483-461f-a002-2659e329cbcb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163823Z:7f6cb43b-2953-4744-a141-3a8a8b6157ad"
+ "CENTRALUS:20150610T160807Z:6e82680d-9483-461f-a002-2659e329cbcb"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:38:23 GMT"
+ "Wed, 10 Jun 2015 16:08:06 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1234,8 +2062,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazE0MDgvb3BlcmF0aW9uUmVzdWx0cy9lNWRiMTRkMy0yZWE3LTRjMTMtYmNhMC1mMDc3NTY4ZjEwMTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1243,10 +2071,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "55f16d0b-1225-4803-8d64-272811f3074f"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:37:51.417Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:05:41.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1258,7 +2086,7 @@
"30"
],
"x-ms-request-id": [
- "8daca0fc-21f9-404b-b9bb-1696f6334e16"
+ "b6de81ef-592f-440f-a1cf-24a8d8dae18e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1270,22 +2098,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14969"
+ "14974"
],
"x-ms-correlation-request-id": [
- "f845726d-f85a-44fc-b394-f2d95c0f6c16"
+ "615c52d9-5dd0-4921-97d9-5659941e8864"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163839Z:f845726d-f85a-44fc-b394-f2d95c0f6c16"
+ "CENTRALUS:20150610T160823Z:615c52d9-5dd0-4921-97d9-5659941e8864"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:38:39 GMT"
+ "Wed, 10 Jun 2015 16:08:23 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1294,8 +2122,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408/operationResults/e5db14d3-2ea7-4c13-bca0-f077568f1012?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazE0MDgvb3BlcmF0aW9uUmVzdWx0cy9lNWRiMTRkMy0yZWE3LTRjMTMtYmNhMC1mMDc3NTY4ZjEwMTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967/operationResults/d8193bcb-2e5e-43f1-8e5f-0fe6b9cb746c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs5Njcvb3BlcmF0aW9uUmVzdWx0cy9kODE5M2JjYi0yZTVlLTQzZjEtOGU1Zi0wZmU2YjljYjc0NmM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1303,19 +2131,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "55f16d0b-1225-4803-8d64-272811f3074f"
+ "be18e04b-6db1-4e63-9497-897d4f5f14cd"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk1408\",\r\n \"name\": \"onesdk1408\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"45f8e8a9-c698-4951-af18-c43ed552b588\",\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-05-27T16:37:51.637Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T16:48:43.763Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk967\",\r\n \"name\": \"onesdk967\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"82a06ad6-7bb5-4797-9b25-e68104c9ee65\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-10T16:05:41.183Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T16:18:30.057Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "824"
+ "831"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "cbdc0738-58e1-48da-a5d1-b5a3a29f4fc8"
+ "04dba1b5-97f7-46fb-9740-129cc4cf9e56"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1327,19 +2155,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14968"
+ "14973"
],
"x-ms-correlation-request-id": [
- "e373c3c7-aac8-4534-a22f-3b1568ff6fd2"
+ "c3930735-7bf1-44e0-80d7-7779efa061c6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163855Z:e373c3c7-aac8-4534-a22f-3b1568ff6fd2"
+ "CENTRALUS:20150610T160840Z:c3930735-7bf1-44e0-80d7-7779efa061c6"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:38:54 GMT"
+ "Wed, 10 Jun 2015 16:08:40 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1348,8 +2176,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY5OTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs0NzAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1357,7 +2185,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "5581a974-e1d4-44bc-be7d-4ae7bd246772"
+ "b261ad61-7723-4a13-b4ca-1235568ad311"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -1378,13 +2206,13 @@
"gateway"
],
"x-ms-request-id": [
- "f3c13c0d-b894-463c-ba89-007fdb20fedb"
+ "f476fd1e-69c2-407d-89ce-e6839a5eea56"
],
"x-ms-correlation-request-id": [
- "f3c13c0d-b894-463c-ba89-007fdb20fedb"
+ "f476fd1e-69c2-407d-89ce-e6839a5eea56"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163855Z:f3c13c0d-b894-463c-ba89-007fdb20fedb"
+ "CENTRALUS:20150610T160840Z:f476fd1e-69c2-407d-89ce-e6839a5eea56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1393,31 +2221,31 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:38:54 GMT"
+ "Wed, 10 Jun 2015 16:08:40 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY5OTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs0NzAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "231"
+ "235"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "aa4fe334-10c5-4d47-9556-9660f8e4041d"
+ "44b8132c-ed5a-4827-8fc7-e3885fd22cb9"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T09:38:57.094-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T09:08:42.524-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -1429,7 +2257,7 @@
"30"
],
"x-ms-request-id": [
- "103c5b0e-5539-4310-8dc1-6aa4cf97801a"
+ "2beca86b-8559-409d-8678-ac6635bb274c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1444,22 +2272,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1195"
],
"x-ms-correlation-request-id": [
- "6c744ba8-dc35-42c8-b8d1-1f577481fc1a"
+ "f9182c30-b027-4618-bfa8-cb5c4d1e1c73"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163857Z:6c744ba8-dc35-42c8-b8d1-1f577481fc1a"
+ "CENTRALUS:20150610T160842Z:f9182c30-b027-4618-bfa8-cb5c4d1e1c73"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:38:57 GMT"
+ "Wed, 10 Jun 2015 16:08:42 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1468,8 +2296,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY5OTcvb3BlcmF0aW9uUmVzdWx0cy8xMDNjNWIwZS01NTM5LTQzMTAtOGRjMS02YWE0Y2Y5NzgwMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs0NzAxL29wZXJhdGlvblJlc3VsdHMvMmJlY2E4NmItODU1OS00MDlkLTg2NzgtYWM2NjM1YmIyNzRjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1477,10 +2305,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "aa4fe334-10c5-4d47-9556-9660f8e4041d"
+ "44b8132c-ed5a-4827-8fc7-e3885fd22cb9"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:38:57.063Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:08:42.51Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1492,7 +2320,7 @@
"30"
],
"x-ms-request-id": [
- "15c800c7-c2f4-42b3-848e-8ae88d5ae8c4"
+ "dd94b57c-1369-4124-ac36-39219478eceb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1504,22 +2332,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14965"
+ "14970"
],
"x-ms-correlation-request-id": [
- "009b00c9-f896-4dc7-a8c8-eadba4fad1cb"
+ "1f5922aa-f707-4423-90c9-f6f893d3e534"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163858Z:009b00c9-f896-4dc7-a8c8-eadba4fad1cb"
+ "CENTRALUS:20150610T160844Z:1f5922aa-f707-4423-90c9-f6f893d3e534"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:38:57 GMT"
+ "Wed, 10 Jun 2015 16:08:44 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1528,8 +2356,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY5OTcvb3BlcmF0aW9uUmVzdWx0cy8xMDNjNWIwZS01NTM5LTQzMTAtOGRjMS02YWE0Y2Y5NzgwMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs0NzAxL29wZXJhdGlvblJlc3VsdHMvMmJlY2E4NmItODU1OS00MDlkLTg2NzgtYWM2NjM1YmIyNzRjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1537,10 +2365,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "aa4fe334-10c5-4d47-9556-9660f8e4041d"
+ "44b8132c-ed5a-4827-8fc7-e3885fd22cb9"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:38:57.063Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:08:42.51Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1552,7 +2380,7 @@
"30"
],
"x-ms-request-id": [
- "800cf5d0-11a6-4b44-9ec2-e605a638c146"
+ "eaee5e57-bea0-48be-8649-4f938c82b8f9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1564,22 +2392,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14964"
+ "14969"
],
"x-ms-correlation-request-id": [
- "c705eda2-b7c5-4b66-bac8-1b4bf71030c5"
+ "d585d7e9-eb25-4fd4-96b8-1ecc6ef947e6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163929Z:c705eda2-b7c5-4b66-bac8-1b4bf71030c5"
+ "CENTRALUS:20150610T160915Z:d585d7e9-eb25-4fd4-96b8-1ecc6ef947e6"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:39:28 GMT"
+ "Wed, 10 Jun 2015 16:09:15 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1588,8 +2416,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY5OTcvb3BlcmF0aW9uUmVzdWx0cy8xMDNjNWIwZS01NTM5LTQzMTAtOGRjMS02YWE0Y2Y5NzgwMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs0NzAxL29wZXJhdGlvblJlc3VsdHMvMmJlY2E4NmItODU1OS00MDlkLTg2NzgtYWM2NjM1YmIyNzRjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1597,10 +2425,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "aa4fe334-10c5-4d47-9556-9660f8e4041d"
+ "44b8132c-ed5a-4827-8fc7-e3885fd22cb9"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:38:57.063Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:08:42.51Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1612,7 +2440,7 @@
"30"
],
"x-ms-request-id": [
- "7abd816d-c643-40ec-9990-a7494e5016fb"
+ "e81eb4f1-d2a9-46ab-9b83-daf7a66ce399"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1624,22 +2452,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14963"
+ "14968"
],
"x-ms-correlation-request-id": [
- "0191c6c4-1daf-43a4-b20c-7ea6107ec7a1"
+ "656c38f9-211c-4b08-babb-4f3521fe1e71"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T163945Z:0191c6c4-1daf-43a4-b20c-7ea6107ec7a1"
+ "CENTRALUS:20150610T160931Z:656c38f9-211c-4b08-babb-4f3521fe1e71"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:39:45 GMT"
+ "Wed, 10 Jun 2015 16:09:31 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1648,8 +2476,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997/operationResults/103c5b0e-5539-4310-8dc1-6aa4cf97801a?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY5OTcvb3BlcmF0aW9uUmVzdWx0cy8xMDNjNWIwZS01NTM5LTQzMTAtOGRjMS02YWE0Y2Y5NzgwMWE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701/operationResults/2beca86b-8559-409d-8678-ac6635bb274c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs0NzAxL29wZXJhdGlvblJlc3VsdHMvMmJlY2E4NmItODU1OS00MDlkLTg2NzgtYWM2NjM1YmIyNzRjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1657,19 +2485,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "aa4fe334-10c5-4d47-9556-9660f8e4041d"
+ "44b8132c-ed5a-4827-8fc7-e3885fd22cb9"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6997\",\r\n \"name\": \"onesdk6997\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"0f193760-69af-4c66-9629-b9fb65212de9\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T16:38:57.283Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T16:49:46.84Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk4701\",\r\n \"name\": \"onesdk4701\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"01855dc0-be75-49e4-808b-3e9e3f126f4c\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T16:08:42.637Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T16:19:32.807Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "824"
+ "826"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "1d57299c-6eec-4f56-8f5d-7ce3adf2bdf3"
+ "6f216d7e-aaae-4371-af89-fb9ae24cdc35"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1681,19 +2509,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14962"
+ "14967"
],
"x-ms-correlation-request-id": [
- "9c5209d7-003c-4368-894a-a1515a99d47e"
+ "17bfb5c4-9fe5-4105-9428-64c512d64d98"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164001Z:9c5209d7-003c-4368-894a-a1515a99d47e"
+ "CENTRALUS:20150610T160947Z:17bfb5c4-9fe5-4105-9428-64c512d64d98"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:01 GMT"
+ "Wed, 10 Jun 2015 16:09:47 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1702,8 +2530,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6522?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY1MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk7314?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs3MzE0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1711,7 +2539,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "abe65f67-5939-4900-b6ef-a0305b7faa53"
+ "d08e8adf-84fd-454c-ae96-6b7600f7c120"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -1732,13 +2560,13 @@
"gateway"
],
"x-ms-request-id": [
- "edc5903a-acc0-49aa-8a4a-5bf60272e23c"
+ "237f525e-74f6-458b-a2da-f624ec8c4370"
],
"x-ms-correlation-request-id": [
- "edc5903a-acc0-49aa-8a4a-5bf60272e23c"
+ "237f525e-74f6-458b-a2da-f624ec8c4370"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164001Z:edc5903a-acc0-49aa-8a4a-5bf60272e23c"
+ "CENTRALUS:20150610T160947Z:237f525e-74f6-458b-a2da-f624ec8c4370"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1747,31 +2575,31 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:01 GMT"
+ "Wed, 10 Jun 2015 16:09:47 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6522?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY1MjI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk7314?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs3MzE0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "231"
+ "235"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "8279a341-9bea-49dd-9376-c6bf484f3ed7"
+ "c17c6304-2a29-4761-8151-7461cb925c03"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T09:40:02.813-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T09:09:49.812-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -1783,7 +2611,7 @@
"30"
],
"x-ms-request-id": [
- "2b5c29a3-b3f1-4701-a733-323477390553"
+ "c356335e-356d-4562-9da0-d4b75130c820"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1798,22 +2626,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1194"
],
"x-ms-correlation-request-id": [
- "959fe844-1892-45f0-95b3-51d02310d5f7"
+ "030a4ee9-69b2-41a5-a5d6-9735fa16fa11"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164003Z:959fe844-1892-45f0-95b3-51d02310d5f7"
+ "CENTRALUS:20150610T160950Z:030a4ee9-69b2-41a5-a5d6-9735fa16fa11"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:02 GMT"
+ "Wed, 10 Jun 2015 16:09:50 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6522/operationResults/2b5c29a3-b3f1-4701-a733-323477390553?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk7314/operationResults/c356335e-356d-4562-9da0-d4b75130c820?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1822,8 +2650,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6522/operationResults/2b5c29a3-b3f1-4701-a733-323477390553?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY1MjIvb3BlcmF0aW9uUmVzdWx0cy8yYjVjMjlhMy1iM2YxLTQ3MDEtYTczMy0zMjM0NzczOTA1NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk7314/operationResults/c356335e-356d-4562-9da0-d4b75130c820?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs3MzE0L29wZXJhdGlvblJlc3VsdHMvYzM1NjMzNWUtMzU2ZC00NTYyLTlkYTAtZDRiNzUxMzBjODIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1831,10 +2659,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "8279a341-9bea-49dd-9376-c6bf484f3ed7"
+ "c17c6304-2a29-4761-8151-7461cb925c03"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T16:40:02.783Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T16:09:49.783Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1846,7 +2674,7 @@
"30"
],
"x-ms-request-id": [
- "8f084362-f6f1-45d2-83ec-9dd6c621c914"
+ "fb61de18-9245-4d9d-9c00-6b112f0fdf68"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1858,22 +2686,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14959"
+ "14964"
],
"x-ms-correlation-request-id": [
- "9cf275b0-217c-455e-aafc-b6d406f54a4e"
+ "12deefc5-c83e-4f21-a0e6-b2957fc88cbb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164004Z:9cf275b0-217c-455e-aafc-b6d406f54a4e"
+ "CENTRALUS:20150610T160951Z:12deefc5-c83e-4f21-a0e6-b2957fc88cbb"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:03 GMT"
+ "Wed, 10 Jun 2015 16:09:51 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6522/operationResults/2b5c29a3-b3f1-4701-a733-323477390553?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk7314/operationResults/c356335e-356d-4562-9da0-d4b75130c820?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1882,8 +2710,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6522/operationResults/2b5c29a3-b3f1-4701-a733-323477390553?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazQyMjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3NzAvZGF0YWJhc2VzL29uZXNkazY1MjIvb3BlcmF0aW9uUmVzdWx0cy8yYjVjMjlhMy1iM2YxLTQ3MDEtYTczMy0zMjM0NzczOTA1NTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk7314/operationResults/c356335e-356d-4562-9da0-d4b75130c820?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazc2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxODU3L2RhdGFiYXNlcy9vbmVzZGs3MzE0L29wZXJhdGlvblJlc3VsdHMvYzM1NjMzNWUtMzU2ZC00NTYyLTlkYTAtZDRiNzUxMzBjODIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1891,19 +2719,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "8279a341-9bea-49dd-9376-c6bf484f3ed7"
+ "c17c6304-2a29-4761-8151-7461cb925c03"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk4226/providers/Microsoft.Sql/servers/onesdk770/databases/onesdk6522\",\r\n \"name\": \"onesdk6522\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f2da8fea-4667-4dca-8333-ca9daade48e5\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T16:40:03Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T16:50:15.397Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk7619/providers/Microsoft.Sql/servers/onesdk1857/databases/onesdk7314\",\r\n \"name\": \"onesdk7314\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f1bb2b56-3e7b-4903-9f81-25336688724d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T16:09:49.953Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T16:19:59.843Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "821"
+ "826"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ac526f4b-6e8d-447e-9fbb-f017d65d32f5"
+ "ecda9dac-707b-45cf-928c-2b8bd7319115"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1915,19 +2743,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14958"
+ "14963"
],
"x-ms-correlation-request-id": [
- "373ce0cd-1718-4de0-9ba4-5e368e83c656"
+ "a9bb4eb0-50a6-445f-9859-09c30035d353"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164035Z:373ce0cd-1718-4de0-9ba4-5e368e83c656"
+ "CENTRALUS:20150610T161022Z:a9bb4eb0-50a6-445f-9859-09c30035d353"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:34 GMT"
+ "Wed, 10 Jun 2015 16:10:21 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1936,8 +2764,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk4226?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazQyMjY/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk7619?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazc2MTk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1960,16 +2788,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1199"
],
"x-ms-request-id": [
- "e7755a80-3412-4561-920b-eaf282db5af2"
+ "c58a6d67-dad3-410a-88f1-56a35f04c846"
],
"x-ms-correlation-request-id": [
- "e7755a80-3412-4561-920b-eaf282db5af2"
+ "c58a6d67-dad3-410a-88f1-56a35f04c846"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164035Z:e7755a80-3412-4561-920b-eaf282db5af2"
+ "CENTRALUS:20150610T161023Z:c58a6d67-dad3-410a-88f1-56a35f04c846"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1978,17 +2806,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:35 GMT"
+ "Wed, 10 Jun 2015 16:10:22 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2014,16 +2842,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14997"
],
"x-ms-request-id": [
- "50129af3-ab04-4ee2-a8d8-a669618e3973"
+ "b507784b-bc91-4c8f-99ee-d3c303f8da33"
],
"x-ms-correlation-request-id": [
- "50129af3-ab04-4ee2-a8d8-a669618e3973"
+ "b507784b-bc91-4c8f-99ee-d3c303f8da33"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164035Z:50129af3-ab04-4ee2-a8d8-a669618e3973"
+ "CENTRALUS:20150610T161023Z:b507784b-bc91-4c8f-99ee-d3c303f8da33"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2032,17 +2860,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:35 GMT"
+ "Wed, 10 Jun 2015 16:10:22 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2068,16 +2896,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14996"
],
"x-ms-request-id": [
- "264d2794-db9c-43e7-b05f-2d84bc35b0b4"
+ "7b03bf8f-99b0-4248-8332-200bcf4b96a1"
],
"x-ms-correlation-request-id": [
- "264d2794-db9c-43e7-b05f-2d84bc35b0b4"
+ "7b03bf8f-99b0-4248-8332-200bcf4b96a1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164051Z:264d2794-db9c-43e7-b05f-2d84bc35b0b4"
+ "CENTRALUS:20150610T161038Z:7b03bf8f-99b0-4248-8332-200bcf4b96a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2086,17 +2914,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:40:50 GMT"
+ "Wed, 10 Jun 2015 16:10:38 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2122,16 +2950,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14995"
],
"x-ms-request-id": [
- "6bce146a-f0a7-46eb-b9a8-b00c6dc06344"
+ "a3debcb7-c0e9-47a7-9971-384f583c422e"
],
"x-ms-correlation-request-id": [
- "6bce146a-f0a7-46eb-b9a8-b00c6dc06344"
+ "a3debcb7-c0e9-47a7-9971-384f583c422e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164106Z:6bce146a-f0a7-46eb-b9a8-b00c6dc06344"
+ "CENTRALUS:20150610T161053Z:a3debcb7-c0e9-47a7-9971-384f583c422e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2140,17 +2968,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:41:06 GMT"
+ "Wed, 10 Jun 2015 16:10:53 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2176,16 +3004,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14994"
],
"x-ms-request-id": [
- "a03e3458-7158-4bd5-93fe-f8cb5ccf68d8"
+ "023ed7b0-6643-40b2-9f00-54eb1bf57b5a"
],
"x-ms-correlation-request-id": [
- "a03e3458-7158-4bd5-93fe-f8cb5ccf68d8"
+ "023ed7b0-6643-40b2-9f00-54eb1bf57b5a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164121Z:a03e3458-7158-4bd5-93fe-f8cb5ccf68d8"
+ "CENTRALUS:20150610T161108Z:023ed7b0-6643-40b2-9f00-54eb1bf57b5a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2194,17 +3022,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:41:21 GMT"
+ "Wed, 10 Jun 2015 16:11:08 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2230,16 +3058,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14993"
],
"x-ms-request-id": [
- "5b8a0948-a4f7-4cdf-8e6e-842a53a9de4e"
+ "f4ecc50b-5694-4015-bee2-a79371aa6e74"
],
"x-ms-correlation-request-id": [
- "5b8a0948-a4f7-4cdf-8e6e-842a53a9de4e"
+ "f4ecc50b-5694-4015-bee2-a79371aa6e74"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164136Z:5b8a0948-a4f7-4cdf-8e6e-842a53a9de4e"
+ "CENTRALUS:20150610T161123Z:f4ecc50b-5694-4015-bee2-a79371aa6e74"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2248,17 +3076,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:41:36 GMT"
+ "Wed, 10 Jun 2015 16:11:23 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2284,16 +3112,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14992"
],
"x-ms-request-id": [
- "aca4b12b-ea4f-4e8a-a4f1-1f33beeb0c53"
+ "c560098c-fa43-4dfb-a881-b1bc2029bb82"
],
"x-ms-correlation-request-id": [
- "aca4b12b-ea4f-4e8a-a4f1-1f33beeb0c53"
+ "c560098c-fa43-4dfb-a881-b1bc2029bb82"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164151Z:aca4b12b-ea4f-4e8a-a4f1-1f33beeb0c53"
+ "CENTRALUS:20150610T161138Z:c560098c-fa43-4dfb-a881-b1bc2029bb82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2302,17 +3130,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:41:51 GMT"
+ "Wed, 10 Jun 2015 16:11:38 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2338,16 +3166,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14991"
],
"x-ms-request-id": [
- "abb2b0c1-0832-4803-8e34-ffcae500af5a"
+ "1246da12-77b8-44ae-87aa-435796db7922"
],
"x-ms-correlation-request-id": [
- "abb2b0c1-0832-4803-8e34-ffcae500af5a"
+ "1246da12-77b8-44ae-87aa-435796db7922"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164206Z:abb2b0c1-0832-4803-8e34-ffcae500af5a"
+ "CENTRALUS:20150610T161153Z:1246da12-77b8-44ae-87aa-435796db7922"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2356,17 +3184,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:42:06 GMT"
+ "Wed, 10 Jun 2015 16:11:53 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0MjI2LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBNakkyTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs3NjE5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczNOakU1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2389,16 +3217,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14990"
],
"x-ms-request-id": [
- "a1ae8928-3746-4e40-9d38-55312466d42f"
+ "6594db45-40c2-4859-a9fd-ae40bc404d4b"
],
"x-ms-correlation-request-id": [
- "a1ae8928-3746-4e40-9d38-55312466d42f"
+ "6594db45-40c2-4859-a9fd-ae40bc404d4b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T164221Z:a1ae8928-3746-4e40-9d38-55312466d42f"
+ "CENTRALUS:20150610T161209Z:6594db45-40c2-4859-a9fd-ae40bc404d4b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2407,7 +3235,7 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 16:42:21 GMT"
+ "Wed, 10 Jun 2015 16:12:08 GMT"
]
},
"StatusCode": 200
@@ -2415,15 +3243,16 @@
],
"Names": {
"Test-CreateDatabase": [
- "onesdk4226",
- "onesdk770",
- "onesdk23",
- "onesdk1408",
- "onesdk6997",
- "onesdk6522"
+ "onesdk7619",
+ "onesdk1857",
+ "onesdk2401",
+ "onesdk1549",
+ "onesdk967",
+ "onesdk4701",
+ "onesdk7314"
]
},
"Variables": {
- "SubscriptionId": "a4d55cc0-84ec-49a6-84fd-ac40300fe684"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json
index ab1db4fbfbb6..13f48ffc2a3c 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseCreateV2.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1117?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazExMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2103?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14985"
],
"x-ms-request-id": [
- "00618bb4-4e69-4481-be6d-5a8539d85aba"
+ "6414984a-40f7-4bdc-aeda-f845c5123eed"
],
"x-ms-correlation-request-id": [
- "00618bb4-4e69-4481-be6d-5a8539d85aba"
+ "6414984a-40f7-4bdc-aeda-f845c5123eed"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172315Z:00618bb4-4e69-4481-be6d-5a8539d85aba"
+ "CENTRALUS:20150610T074204Z:6414984a-40f7-4bdc-aeda-f845c5123eed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:14 GMT"
+ "Wed, 10 Jun 2015 07:42:05 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1117?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazExMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2103?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14983"
],
"x-ms-request-id": [
- "91b5ffca-7302-4049-84f9-c56d4c94f37f"
+ "60105a33-f7ed-48cf-b482-2e1d3a559fd3"
],
"x-ms-correlation-request-id": [
- "91b5ffca-7302-4049-84f9-c56d4c94f37f"
+ "60105a33-f7ed-48cf-b482-2e1d3a559fd3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172341Z:91b5ffca-7302-4049-84f9-c56d4c94f37f"
+ "CENTRALUS:20150610T074341Z:60105a33-f7ed-48cf-b482-2e1d3a559fd3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:40 GMT"
+ "Wed, 10 Jun 2015 07:43:41 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1117?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazExMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2103?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117\",\r\n \"name\": \"onesdk1117\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103\",\r\n \"name\": \"onesdk2103\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1192"
],
"x-ms-request-id": [
- "6d44f65a-4841-41f7-bbff-84ea5a41e523"
+ "5430b60c-7ddd-482e-b026-9199b81e6583"
],
"x-ms-correlation-request-id": [
- "6d44f65a-4841-41f7-bbff-84ea5a41e523"
+ "5430b60c-7ddd-482e-b026-9199b81e6583"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172315Z:6d44f65a-4841-41f7-bbff-84ea5a41e523"
+ "CENTRALUS:20150610T074305Z:5430b60c-7ddd-482e-b026-9199b81e6583"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:15 GMT"
+ "Wed, 10 Jun 2015 07:43:05 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14984"
],
"x-ms-request-id": [
- "858c599f-e05b-4181-b30b-ac2fc18b7f91"
+ "91cab8d3-eda9-4e95-a080-e349a93f56f0"
],
"x-ms-correlation-request-id": [
- "858c599f-e05b-4181-b30b-ac2fc18b7f91"
+ "91cab8d3-eda9-4e95-a080-e349a93f56f0"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172315Z:858c599f-e05b-4181-b30b-ac2fc18b7f91"
+ "CENTRALUS:20150610T074316Z:91cab8d3-eda9-4e95-a080-e349a93f56f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,14 +193,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:15 GMT"
+ "Wed, 10 Jun 2015 07:43:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1117/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2103/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -226,16 +226,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "centralus:57bac847-4686-4c22-a26f-a08885b29301"
+ "centralus:f8c9f660-e6d4-4757-9fc2-8697141d4b2b"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14957"
],
"x-ms-correlation-request-id": [
- "c6934ef0-7517-4957-aba1-9bfc07db3b22"
+ "0ad15de4-507c-4a55-b714-82287a424e07"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172316Z:c6934ef0-7517-4957-aba1-9bfc07db3b22"
+ "CENTRALUS:20150610T074317Z:0ad15de4-507c-4a55-b714-82287a424e07"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,14 +244,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:15 GMT"
+ "Wed, 10 Jun 2015 07:43:17 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,7 +259,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "77b5605c-544b-4111-8e21-f62ab44f11be"
+ "5c7a3026-e29d-4298-ae3c-98b6d179b672"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "294e7453-82d8-4f28-a512-6e2ede739fdc"
+ "81c346c3-fa3f-4359-b4cb-67bdbf671b84"
],
"x-ms-correlation-request-id": [
- "294e7453-82d8-4f28-a512-6e2ede739fdc"
+ "81c346c3-fa3f-4359-b4cb-67bdbf671b84"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172316Z:294e7453-82d8-4f28-a512-6e2ede739fdc"
+ "CENTRALUS:20150610T074317Z:81c346c3-fa3f-4359-b4cb-67bdbf671b84"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:15 GMT"
+ "Wed, 10 Jun 2015 07:43:16 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,10 +310,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "5a3f815a-c94d-45b7-8833-34815d1edad6"
+ "03c2281c-9f2a-401b-b6b7-c8c4b2ea225a"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559\",\r\n \"name\": \"onesdk1559\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1559.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755\",\r\n \"name\": \"onesdk6755\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6755.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"
@@ -322,7 +322,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "82a721da-61be-4d34-adf1-49d91d6a652d"
+ "71ef3822-a7da-4a83-8f1a-5f34e7b2f1d0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -331,13 +331,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14950"
],
"x-ms-correlation-request-id": [
- "6cc83356-6fb3-42a2-9c42-dcf23adbe56e"
+ "396cfc5c-0fd4-4280-bad5-a0b3287b52c3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172321Z:6cc83356-6fb3-42a2-9c42-dcf23adbe56e"
+ "CENTRALUS:20150610T074325Z:396cfc5c-0fd4-4280-bad5-a0b3287b52c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -346,7 +346,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:21 GMT"
+ "Wed, 10 Jun 2015 07:43:25 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,8 +355,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -364,10 +364,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "29793e88-716a-4edb-a768-0c4db98977f0"
+ "b18608de-6c1a-4f74-98ec-139bb34cd790"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559\",\r\n \"name\": \"onesdk1559\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1559.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755\",\r\n \"name\": \"onesdk6755\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6755.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"
@@ -376,7 +376,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "e6a9f38f-5ace-4abb-8b92-de7af61d1005"
+ "3b38388d-95ba-4ec7-811c-bd4c10d5926f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -385,13 +385,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14948"
],
"x-ms-correlation-request-id": [
- "7cceb5c1-2875-4e11-b6cb-f63ffe453d4d"
+ "36d4d4d2-9132-4480-af09-8a93256b0a86"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172334Z:7cceb5c1-2875-4e11-b6cb-f63ffe453d4d"
+ "CENTRALUS:20150610T074331Z:36d4d4d2-9132-4480-af09-8a93256b0a86"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:34 GMT"
+ "Wed, 10 Jun 2015 07:43:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -409,8 +409,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"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": {
@@ -424,10 +424,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "92913b88-b0c2-4183-ae58-d67689bff220"
+ "2400a421-ec3e-4408-bb67-8f64c5603dc3"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559\",\r\n \"name\": \"onesdk1559\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1559.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755\",\r\n \"name\": \"onesdk6755\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk6755.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"
@@ -436,7 +436,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "5ad4619a-7007-4744-a3d9-25b56fd83923"
+ "ee2af108-b2e2-4786-a7ed-a0f1628d952b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -448,13 +448,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1190"
],
"x-ms-correlation-request-id": [
- "1ef2b568-84eb-4d95-944e-47dd35b42c69"
+ "abba9748-be8f-4d8a-aa58-2db76bc39106"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172321Z:1ef2b568-84eb-4d95-944e-47dd35b42c69"
+ "CENTRALUS:20150610T074325Z:abba9748-be8f-4d8a-aa58-2db76bc39106"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -463,7 +463,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:21 GMT"
+ "Wed, 10 Jun 2015 07:43:25 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -472,8 +472,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559/databases/onesdk1408?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5L2RhdGFiYXNlcy9vbmVzZGsxNDA4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755/databases/onesdk7038?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1L2RhdGFiYXNlcy9vbmVzZGs3MDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -481,7 +481,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "1e017f85-1885-4af3-8656-b2d9b77b2206"
+ "b21ecc3e-4d84-4d89-b1b0-e724da46f231"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -502,13 +502,13 @@
"gateway"
],
"x-ms-request-id": [
- "c3d7f4f8-2e28-4da0-807d-ad6dd38322c4"
+ "0c3505f4-d65e-4caa-ab77-2ebfe83e4bb8"
],
"x-ms-correlation-request-id": [
- "c3d7f4f8-2e28-4da0-807d-ad6dd38322c4"
+ "0c3505f4-d65e-4caa-ab77-2ebfe83e4bb8"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172321Z:c3d7f4f8-2e28-4da0-807d-ad6dd38322c4"
+ "CENTRALUS:20150610T074325Z:0c3505f4-d65e-4caa-ab77-2ebfe83e4bb8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -517,14 +517,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:21 GMT"
+ "Wed, 10 Jun 2015 07:43:25 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559/databases/onesdk1408?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5L2RhdGFiYXNlcy9vbmVzZGsxNDA4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755/databases/onesdk7038?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1L2RhdGFiYXNlcy9vbmVzZGs3MDM4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -538,10 +538,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "359a5947-8d2f-487a-b43b-a87003d9f01a"
+ "f8dda6d5-fdbd-4af2-ab69-765f40f2bc0c"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559/databases/onesdk1408\",\r\n \"name\": \"onesdk1408\",\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\": \"9fd91c3e-35f8-4215-b222-bc3e79d6da05\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T17:23:31.94Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-27T17:24:31.94Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755/databases/onesdk7038\",\r\n \"name\": \"onesdk7038\",\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\": \"2ed02051-e06e-4600-8a69-f649189d5a67\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:43:27.79Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:44:27.79Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"778"
@@ -550,7 +550,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3b8bc967-5781-48d6-a5de-e3fd8aa8a6ed"
+ "9848e8d6-9494-44cd-a478-d34f770778a6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -562,13 +562,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1189"
],
"x-ms-correlation-request-id": [
- "5404c039-fcd3-4cc9-9ac5-99f8b87290f8"
+ "c03831ca-9fcb-4277-bb7e-98ed1ed1afe1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172334Z:5404c039-fcd3-4cc9-9ac5-99f8b87290f8"
+ "CENTRALUS:20150610T074330Z:c03831ca-9fcb-4277-bb7e-98ed1ed1afe1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -577,7 +577,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:34 GMT"
+ "Wed, 10 Jun 2015 07:43:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -586,8 +586,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559/databases/onesdk960?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5L2RhdGFiYXNlcy9vbmVzZGs5NjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755/databases/onesdk2184?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1L2RhdGFiYXNlcy9vbmVzZGsyMTg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -595,7 +595,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "60e0f5ca-97e0-4a19-94a3-aa24eb24f678"
+ "12e7fc9d-d7ea-4c1e-810c-888a93acad61"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -616,13 +616,13 @@
"gateway"
],
"x-ms-request-id": [
- "9dd03af6-428c-486d-b9c1-2cff1dc96dab"
+ "33201db3-ebe3-4acf-bed1-f4f0a28ca13a"
],
"x-ms-correlation-request-id": [
- "9dd03af6-428c-486d-b9c1-2cff1dc96dab"
+ "33201db3-ebe3-4acf-bed1-f4f0a28ca13a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172334Z:9dd03af6-428c-486d-b9c1-2cff1dc96dab"
+ "CENTRALUS:20150610T074331Z:33201db3-ebe3-4acf-bed1-f4f0a28ca13a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -631,14 +631,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:34 GMT"
+ "Wed, 10 Jun 2015 07:43:30 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559/databases/onesdk960?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazExMTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxNTU5L2RhdGFiYXNlcy9vbmVzZGs5NjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755/databases/onesdk2184?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs2NzU1L2RhdGFiYXNlcy9vbmVzZGsyMTg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -652,19 +652,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "c7b70366-e797-4cc0-a320-b0946bd218a5"
+ "22949c33-fb91-426c-a2fb-49b48906e7db"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1117/providers/Microsoft.Sql/servers/onesdk1559/databases/onesdk960\",\r\n \"name\": \"onesdk960\",\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\": \"5ca07740-d5bf-4043-9507-87eb4dfccc8a\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T17:23:39.1Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-27T17:24:39.1Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2103/providers/Microsoft.Sql/servers/onesdk6755/databases/onesdk2184\",\r\n \"name\": \"onesdk2184\",\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\": \"6f3fe241-e717-47ba-a5f7-c565074520ff\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:43:33.843Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:44:33.843Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "774"
+ "780"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "89dbc6d3-c648-4429-b390-ae54bdfcf44b"
+ "a33361b2-eeaa-4ee5-9a15-aff120e120f0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -676,13 +676,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1188"
],
"x-ms-correlation-request-id": [
- "472c656f-a810-4bdd-a1db-afc534d0d281"
+ "e67cdda2-c0e3-47b1-8248-330039ad15ce"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172340Z:472c656f-a810-4bdd-a1db-afc534d0d281"
+ "CENTRALUS:20150610T074336Z:e67cdda2-c0e3-47b1-8248-330039ad15ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -691,7 +691,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:40 GMT"
+ "Wed, 10 Jun 2015 07:43:36 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -700,8 +700,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1117?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazExMTc/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2103?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -724,16 +724,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1191"
],
"x-ms-request-id": [
- "ce581237-c67a-4723-999c-895ef7efc6c5"
+ "ca4d78ab-ce24-4b05-9ca9-28fb48d8ab28"
],
"x-ms-correlation-request-id": [
- "ce581237-c67a-4723-999c-895ef7efc6c5"
+ "ca4d78ab-ce24-4b05-9ca9-28fb48d8ab28"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172341Z:ce581237-c67a-4723-999c-895ef7efc6c5"
+ "CENTRALUS:20150610T074452Z:ca4d78ab-ce24-4b05-9ca9-28fb48d8ab28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -742,17 +742,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:40 GMT"
+ "Wed, 10 Jun 2015 07:44:51 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEF6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -778,16 +778,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14982"
],
"x-ms-request-id": [
- "99f32c2f-609b-4756-ace3-72c4e4f58ed8"
+ "dbbd1f73-af92-46ea-8bac-c816a2f08cfa"
],
"x-ms-correlation-request-id": [
- "99f32c2f-609b-4756-ace3-72c4e4f58ed8"
+ "dbbd1f73-af92-46ea-8bac-c816a2f08cfa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172341Z:99f32c2f-609b-4756-ace3-72c4e4f58ed8"
+ "CENTRALUS:20150610T074500Z:dbbd1f73-af92-46ea-8bac-c816a2f08cfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -796,17 +796,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:41 GMT"
+ "Wed, 10 Jun 2015 07:45:00 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEF6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -835,13 +835,13 @@
"14983"
],
"x-ms-request-id": [
- "4669dc85-1a31-4a35-aa57-c21e24199e08"
+ "6324bf29-f82a-410a-8e9f-7337d0fa4a16"
],
"x-ms-correlation-request-id": [
- "4669dc85-1a31-4a35-aa57-c21e24199e08"
+ "6324bf29-f82a-410a-8e9f-7337d0fa4a16"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172356Z:4669dc85-1a31-4a35-aa57-c21e24199e08"
+ "CENTRALUS:20150610T074516Z:6324bf29-f82a-410a-8e9f-7337d0fa4a16"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -850,17 +850,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:23:56 GMT"
+ "Wed, 10 Jun 2015 07:45:17 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEF6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -889,13 +889,13 @@
"14982"
],
"x-ms-request-id": [
- "9b59e3e6-2540-4e49-a552-b3c9e2c8da92"
+ "c4bf5104-29ea-41b1-8e92-e130357d26ff"
],
"x-ms-correlation-request-id": [
- "9b59e3e6-2540-4e49-a552-b3c9e2c8da92"
+ "c4bf5104-29ea-41b1-8e92-e130357d26ff"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172411Z:9b59e3e6-2540-4e49-a552-b3c9e2c8da92"
+ "CENTRALUS:20150610T074535Z:c4bf5104-29ea-41b1-8e92-e130357d26ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -904,17 +904,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:24:10 GMT"
+ "Wed, 10 Jun 2015 07:45:35 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTAzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEF6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -936,233 +936,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"14981"
],
"x-ms-request-id": [
- "11c7e083-9e1e-4cb1-8aaf-087b0c154e4f"
- ],
- "x-ms-correlation-request-id": [
- "11c7e083-9e1e-4cb1-8aaf-087b0c154e4f"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150527T172426Z:11c7e083-9e1e-4cb1-8aaf-087b0c154e4f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 27 May 2015 17:24:25 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "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": [
- "7c9303ad-59fa-43dd-a5ea-6aa553244839"
- ],
- "x-ms-correlation-request-id": [
- "7c9303ad-59fa-43dd-a5ea-6aa553244839"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150527T172441Z:7c9303ad-59fa-43dd-a5ea-6aa553244839"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 27 May 2015 17:24:41 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "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": [
- "eacf61ec-66bb-48cb-af6c-4b1ce165a047"
- ],
- "x-ms-correlation-request-id": [
- "eacf61ec-66bb-48cb-af6c-4b1ce165a047"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150527T172457Z:eacf61ec-66bb-48cb-af6c-4b1ce165a047"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 27 May 2015 17:24:56 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "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": [
- "aaac184a-603b-49c3-a53a-144198558478"
- ],
- "x-ms-correlation-request-id": [
- "aaac184a-603b-49c3-a53a-144198558478"
- ],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150527T172512Z:aaac184a-603b-49c3-a53a-144198558478"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Wed, 27 May 2015 17:25:12 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
- ]
- },
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMTE3LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNVEUzTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "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": [
- "f03d5932-78e1-4256-8d21-b107dba4c174"
+ "09a1dd5e-9088-4fec-9768-6bbea10a766e"
],
"x-ms-correlation-request-id": [
- "f03d5932-78e1-4256-8d21-b107dba4c174"
+ "09a1dd5e-9088-4fec-9768-6bbea10a766e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T172527Z:f03d5932-78e1-4256-8d21-b107dba4c174"
+ "CENTRALUS:20150610T074554Z:09a1dd5e-9088-4fec-9768-6bbea10a766e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1171,7 +955,7 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:25:27 GMT"
+ "Wed, 10 Jun 2015 07:45:54 GMT"
]
},
"StatusCode": 200
@@ -1179,13 +963,13 @@
],
"Names": {
"Test-CreateDatabaseV2": [
- "onesdk1117",
- "onesdk1559",
- "onesdk1408",
- "onesdk960"
+ "onesdk2103",
+ "onesdk6755",
+ "onesdk7038",
+ "onesdk2184"
]
},
"Variables": {
- "SubscriptionId": "a4d55cc0-84ec-49a6-84fd-ac40300fe684"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGet.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGet.json
index b37c701c1098..1829d229f4a3 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGet.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGet.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk2083?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazIwODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk3983?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31958"
+ "14947"
],
"x-ms-request-id": [
- "077dcfa1-9980-4366-9964-2110625a0fc2"
+ "a873ccbd-f949-4039-ab41-15f3c4d32f52"
],
"x-ms-correlation-request-id": [
- "077dcfa1-9980-4366-9964-2110625a0fc2"
+ "a873ccbd-f949-4039-ab41-15f3c4d32f52"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T215955Z:077dcfa1-9980-4366-9964-2110625a0fc2"
+ "CENTRALUS:20150610T074621Z:a873ccbd-f949-4039-ab41-15f3c4d32f52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 21:59:55 GMT"
+ "Wed, 10 Jun 2015 07:46:20 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk2083?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazIwODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk3983?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31943"
+ "14984"
],
"x-ms-request-id": [
- "e46abcb2-2a7c-4145-a640-e83c9c42d1a9"
+ "22bce5bf-baed-4329-b6c2-b47a3a133d1e"
],
"x-ms-correlation-request-id": [
- "e46abcb2-2a7c-4145-a640-e83c9c42d1a9"
+ "22bce5bf-baed-4329-b6c2-b47a3a133d1e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220214Z:e46abcb2-2a7c-4145-a640-e83c9c42d1a9"
+ "CENTRALUS:20150610T075304Z:22bce5bf-baed-4329-b6c2-b47a3a133d1e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:14 GMT"
+ "Wed, 10 Jun 2015 07:53:04 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk2083?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazIwODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk3983?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5ODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083\",\r\n \"name\": \"onesdk2083\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983\",\r\n \"name\": \"onesdk3983\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1183"
+ "1187"
],
"x-ms-request-id": [
- "ff5b13dd-283c-4e12-8c98-dcfa362672ed"
+ "cc76c438-243f-437d-8dc1-6905c1f7220c"
],
"x-ms-correlation-request-id": [
- "ff5b13dd-283c-4e12-8c98-dcfa362672ed"
+ "cc76c438-243f-437d-8dc1-6905c1f7220c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T215956Z:ff5b13dd-283c-4e12-8c98-dcfa362672ed"
+ "CENTRALUS:20150610T074621Z:cc76c438-243f-437d-8dc1-6905c1f7220c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 21:59:55 GMT"
+ "Wed, 10 Jun 2015 07:46:21 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31957"
+ "14946"
],
"x-ms-request-id": [
- "ab850e07-48df-4220-8af2-ff917ff1e817"
+ "ae4a40aa-423c-4935-9a16-60fed546ed0a"
],
"x-ms-correlation-request-id": [
- "ab850e07-48df-4220-8af2-ff917ff1e817"
+ "ae4a40aa-423c-4935-9a16-60fed546ed0a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T215956Z:ab850e07-48df-4220-8af2-ff917ff1e817"
+ "CENTRALUS:20150610T074621Z:ae4a40aa-423c-4935-9a16-60fed546ed0a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,19 +193,19 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 21:59:55 GMT"
+ "Wed, 10 Jun 2015 07:46:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk2083/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk3983/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0"
+ "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}",
@@ -226,16 +226,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "centralus:26ab44d9-e363-4f9c-826e-455844f1c6fb"
+ "centralus:5572856f-a2bd-4708-bfa1-e4dcd5d3e0b5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31838"
+ "14980"
],
"x-ms-correlation-request-id": [
- "057f1876-16f7-46c7-beab-5f50a7628b53"
+ "a5266dc1-3140-49d3-b367-37b50186a539"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T215956Z:057f1876-16f7-46c7-beab-5f50a7628b53"
+ "CENTRALUS:20150610T074635Z:a5266dc1-3140-49d3-b367-37b50186a539"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,14 +244,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 21:59:56 GMT"
+ "Wed, 10 Jun 2015 07:46:34 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,7 +259,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "36feb8f3-bcdb-41c7-9e6e-993be439d2de"
+ "01acb456-2c7f-4ce5-a48e-b856337d14be"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "9ff1d565-5da0-4469-ad48-82e8f119193f"
+ "4dc6e31b-c8cc-4145-8850-950949c466b9"
],
"x-ms-correlation-request-id": [
- "9ff1d565-5da0-4469-ad48-82e8f119193f"
+ "4dc6e31b-c8cc-4145-8850-950949c466b9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T215956Z:9ff1d565-5da0-4469-ad48-82e8f119193f"
+ "CENTRALUS:20150610T074636Z:4dc6e31b-c8cc-4145-8850-950949c466b9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 21:59:56 GMT"
+ "Wed, 10 Jun 2015 07:46:35 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,19 +310,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "19f7bb60-7641-49ae-a6b2-47e426ddfc3d"
+ "aab36dfc-8165-4a8b-a172-c8cc381202c7"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251\",\r\n \"name\": \"onesdk7251\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7251.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651\",\r\n \"name\": \"onesdk9651\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9651.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": [
- "465"
+ "469"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "dec12a3a-f3d0-43f8-85ab-b8501272f9bb"
+ "4476dccb-5c06-41bb-8690-020701ab28ed"
],
"X-Content-Type-Options": [
"nosniff"
@@ -331,13 +331,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31955"
+ "14975"
],
"x-ms-correlation-request-id": [
- "69df0b65-4dde-4b13-891f-0d03a53e735a"
+ "970a5305-0705-4ba9-8ded-8a758903684d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220032Z:69df0b65-4dde-4b13-891f-0d03a53e735a"
+ "CENTRALUS:20150610T074709Z:970a5305-0705-4ba9-8ded-8a758903684d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -346,7 +346,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:00:32 GMT"
+ "Wed, 10 Jun 2015 07:47:09 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,8 +355,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -364,19 +364,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "aa501d65-df2f-47db-af87-30375319e8be"
+ "46c28597-dd90-4370-99d5-39a867247b26"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251\",\r\n \"name\": \"onesdk7251\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7251.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651\",\r\n \"name\": \"onesdk9651\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9651.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": [
- "465"
+ "469"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "34d542d4-305e-4d14-9275-0f7137797008"
+ "1c8c2831-52bc-44a5-8c5b-ed01c078438c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -385,13 +385,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31950"
+ "14969"
],
"x-ms-correlation-request-id": [
- "92daf64e-1a74-4baf-8bf7-002843be79ca"
+ "f7c1255f-8e19-44c6-a667-bb401b950c82"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220122Z:92daf64e-1a74-4baf-8bf7-002843be79ca"
+ "CENTRALUS:20150610T074817Z:f7c1255f-8e19-44c6-a667-bb401b950c82"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:01:21 GMT"
+ "Wed, 10 Jun 2015 07:48:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -409,34 +409,88 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f5c9402e-c974-4b80-8a9e-12a635091694"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651\",\r\n \"name\": \"onesdk9651\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9651.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "60bdbdce-7fa5-4554-a7bb-93b479d8271b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14963"
+ ],
+ "x-ms-correlation-request-id": [
+ "647543df-977d-44c5-9eba-6513990abac3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T074924Z:647543df-977d-44c5-9eba-6513990abac3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:49:24 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"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\": \"Japan East\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "178"
+ "182"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "52f9c320-f6f7-4ced-bdb4-9f601ded48ca"
+ "42551e7b-78b8-4217-bdfb-c7183eea798f"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251\",\r\n \"name\": \"onesdk7251\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7251.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651\",\r\n \"name\": \"onesdk9651\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9651.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": [
- "479"
+ "483"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "6ce929c5-e075-427a-b81d-7d2c954f75cc"
+ "28cd680e-a2e6-4a9e-818e-0b0b59b3a6f5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -448,13 +502,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1182"
+ "1193"
],
"x-ms-correlation-request-id": [
- "1bcb3115-6ec6-4e33-8281-c99a1b72c4a7"
+ "d5e0d045-5af0-4aa9-aa19-3d459b170b0d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220032Z:1bcb3115-6ec6-4e33-8281-c99a1b72c4a7"
+ "CENTRALUS:20150610T074709Z:d5e0d045-5af0-4aa9-aa19-3d459b170b0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -463,7 +517,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:00:32 GMT"
+ "Wed, 10 Jun 2015 07:47:08 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -472,8 +526,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGs5OTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxNTkxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -481,7 +535,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "69c82c1d-4bee-4b58-94b5-0b3757d84a4c"
+ "da1adf45-7feb-4730-abdc-ede4ac07b3ee"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -502,13 +556,13 @@
"gateway"
],
"x-ms-request-id": [
- "c1ce2608-cf9a-437f-9557-7ce6805eb3f5"
+ "6551882a-7916-4b8c-a348-ea422bc28e28"
],
"x-ms-correlation-request-id": [
- "c1ce2608-cf9a-437f-9557-7ce6805eb3f5"
+ "6551882a-7916-4b8c-a348-ea422bc28e28"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220032Z:c1ce2608-cf9a-437f-9557-7ce6805eb3f5"
+ "CENTRALUS:20150610T074709Z:6551882a-7916-4b8c-a348-ea422bc28e28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -517,14 +571,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:00:32 GMT"
+ "Wed, 10 Jun 2015 07:47:08 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGs5OTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxNTkxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -532,19 +586,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d6dcfbc5-23c3-4e12-8392-4425e797b018"
+ "1037f401-0b36-4a41-be5c-bcf75d5cb813"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994\",\r\n \"name\": \"onesdk9994\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"172c007a-ab45-41d2-85c3-b4c4e2ee5993\",\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-04-09T22:00:34.96Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:11:11.863Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591\",\r\n \"name\": \"onesdk1591\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f340eab5-ec6f-4a2d-bd05-7ff1b9e2ab53\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:47:11.687Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:58:03.27Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "784"
+ "822"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ae79da69-5dc9-4216-9feb-9cf7616a8a94"
+ "ec91e4c8-4160-42d4-a211-2f194acf3ff2"
],
"X-Content-Type-Options": [
"nosniff"
@@ -556,19 +610,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31946"
+ "14947"
],
"x-ms-correlation-request-id": [
- "8063092c-45fb-4a3a-915f-e01e7004f504"
+ "b71013ff-fd75-4b3b-ba21-66282a7b8324"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220212Z:8063092c-45fb-4a3a-915f-e01e7004f504"
+ "CENTRALUS:20150610T075300Z:b71013ff-fd75-4b3b-ba21-66282a7b8324"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:12 GMT"
+ "Wed, 10 Jun 2015 07:53:00 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -577,25 +631,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGs5OTk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxNTkxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "97"
+ "110"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "be67cebe-9d9f-4439-940d-1ff82cb4d4a6"
+ "de07ac26-6381-4a1c-b86a-b35957c17845"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T15:00:34.818-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T00:47:11.561-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -607,7 +661,7 @@
"30"
],
"x-ms-request-id": [
- "3ec45cb8-aff6-4e92-96d0-b5a43b2a98e5"
+ "3c967d97-626e-41be-8b76-611680c41205"
],
"X-Content-Type-Options": [
"nosniff"
@@ -622,22 +676,82 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1181"
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "80baaf50-ba57-4d68-bc00-dc6b673c64cf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T074711Z:80baaf50-ba57-4d68-bc00-dc6b673c64cf"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:47:11 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxNTkxL29wZXJhdGlvblJlc3VsdHMvM2M5NjdkOTctNjI2ZS00MWJlLThiNzYtNjExNjgwYzQxMjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "de07ac26-6381-4a1c-b86a-b35957c17845"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:47:11.547Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "e4364125-5ea2-4733-9f47-755494ee7261"
+ ],
+ "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": [
- "c4b8f604-1572-4921-b63c-263e3906e513"
+ "b6941b12-c080-43b6-830a-ada86dc84bbb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220034Z:c4b8f604-1572-4921-b63c-263e3906e513"
+ "CENTRALUS:20150610T074713Z:b6941b12-c080-43b6-830a-ada86dc84bbb"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:00:33 GMT"
+ "Wed, 10 Jun 2015 07:47:12 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994/operationResults/3ec45cb8-aff6-4e92-96d0-b5a43b2a98e5?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -646,8 +760,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994/operationResults/3ec45cb8-aff6-4e92-96d0-b5a43b2a98e5?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGs5OTk0L29wZXJhdGlvblJlc3VsdHMvM2VjNDVjYjgtYWZmNi00ZTkyLTk2ZDAtYjVhNDNiMmE5OGU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxNTkxL29wZXJhdGlvblJlc3VsdHMvM2M5NjdkOTctNjI2ZS00MWJlLThiNzYtNjExNjgwYzQxMjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -655,10 +769,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "be67cebe-9d9f-4439-940d-1ff82cb4d4a6"
+ "de07ac26-6381-4a1c-b86a-b35957c17845"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:00:34.787Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:47:11.547Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -670,7 +784,7 @@
"30"
],
"x-ms-request-id": [
- "3718c16d-e9c5-402a-85f1-f4e2277060ee"
+ "6ba174aa-3b99-4d33-a32d-299b93dc526d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -682,22 +796,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31954"
+ "14973"
],
"x-ms-correlation-request-id": [
- "e0a65a10-99e7-499d-88e6-bb004a443d75"
+ "55d36232-52a9-4d0e-8be6-a56062aabeae"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220035Z:e0a65a10-99e7-499d-88e6-bb004a443d75"
+ "CENTRALUS:20150610T074744Z:55d36232-52a9-4d0e-8be6-a56062aabeae"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:00:34 GMT"
+ "Wed, 10 Jun 2015 07:47:43 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994/operationResults/3ec45cb8-aff6-4e92-96d0-b5a43b2a98e5?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -706,8 +820,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994/operationResults/3ec45cb8-aff6-4e92-96d0-b5a43b2a98e5?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGs5OTk0L29wZXJhdGlvblJlc3VsdHMvM2VjNDVjYjgtYWZmNi00ZTkyLTk2ZDAtYjVhNDNiMmE5OGU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxNTkxL29wZXJhdGlvblJlc3VsdHMvM2M5NjdkOTctNjI2ZS00MWJlLThiNzYtNjExNjgwYzQxMjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -715,10 +829,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "be67cebe-9d9f-4439-940d-1ff82cb4d4a6"
+ "de07ac26-6381-4a1c-b86a-b35957c17845"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:00:34.787Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:47:11.547Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -730,7 +844,7 @@
"30"
],
"x-ms-request-id": [
- "8ccf6473-2b16-4435-9f3f-2114fbc767bb"
+ "07a9f716-2d67-4be3-a033-4a4d25318ba9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -742,22 +856,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31953"
+ "14972"
],
"x-ms-correlation-request-id": [
- "548d0fd2-71c6-4f2b-9c4a-ea6ee591dd70"
+ "07323622-d1a6-43f0-8e14-c532110b672c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220106Z:548d0fd2-71c6-4f2b-9c4a-ea6ee591dd70"
+ "CENTRALUS:20150610T074800Z:07323622-d1a6-43f0-8e14-c532110b672c"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:01:06 GMT"
+ "Wed, 10 Jun 2015 07:48:00 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994/operationResults/3ec45cb8-aff6-4e92-96d0-b5a43b2a98e5?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -766,8 +880,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994/operationResults/3ec45cb8-aff6-4e92-96d0-b5a43b2a98e5?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGs5OTk0L29wZXJhdGlvblJlc3VsdHMvM2VjNDVjYjgtYWZmNi00ZTkyLTk2ZDAtYjVhNDNiMmE5OGU1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591/operationResults/3c967d97-626e-41be-8b76-611680c41205?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxNTkxL29wZXJhdGlvblJlc3VsdHMvM2M5NjdkOTctNjI2ZS00MWJlLThiNzYtNjExNjgwYzQxMjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -775,19 +889,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "be67cebe-9d9f-4439-940d-1ff82cb4d4a6"
+ "de07ac26-6381-4a1c-b86a-b35957c17845"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994\",\r\n \"name\": \"onesdk9994\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"172c007a-ab45-41d2-85c3-b4c4e2ee5993\",\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-04-09T22:00:34.96Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:11:11.863Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591\",\r\n \"name\": \"onesdk1591\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f340eab5-ec6f-4a2d-bd05-7ff1b9e2ab53\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:47:11.687Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:58:03.27Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "784"
+ "822"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3fde2bb1-cda8-4442-b379-31c463dd0ec5"
+ "de430a02-8acf-4258-9af9-5bbe7bf8e7f4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -799,19 +913,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31952"
+ "14971"
],
"x-ms-correlation-request-id": [
- "d6a272c0-205a-4fbc-ac07-6f9573221d14"
+ "79c94ea1-830f-4272-a9c3-d3bba8472bf9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220122Z:d6a272c0-205a-4fbc-ac07-6f9573221d14"
+ "CENTRALUS:20150610T074816Z:79c94ea1-830f-4272-a9c3-d3bba8472bf9"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:01:21 GMT"
+ "Wed, 10 Jun 2015 07:48:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -820,8 +934,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGsyMDE3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGs3Njk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -829,7 +943,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "9ba7f4ba-1570-4e26-a8be-e34c52016b04"
+ "671d7699-7dc1-4d73-a1e6-547b8c7d0899"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -850,13 +964,13 @@
"gateway"
],
"x-ms-request-id": [
- "1fe6a380-691f-47c6-aeb5-3e1fd4310dcf"
+ "fde62ea8-ab19-4f8f-8097-9d2f8095e8aa"
],
"x-ms-correlation-request-id": [
- "1fe6a380-691f-47c6-aeb5-3e1fd4310dcf"
+ "fde62ea8-ab19-4f8f-8097-9d2f8095e8aa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220122Z:1fe6a380-691f-47c6-aeb5-3e1fd4310dcf"
+ "CENTRALUS:20150610T074816Z:fde62ea8-ab19-4f8f-8097-9d2f8095e8aa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -865,14 +979,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:01:21 GMT"
+ "Wed, 10 Jun 2015 07:48:16 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGsyMDE3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGs3Njk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -880,19 +994,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "09aff553-92ff-4d46-afab-523b2e399a7a"
+ "d6bd9a7f-6991-4c57-aac1-4fcf12316786"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017\",\r\n \"name\": \"onesdk2017\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"18995f84-f1c3-4961-9924-270b67edd33d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-04-09T22:01:24.18Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:12:00.603Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694\",\r\n \"name\": \"onesdk7694\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"58fdce73-71eb-4684-bc20-4ff78d0c9363\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:48:18.793Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:59:13.253Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "785"
+ "826"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "e821da81-1958-4f81-88f6-d6a84e3337b4"
+ "4a5ac48c-697c-4c36-a094-882da16ec2da"
],
"X-Content-Type-Options": [
"nosniff"
@@ -904,19 +1018,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31945"
+ "14946"
],
"x-ms-correlation-request-id": [
- "7d7cf620-fb39-4a1d-a1f6-a5995ba0635c"
+ "1a469b08-4eca-46a0-b205-e69be0044e6f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220213Z:7d7cf620-fb39-4a1d-a1f6-a5995ba0635c"
+ "CENTRALUS:20150610T075301Z:1a469b08-4eca-46a0-b205-e69be0044e6f"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:13 GMT"
+ "Wed, 10 Jun 2015 07:53:01 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -925,25 +1039,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGsyMDE3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGs3Njk0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "231"
+ "235"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f09cd664-2bbc-4b93-bfb9-bd20f262e6ac"
+ "2c574e81-0992-4b33-947e-1608698c44c5"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T15:01:24.021-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T00:48:18.667-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -955,7 +1069,7 @@
"30"
],
"x-ms-request-id": [
- "189cae0e-cdf5-4496-ba3a-dba7db279049"
+ "40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -970,22 +1084,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1180"
+ "1191"
],
"x-ms-correlation-request-id": [
- "08a55476-0d68-4422-a0b3-d89139ffe787"
+ "bf92ce3b-e65a-4f55-8046-d1b654486041"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220123Z:08a55476-0d68-4422-a0b3-d89139ffe787"
+ "CENTRALUS:20150610T074819Z:bf92ce3b-e65a-4f55-8046-d1b654486041"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:01:22 GMT"
+ "Wed, 10 Jun 2015 07:48:18 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017/operationResults/189cae0e-cdf5-4496-ba3a-dba7db279049?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -994,8 +1108,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017/operationResults/189cae0e-cdf5-4496-ba3a-dba7db279049?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGsyMDE3L29wZXJhdGlvblJlc3VsdHMvMTg5Y2FlMGUtY2RmNS00NDk2LWJhM2EtZGJhN2RiMjc5MDQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGs3Njk0L29wZXJhdGlvblJlc3VsdHMvNDBiNzhlMzItMGM5Zi00ZjI0LWFkMGItNjY2ZjZjMWQyYTBhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1003,10 +1117,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f09cd664-2bbc-4b93-bfb9-bd20f262e6ac"
+ "2c574e81-0992-4b33-947e-1608698c44c5"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:01:24.007Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:48:18.637Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1018,7 +1132,7 @@
"30"
],
"x-ms-request-id": [
- "73e6a546-3eb4-4688-9222-68d87683cd7c"
+ "f700e058-0e4f-4cdd-b829-c97446b829bb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1030,22 +1144,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31949"
+ "14968"
],
"x-ms-correlation-request-id": [
- "94eb8ffc-8845-45ba-bd33-89641cf1e773"
+ "83bdfead-217e-4f34-b3a7-a650d53ca571"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220124Z:94eb8ffc-8845-45ba-bd33-89641cf1e773"
+ "CENTRALUS:20150610T074820Z:83bdfead-217e-4f34-b3a7-a650d53ca571"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:01:23 GMT"
+ "Wed, 10 Jun 2015 07:48:19 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017/operationResults/189cae0e-cdf5-4496-ba3a-dba7db279049?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1054,8 +1168,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017/operationResults/189cae0e-cdf5-4496-ba3a-dba7db279049?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGsyMDE3L29wZXJhdGlvblJlc3VsdHMvMTg5Y2FlMGUtY2RmNS00NDk2LWJhM2EtZGJhN2RiMjc5MDQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGs3Njk0L29wZXJhdGlvblJlc3VsdHMvNDBiNzhlMzItMGM5Zi00ZjI0LWFkMGItNjY2ZjZjMWQyYTBhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1063,10 +1177,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f09cd664-2bbc-4b93-bfb9-bd20f262e6ac"
+ "2c574e81-0992-4b33-947e-1608698c44c5"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:01:24.007Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:48:18.637Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1078,7 +1192,7 @@
"30"
],
"x-ms-request-id": [
- "6a316167-9ac0-425f-aeb8-9d0eabf0f502"
+ "59f7ce21-30e6-4912-aaaf-8c3a5a925969"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1090,22 +1204,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31948"
+ "14967"
],
"x-ms-correlation-request-id": [
- "255a4651-4d61-4e77-b446-1fc143bfb192"
+ "5e718799-4212-4d3b-824d-f974d24708f7"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220155Z:255a4651-4d61-4e77-b446-1fc143bfb192"
+ "CENTRALUS:20150610T074851Z:5e718799-4212-4d3b-824d-f974d24708f7"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:01:54 GMT"
+ "Wed, 10 Jun 2015 07:48:51 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017/operationResults/189cae0e-cdf5-4496-ba3a-dba7db279049?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1114,8 +1228,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017/operationResults/189cae0e-cdf5-4496-ba3a-dba7db279049?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcy9vbmVzZGsyMDE3L29wZXJhdGlvblJlc3VsdHMvMTg5Y2FlMGUtY2RmNS00NDk2LWJhM2EtZGJhN2RiMjc5MDQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGs3Njk0L29wZXJhdGlvblJlc3VsdHMvNDBiNzhlMzItMGM5Zi00ZjI0LWFkMGItNjY2ZjZjMWQyYTBhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1123,19 +1237,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f09cd664-2bbc-4b93-bfb9-bd20f262e6ac"
+ "2c574e81-0992-4b33-947e-1608698c44c5"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017\",\r\n \"name\": \"onesdk2017\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"18995f84-f1c3-4961-9924-270b67edd33d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-04-09T22:01:24.18Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:12:00.603Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:48:18.637Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "785"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "a870488f-a226-44e6-a4f7-5c440a9c2969"
+ "debfd75f-7f1d-45ad-8ed5-fa73cbffecd7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1147,29 +1264,32 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31947"
+ "14966"
],
"x-ms-correlation-request-id": [
- "dc095726-fbc7-431d-afd5-a46746391de4"
+ "82edbfe2-229a-4b66-86e6-b3291bacf476"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220211Z:dc095726-fbc7-431d-afd5-a46746391de4"
+ "CENTRALUS:20150610T074907Z:82edbfe2-229a-4b66-86e6-b3291bacf476"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:11 GMT"
+ "Wed, 10 Jun 2015 07:49:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 201
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazIwODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MjUxL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694/operationResults/40b78e32-0c9f-4f24-ad0b-666f6c1d2a0a?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGs3Njk0L29wZXJhdGlvblJlc3VsdHMvNDBiNzhlMzItMGM5Zi00ZjI0LWFkMGItNjY2ZjZjMWQyYTBhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1177,19 +1297,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "c43b59a3-0c1a-4ec4-9482-c53fcd241e8f"
+ "2c574e81-0992-4b33-947e-1608698c44c5"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"8e96dac5-a715-4f3b-8060-85a10658e37d\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-04-09T22:00:20.073Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": null,\r\n \"resourcePoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk2017\",\r\n \"name\": \"onesdk2017\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"18995f84-f1c3-4961-9924-270b67edd33d\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-04-09T22:01:24.18Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:12:00.603Z\",\r\n \"resourcePoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk2083/providers/Microsoft.Sql/servers/onesdk7251/databases/onesdk9994\",\r\n \"name\": \"onesdk9994\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"172c007a-ab45-41d2-85c3-b4c4e2ee5993\",\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-04-09T22:00:34.96Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:11:11.863Z\",\r\n \"resourcePoolName\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694\",\r\n \"name\": \"onesdk7694\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"58fdce73-71eb-4684-bc20-4ff78d0c9363\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:48:18.793Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:59:13.253Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "2309"
+ "826"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "14c8708b-9015-4348-a480-2eefd4b27ef0"
+ "12ac12ea-9cea-45a8-b09a-958f2ba4e48f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1201,40 +1321,46 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31944"
+ "14965"
],
"x-ms-correlation-request-id": [
- "bfe78191-33c7-4fe3-a153-00ebfbc66077"
+ "639cf3e8-5bf5-496a-9dd0-14967f83e689"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220214Z:bfe78191-33c7-4fe3-a153-00ebfbc66077"
+ "CENTRALUS:20150610T074924Z:639cf3e8-5bf5-496a-9dd0-14967f83e689"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:14 GMT"
+ "Wed, 10 Jun 2015 07:49:24 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk2083?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazIwODM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "6c0abc9a-6e66-4f0d-89fc-0ea5a9782993"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
],
"Expires": [
"-1"
@@ -1242,20 +1368,17 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1179"
+ "x-ms-failure-cause": [
+ "gateway"
],
"x-ms-request-id": [
- "a95b3dae-497d-4693-aa94-2480538df7da"
+ "152b0adf-d2a5-4f28-a6df-269d0b40af72"
],
"x-ms-correlation-request-id": [
- "a95b3dae-497d-4693-aa94-2480538df7da"
+ "152b0adf-d2a5-4f28-a6df-269d0b40af72"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220214Z:a95b3dae-497d-4693-aa94-2480538df7da"
+ "CENTRALUS:20150610T074924Z:152b0adf-d2a5-4f28-a6df-269d0b40af72"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1264,160 +1387,997 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:14 GMT"
- ],
- "Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "Wed, 10 Jun 2015 07:49:24 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2014-04-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "dbba996a-017c-4418-a90a-69a5f53e453c"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108\",\r\n \"name\": \"onesdk108\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a17fdb4a-32a7-421b-b822-5758e8f9f91c\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-10T07:49:26.083Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:02:45.093Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
+ "831"
],
- "Expires": [
- "-1"
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
- "Pragma": [
- "no-cache"
+ "x-ms-request-id": [
+ "76647566-7de6-4191-903c-69e9ff017ae8"
],
- "Retry-After": [
- "15"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31942"
+ "DataServiceVersion": [
+ "3.0;"
],
- "x-ms-request-id": [
- "47b47342-c182-45d6-ae1a-3e3421a75b6e"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14949"
],
"x-ms-correlation-request-id": [
- "47b47342-c182-45d6-ae1a-3e3421a75b6e"
+ "547c4701-89c7-4e46-b44c-295017825f14"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220215Z:47b47342-c182-45d6-ae1a-3e3421a75b6e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUS:20150610T075258Z:547c4701-89c7-4e46-b44c-295017825f14"
],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:14 GMT"
+ "Wed, 10 Jun 2015 07:52:57 GMT"
],
- "Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDg/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"DataWarehouse\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"DW100\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
- "x-ms-version": [
- "2014-04-01-preview"
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "242"
],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T00:49:25.972-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
+ "80"
],
- "Pragma": [
- "no-cache"
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31941"
+ "30"
],
"x-ms-request-id": [
- "0bc58cfb-829e-4616-8de4-30ef882d9f08"
+ "b99a9eda-4c04-4df3-ae57-815d2f042f8c"
],
- "x-ms-correlation-request-id": [
- "0bc58cfb-829e-4616-8de4-30ef882d9f08"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150409T220230Z:0bc58cfb-829e-4616-8de4-30ef882d9f08"
+ "Preference-Applied": [
+ "return-content"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1190"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f09a8e3-7158-4380-afca-c30fb07a28c3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T074926Z:7f09a8e3-7158-4380-afca-c30fb07a28c3"
+ ],
"Cache-Control": [
- "no-cache"
+ "no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:30 GMT"
+ "Wed, 10 Jun 2015 07:49:26 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2014-04-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
+ "75"
],
- "Pragma": [
- "no-cache"
+ "Content-Type": [
+ "application/json"
],
"Retry-After": [
- "15"
+ "30"
+ ],
+ "x-ms-request-id": [
+ "9192f58d-5c14-445c-9370-311e1fd7f054"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31940"
+ "14962"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b5f9ae2-b914-4ff0-aa58-03d3b98ecb15"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T074927Z:5b5f9ae2-b914-4ff0-aa58-03d3b98ecb15"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:49:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "956b8618-ef17-448c-a0d2-556e88071272"
+ ],
+ "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": [
+ "49b5e20f-d11a-4e77-ab70-4819fe2e7c9d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T074958Z:49b5e20f-d11a-4e77-ab70-4819fe2e7c9d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:49:58 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "bce4bd7c-83b5-4503-89bd-be893fb9f845"
+ ],
+ "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": [
+ "68fc6eee-5ae4-4cd7-8890-901c62fd4734"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075015Z:68fc6eee-5ae4-4cd7-8890-901c62fd4734"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:50:15 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "d597faa9-e8ba-4bbe-b03f-f9c6ec7f143c"
+ ],
+ "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": [
+ "c4ef910c-ae1c-4ea6-85bc-fc057cb6231d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075031Z:c4ef910c-ae1c-4ea6-85bc-fc057cb6231d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:50:31 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f870ca49-a261-4ef8-8d40-57626b917915"
+ ],
+ "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": [
+ "3ad87b81-d5bd-4d06-b69c-ffe44b395648"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075047Z:3ad87b81-d5bd-4d06-b69c-ffe44b395648"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:50:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "1be895e4-66e8-4d41-8c18-ad1f52d2afc4"
+ ],
+ "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": [
+ "0e2489f0-b79d-4a92-9629-00bdfe006d8d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075103Z:0e2489f0-b79d-4a92-9629-00bdfe006d8d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:51:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "0de168c5-942d-409c-8097-a68b0bcf3765"
+ ],
+ "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": [
+ "41a4dd8d-b953-49d0-b143-00d5f333ebe2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075119Z:41a4dd8d-b953-49d0-b143-00d5f333ebe2"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:51:19 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "b64733f1-585e-4d97-ae3f-dddc872c1983"
+ ],
+ "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": [
+ "912ddf67-5c6c-4289-b208-4c97a0ee2a25"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075136Z:912ddf67-5c6c-4289-b208-4c97a0ee2a25"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:51:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "df5020a6-e12e-478f-a325-babe930f4179"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14954"
+ ],
+ "x-ms-correlation-request-id": [
+ "6eafa8d9-b0b2-44de-9b63-e5f805cc39d7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075152Z:6eafa8d9-b0b2-44de-9b63-e5f805cc39d7"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:51:52 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "4e563198-a049-46a6-a5e7-9895a2b21414"
+ ],
+ "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": [
+ "f2472c84-cd68-466a-90b5-eb7bdc0fe63c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075208Z:f2472c84-cd68-466a-90b5-eb7bdc0fe63c"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:52:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "2cb4d0dc-21d9-4924-a31a-4c8682332ad7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14952"
+ ],
+ "x-ms-correlation-request-id": [
+ "86204981-8f92-4a26-88a3-b7a614c39f9d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075224Z:86204981-8f92-4a26-88a3-b7a614c39f9d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:52:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T07:49:25.94Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "d67c359f-2363-452c-8148-7e16727c17b5"
+ ],
+ "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": [
+ "ba9ead2d-f248-45b1-8d2b-5975f558c746"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075240Z:ba9ead2d-f248-45b1-8d2b-5975f558c746"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:52:40 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108/operationResults/b99a9eda-4c04-4df3-ae57-815d2f042f8c?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcy9vbmVzZGsxMDgvb3BlcmF0aW9uUmVzdWx0cy9iOTlhOWVkYS00YzA0LTRkZjMtYWU1Ny04MTVkMmYwNDJmOGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "4da190c3-40e7-48de-a86a-ac4e6e03df4e"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108\",\r\n \"name\": \"onesdk108\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a17fdb4a-32a7-421b-b822-5758e8f9f91c\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-10T07:49:26.083Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:02:45.093Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "831"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "368b0991-4f7d-48f1-9dd7-c0a1be67de58"
+ ],
+ "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": [
+ "d7c03dce-6995-4a99-b2d2-459fb3d25db2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075257Z:d7c03dce-6995-4a99-b2d2-459fb3d25db2"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:52:56 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazM5ODMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5NjUxL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "d910d066-125f-4dbe-bb0b-e238335edbb0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"a750af5a-bc9b-42f4-a0e0-3de093e3b36d\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-06-10T07:46:56.52Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": null,\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk7694\",\r\n \"name\": \"onesdk7694\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"58fdce73-71eb-4684-bc20-4ff78d0c9363\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:48:18.793Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:59:13.253Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk108\",\r\n \"name\": \"onesdk108\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"a17fdb4a-32a7-421b-b822-5758e8f9f91c\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-10T07:49:26.083Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:02:45.093Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk3983/providers/Microsoft.Sql/servers/onesdk9651/databases/onesdk1591\",\r\n \"name\": \"onesdk1591\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f340eab5-ec6f-4a2d-bd05-7ff1b9e2ab53\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:47:11.687Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:58:03.27Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "3251"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "af2aa80a-fa11-4d09-97fe-6b1e44714adc"
+ ],
+ "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": [
+ "19563b6e-8064-40d9-869a-d2d0c38470b0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T075259Z:19563b6e-8064-40d9-869a-d2d0c38470b0"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 07:52:59 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk3983?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazM5ODM/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": [
+ "1191"
],
"x-ms-request-id": [
- "31f6f9f6-acf7-447f-a344-82df12fec894"
+ "17e4bbaf-a071-4c3b-b2da-3e3adb80bcfa"
],
"x-ms-correlation-request-id": [
- "31f6f9f6-acf7-447f-a344-82df12fec894"
+ "17e4bbaf-a071-4c3b-b2da-3e3adb80bcfa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220245Z:31f6f9f6-acf7-447f-a344-82df12fec894"
+ "CENTRALUS:20150610T075333Z:17e4bbaf-a071-4c3b-b2da-3e3adb80bcfa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1426,17 +2386,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:02:44 GMT"
+ "Wed, 10 Jun 2015 07:53:32 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1462,16 +2422,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31939"
+ "14983"
],
"x-ms-request-id": [
- "249938a9-f34a-41dd-bb69-7e5fd24e5204"
+ "89017390-3902-47c3-b7f8-1436b7a335a7"
],
"x-ms-correlation-request-id": [
- "249938a9-f34a-41dd-bb69-7e5fd24e5204"
+ "89017390-3902-47c3-b7f8-1436b7a335a7"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220300Z:249938a9-f34a-41dd-bb69-7e5fd24e5204"
+ "CENTRALUS:20150610T075334Z:89017390-3902-47c3-b7f8-1436b7a335a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1480,17 +2440,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:03:00 GMT"
+ "Wed, 10 Jun 2015 07:53:34 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1516,16 +2476,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31938"
+ "14982"
],
"x-ms-request-id": [
- "a90207b9-98b0-4701-aea5-e3acd5f4801a"
+ "755d271e-1763-40e0-82ac-1e307118f81f"
],
"x-ms-correlation-request-id": [
- "a90207b9-98b0-4701-aea5-e3acd5f4801a"
+ "755d271e-1763-40e0-82ac-1e307118f81f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220315Z:a90207b9-98b0-4701-aea5-e3acd5f4801a"
+ "CENTRALUS:20150610T075353Z:755d271e-1763-40e0-82ac-1e307118f81f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1534,17 +2494,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:03:15 GMT"
+ "Wed, 10 Jun 2015 07:53:52 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1570,16 +2530,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31937"
+ "14981"
],
"x-ms-request-id": [
- "3f4c0dbd-2dde-49bf-867e-9b0d28aebe0a"
+ "b0e5974b-12a2-4c1f-89cc-12a13feb8990"
],
"x-ms-correlation-request-id": [
- "3f4c0dbd-2dde-49bf-867e-9b0d28aebe0a"
+ "b0e5974b-12a2-4c1f-89cc-12a13feb8990"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220330Z:3f4c0dbd-2dde-49bf-867e-9b0d28aebe0a"
+ "CENTRALUS:20150610T075410Z:b0e5974b-12a2-4c1f-89cc-12a13feb8990"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1588,17 +2548,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:03:30 GMT"
+ "Wed, 10 Jun 2015 07:54:10 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1624,16 +2584,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31936"
+ "14980"
],
"x-ms-request-id": [
- "17f24a4e-548c-4831-a6d5-c074eac0e25a"
+ "d3787084-3776-4642-b1ee-9f29d4172102"
],
"x-ms-correlation-request-id": [
- "17f24a4e-548c-4831-a6d5-c074eac0e25a"
+ "d3787084-3776-4642-b1ee-9f29d4172102"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220345Z:17f24a4e-548c-4831-a6d5-c074eac0e25a"
+ "CENTRALUS:20150610T075426Z:d3787084-3776-4642-b1ee-9f29d4172102"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1642,17 +2602,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:03:45 GMT"
+ "Wed, 10 Jun 2015 07:54:26 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMDgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNRGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREszOTgzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3pPVGd6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1675,16 +2635,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31935"
+ "14979"
],
"x-ms-request-id": [
- "ed264f21-de15-420e-9043-6a2b95bfa285"
+ "1f5b22f1-e3ca-45d9-96f2-02775e51294a"
],
"x-ms-correlation-request-id": [
- "ed264f21-de15-420e-9043-6a2b95bfa285"
+ "1f5b22f1-e3ca-45d9-96f2-02775e51294a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220400Z:ed264f21-de15-420e-9043-6a2b95bfa285"
+ "CENTRALUS:20150610T075444Z:1f5b22f1-e3ca-45d9-96f2-02775e51294a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1693,7 +2653,7 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:04:00 GMT"
+ "Wed, 10 Jun 2015 07:54:45 GMT"
]
},
"StatusCode": 200
@@ -1701,13 +2661,14 @@
],
"Names": {
"Test-GetDatabase": [
- "onesdk2083",
- "onesdk7251",
- "onesdk9994",
- "onesdk2017"
+ "onesdk3983",
+ "onesdk9651",
+ "onesdk1591",
+ "onesdk7694",
+ "onesdk108"
]
},
"Variables": {
- "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json
index aa7e3da552f4..11c959b2d267 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseGetV2.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2115?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14973"
],
"x-ms-request-id": [
- "0ff8879b-d930-4797-8a6f-a570380fc719"
+ "110fde28-6e5d-4ce2-b2d7-41873c842954"
],
"x-ms-correlation-request-id": [
- "0ff8879b-d930-4797-8a6f-a570380fc719"
+ "110fde28-6e5d-4ce2-b2d7-41873c842954"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211128Z:0ff8879b-d930-4797-8a6f-a570380fc719"
+ "CENTRALUS:20150610T073359Z:110fde28-6e5d-4ce2-b2d7-41873c842954"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:28 GMT"
+ "Wed, 10 Jun 2015 07:33:59 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2115?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14971"
],
"x-ms-request-id": [
- "506eece7-37d4-46fd-bade-e5f63ca2fed0"
+ "2e671c21-c841-4460-b015-17e81d6d7d27"
],
"x-ms-correlation-request-id": [
- "506eece7-37d4-46fd-bade-e5f63ca2fed0"
+ "2e671c21-c841-4460-b015-17e81d6d7d27"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211150Z:506eece7-37d4-46fd-bade-e5f63ca2fed0"
+ "CENTRALUS:20150610T073417Z:2e671c21-c841-4460-b015-17e81d6d7d27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:50 GMT"
+ "Wed, 10 Jun 2015 07:34:17 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2115?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094\",\r\n \"name\": \"onesdk1094\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115\",\r\n \"name\": \"onesdk2115\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1193"
],
"x-ms-request-id": [
- "da50acc5-a50d-4a96-a501-dd1add32c762"
+ "bb187738-d3bf-4cf4-b6a6-fd77c11cb75a"
],
"x-ms-correlation-request-id": [
- "da50acc5-a50d-4a96-a501-dd1add32c762"
+ "bb187738-d3bf-4cf4-b6a6-fd77c11cb75a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211129Z:da50acc5-a50d-4a96-a501-dd1add32c762"
+ "CENTRALUS:20150610T073400Z:bb187738-d3bf-4cf4-b6a6-fd77c11cb75a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:28 GMT"
+ "Wed, 10 Jun 2015 07:33:59 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14972"
],
"x-ms-request-id": [
- "54baca39-0550-40d9-9966-afb0d27d9596"
+ "2caf20ba-e617-4215-b37e-68d91a1c5779"
],
"x-ms-correlation-request-id": [
- "54baca39-0550-40d9-9966-afb0d27d9596"
+ "2caf20ba-e617-4215-b37e-68d91a1c5779"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211129Z:54baca39-0550-40d9-9966-afb0d27d9596"
+ "CENTRALUS:20150610T073400Z:2caf20ba-e617-4215-b37e-68d91a1c5779"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,19 +193,19 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:28 GMT"
+ "Wed, 10 Jun 2015 07:33:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2115/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0"
+ "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}",
@@ -226,16 +226,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "centralus:612d6458-56f4-4df5-823e-724522e22fe4"
+ "centralus:88df1ec8-29ef-4ae2-84e5-99c6f0d58390"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14970"
+ "14983"
],
"x-ms-correlation-request-id": [
- "326e6382-b8a5-45ee-a536-7925f2214c39"
+ "0ccbca32-921a-488a-a47a-dd3e3a7b9e15"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211129Z:326e6382-b8a5-45ee-a536-7925f2214c39"
+ "CENTRALUS:20150610T073400Z:0ccbca32-921a-488a-a47a-dd3e3a7b9e15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,14 +244,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:28 GMT"
+ "Wed, 10 Jun 2015 07:34:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,7 +259,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "e133edb2-6c1e-4616-8c98-6c034260ef1f"
+ "d4ae20d2-847f-48c2-98fa-a21d88e163ea"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "16fe1899-46c2-4c4d-a59d-467b39237d21"
+ "8c050dd7-9da0-407d-abcd-89233c0975b5"
],
"x-ms-correlation-request-id": [
- "16fe1899-46c2-4c4d-a59d-467b39237d21"
+ "8c050dd7-9da0-407d-abcd-89233c0975b5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211129Z:16fe1899-46c2-4c4d-a59d-467b39237d21"
+ "CENTRALUS:20150610T073400Z:8c050dd7-9da0-407d-abcd-89233c0975b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:29 GMT"
+ "Wed, 10 Jun 2015 07:34:00 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,10 +310,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "1dd7a72b-ad6d-45b3-a5d8-e98f96bde9d9"
+ "5bb7db42-d707-4a89-ad14-5d8dda6590b5"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307\",\r\n \"name\": \"onesdk3307\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3307.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977\",\r\n \"name\": \"onesdk8977\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8977.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"
@@ -322,7 +322,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "03fa3889-7686-402d-b333-1d95505f7ec9"
+ "fd2ad82a-1ebd-455a-a33b-db0cccfb9aa1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -331,13 +331,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14985"
],
"x-ms-correlation-request-id": [
- "4e2c8434-db91-4dba-9502-b61c674c4a32"
+ "060ef394-d5e9-498e-b993-6a44d374183e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211135Z:4e2c8434-db91-4dba-9502-b61c674c4a32"
+ "CENTRALUS:20150610T073406Z:060ef394-d5e9-498e-b993-6a44d374183e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -346,7 +346,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:35 GMT"
+ "Wed, 10 Jun 2015 07:34:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,8 +355,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -364,10 +364,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "1a46f79c-3ab8-46a4-9029-79de214a3727"
+ "a740aae9-b87c-4b8a-8bf3-97322b3dcc33"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307\",\r\n \"name\": \"onesdk3307\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3307.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977\",\r\n \"name\": \"onesdk8977\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8977.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"
@@ -376,7 +376,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "1b1211d3-0648-42a8-a30f-70c7067524f2"
+ "46129946-a2e6-4322-914e-bc422cebad8a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -385,13 +385,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14983"
],
"x-ms-correlation-request-id": [
- "5d736ac4-7c0c-4721-b0e5-8b621548f021"
+ "8a3b198a-42ce-4fe3-94d2-f46656a3c87f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211143Z:5d736ac4-7c0c-4721-b0e5-8b621548f021"
+ "CENTRALUS:20150610T073410Z:8a3b198a-42ce-4fe3-94d2-f46656a3c87f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:43 GMT"
+ "Wed, 10 Jun 2015 07:34:09 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -409,8 +409,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"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": {
@@ -424,10 +424,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "67b6ab8f-5393-4b70-91f6-6ebaa403d247"
+ "8686ad69-c7da-4f70-9894-6bcf1b185b73"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307\",\r\n \"name\": \"onesdk3307\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk3307.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977\",\r\n \"name\": \"onesdk8977\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk8977.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"
@@ -436,7 +436,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "22e08527-c89c-43b8-9501-61b1fe6d980b"
+ "7a733818-cd4c-48d1-987d-6ada36012aae"
],
"X-Content-Type-Options": [
"nosniff"
@@ -448,13 +448,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1197"
],
"x-ms-correlation-request-id": [
- "c8647c86-f997-45c9-8b32-1aee9d9c2d5f"
+ "1793be82-4a67-444f-a17c-98a7ec92114c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211135Z:c8647c86-f997-45c9-8b32-1aee9d9c2d5f"
+ "CENTRALUS:20150610T073406Z:1793be82-4a67-444f-a17c-98a7ec92114c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -463,7 +463,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:35 GMT"
+ "Wed, 10 Jun 2015 07:34:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -472,8 +472,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGsyMTY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk7359?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3L2RhdGFiYXNlcy9vbmVzZGs3MzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -481,7 +481,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b2a6fae9-2ea4-471d-a7fb-b2729baaf459"
+ "2315723b-66c7-4410-b7df-e361df5485a8"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -502,13 +502,13 @@
"gateway"
],
"x-ms-request-id": [
- "49128689-ca90-40ff-9607-20e2a0770cbb"
+ "6bf02471-b8a0-49c1-a955-2b8f57ccbd3e"
],
"x-ms-correlation-request-id": [
- "49128689-ca90-40ff-9607-20e2a0770cbb"
+ "6bf02471-b8a0-49c1-a955-2b8f57ccbd3e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211135Z:49128689-ca90-40ff-9607-20e2a0770cbb"
+ "CENTRALUS:20150610T073406Z:6bf02471-b8a0-49c1-a955-2b8f57ccbd3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -517,14 +517,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:35 GMT"
+ "Wed, 10 Jun 2015 07:34:05 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGsyMTY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk7359?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3L2RhdGFiYXNlcy9vbmVzZGs3MzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -532,10 +532,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "7cb83833-2a77-492f-ab32-36f8e2349cb2"
+ "ebdb4aed-308d-4718-a3d1-068f70dfa658"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169\",\r\n \"name\": \"onesdk2169\",\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\": \"2bf3fe4d-2416-48a8-98a0-ca122c15895c\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:39.993Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk7359\",\r\n \"name\": \"onesdk7359\",\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\": \"6dcf9612-4f0f-4989-a2fd-3d504fc88b6b\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:34:07.683Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"754"
@@ -544,7 +544,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "63b1b575-c64d-4f3a-bbb6-3d12a28c344a"
+ "c08be3cd-5eb1-448e-9eb7-9c7a84c4e217"
],
"X-Content-Type-Options": [
"nosniff"
@@ -553,13 +553,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14981"
],
"x-ms-correlation-request-id": [
- "1ffd4c9c-c03a-4e30-a4b4-25e4f664f213"
+ "07baba4d-9abc-4d38-b66c-cdc577bb21d6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211149Z:1ffd4c9c-c03a-4e30-a4b4-25e4f664f213"
+ "CENTRALUS:20150610T073416Z:07baba4d-9abc-4d38-b66c-cdc577bb21d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -568,7 +568,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:48 GMT"
+ "Wed, 10 Jun 2015 07:34:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -577,8 +577,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGsyMTY5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk7359?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3L2RhdGFiYXNlcy9vbmVzZGs3MzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -592,10 +592,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b9f9bef7-fd80-45d2-b26e-7ff1371d17aa"
+ "5248d06c-2ab6-4191-8c7e-878754bc7de0"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169\",\r\n \"name\": \"onesdk2169\",\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\": \"2bf3fe4d-2416-48a8-98a0-ca122c15895c\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:39.993Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk7359\",\r\n \"name\": \"onesdk7359\",\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\": \"6dcf9612-4f0f-4989-a2fd-3d504fc88b6b\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:34:07.683Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"754"
@@ -604,7 +604,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "0faca76f-4837-49a9-a5d0-93311904e5c9"
+ "c05f0f8f-b75f-4844-b603-1227e44c8530"
],
"X-Content-Type-Options": [
"nosniff"
@@ -616,13 +616,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1196"
],
"x-ms-correlation-request-id": [
- "f831aec6-b000-442a-98af-f615aac85ccc"
+ "1c7b8a60-04cc-4339-beeb-d866deaaf910"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211143Z:f831aec6-b000-442a-98af-f615aac85ccc"
+ "CENTRALUS:20150610T073409Z:1c7b8a60-04cc-4339-beeb-d866deaaf910"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -631,7 +631,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:42 GMT"
+ "Wed, 10 Jun 2015 07:34:09 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -640,8 +640,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGs2MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk4788?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3L2RhdGFiYXNlcy9vbmVzZGs0Nzg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -649,7 +649,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "dddc94d9-f852-4d66-b985-de1fcd87e335"
+ "79d90cdd-ac2b-4f95-974d-b384699eec48"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -670,13 +670,13 @@
"gateway"
],
"x-ms-request-id": [
- "92ba4266-ad56-4cb8-af76-1b5f923598f0"
+ "ffd91072-eb79-4e8e-aa78-92502cb31150"
],
"x-ms-correlation-request-id": [
- "92ba4266-ad56-4cb8-af76-1b5f923598f0"
+ "ffd91072-eb79-4e8e-aa78-92502cb31150"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211143Z:92ba4266-ad56-4cb8-af76-1b5f923598f0"
+ "CENTRALUS:20150610T073409Z:ffd91072-eb79-4e8e-aa78-92502cb31150"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -685,14 +685,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:43 GMT"
+ "Wed, 10 Jun 2015 07:34:09 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGs2MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk4788?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3L2RhdGFiYXNlcy9vbmVzZGs0Nzg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -700,10 +700,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d6cb3f2c-07ef-4515-bbb5-36c4557b017f"
+ "3784af07-a03e-4981-bc62-cfecd1f71ba0"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258\",\r\n \"name\": \"onesdk6258\",\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\": \"a7d00845-ec1c-4488-8ce4-1b466501347b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:46.34Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:12:46.34Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk4788\",\r\n \"name\": \"onesdk4788\",\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\": \"67daf263-0d3d-4be5-8491-48502e1bc458\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:34:12.84Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:35:12.84Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"778"
@@ -712,7 +712,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "b1b2a392-1484-4cc2-865f-deff00f9a665"
+ "434c0ccf-153a-41c4-bd9a-e5e5c12c2919"
],
"X-Content-Type-Options": [
"nosniff"
@@ -721,13 +721,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14980"
],
"x-ms-correlation-request-id": [
- "b8be65fa-b9ad-4c5b-be95-026249eaaf6f"
+ "a0aab4a4-29ef-4d46-87a4-f5a13b5f4e1c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211149Z:b8be65fa-b9ad-4c5b-be95-026249eaaf6f"
+ "CENTRALUS:20150610T073417Z:a0aab4a4-29ef-4d46-87a4-f5a13b5f4e1c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +736,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:49 GMT"
+ "Wed, 10 Jun 2015 07:34:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -745,8 +745,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcy9vbmVzZGs2MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk4788?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3L2RhdGFiYXNlcy9vbmVzZGs0Nzg4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -760,10 +760,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "dcc7c15d-f77d-494e-8d63-5dab5cc318c6"
+ "a018b424-3f85-4fd8-97f5-d0fbceafccbe"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258\",\r\n \"name\": \"onesdk6258\",\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\": \"a7d00845-ec1c-4488-8ce4-1b466501347b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:46.34Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:12:46.34Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk4788\",\r\n \"name\": \"onesdk4788\",\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\": \"67daf263-0d3d-4be5-8491-48502e1bc458\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:34:12.84Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:35:12.84Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"778"
@@ -772,7 +772,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ea8b88a5-2baa-44c8-b166-6871c2ddde8c"
+ "228539be-7dbb-4f77-9a55-7720bd8401c4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -784,13 +784,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1195"
],
"x-ms-correlation-request-id": [
- "e543f507-ccb2-4888-ab25-5e3b8c3ed440"
+ "887e2d49-1d72-4af5-b2be-5cef6fc15ac7"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211148Z:e543f507-ccb2-4888-ab25-5e3b8c3ed440"
+ "CENTRALUS:20150610T073415Z:887e2d49-1d72-4af5-b2be-5cef6fc15ac7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -799,7 +799,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:48 GMT"
+ "Wed, 10 Jun 2015 07:34:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -808,8 +808,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazEwOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGszMzA3L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazIxMTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs4OTc3L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -817,19 +817,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "6554803c-bb98-4f8b-acb1-b0252b923ee6"
+ "e139996d-b05e-4410-aef3-4df12cecf002"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"a4955e76-65f0-4415-80d1-ae6d73a8a280\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-05-13T21:11:32.59Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk2169\",\r\n \"name\": \"onesdk2169\",\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\": \"2bf3fe4d-2416-48a8-98a0-ca122c15895c\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:39.993Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk1094/providers/Microsoft.Sql/servers/onesdk3307/databases/onesdk6258\",\r\n \"name\": \"onesdk6258\",\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\": \"a7d00845-ec1c-4488-8ce4-1b466501347b\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:11:46.34Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:12:46.34Z\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"3768041a-689b-4882-8dc7-4bc56bc2785f\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-06-10T07:34:03.473Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk7359\",\r\n \"name\": \"onesdk7359\",\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\": \"6dcf9612-4f0f-4989-a2fd-3d504fc88b6b\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:34:07.683Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2115/providers/Microsoft.Sql/servers/onesdk8977/databases/onesdk4788\",\r\n \"name\": \"onesdk4788\",\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\": \"67daf263-0d3d-4be5-8491-48502e1bc458\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:34:12.84Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:35:12.84Z\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "2266"
+ "2267"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "78aecea8-bba8-4d65-975a-e693ef9e2b6e"
+ "06223eaf-6b91-4ee3-941b-8d8eb217db7d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -838,13 +838,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14982"
],
"x-ms-correlation-request-id": [
- "392f80d8-5edb-46c0-b9d1-f8902a5962fb"
+ "73666092-a08f-4c5e-b15e-3ab2756a750b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211150Z:392f80d8-5edb-46c0-b9d1-f8902a5962fb"
+ "CENTRALUS:20150610T073416Z:73666092-a08f-4c5e-b15e-3ab2756a750b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -853,7 +853,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:49 GMT"
+ "Wed, 10 Jun 2015 07:34:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -862,8 +862,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk1094?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazEwOTQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2115?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazIxMTU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -886,16 +886,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1192"
],
"x-ms-request-id": [
- "ebebb45c-ef54-42c4-b59a-9eedbc92910f"
+ "c490233e-524c-4c91-a6d6-e00c1c6c42f4"
],
"x-ms-correlation-request-id": [
- "ebebb45c-ef54-42c4-b59a-9eedbc92910f"
+ "c490233e-524c-4c91-a6d6-e00c1c6c42f4"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211150Z:ebebb45c-ef54-42c4-b59a-9eedbc92910f"
+ "CENTRALUS:20150610T073417Z:c490233e-524c-4c91-a6d6-e00c1c6c42f4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -904,17 +904,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:50 GMT"
+ "Wed, 10 Jun 2015 07:34:17 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -940,16 +940,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14970"
],
"x-ms-request-id": [
- "bcff0452-1e4b-4e49-bd7f-f5675218dfe4"
+ "ffa6561e-abf5-4745-a471-2d894f84c2d1"
],
"x-ms-correlation-request-id": [
- "bcff0452-1e4b-4e49-bd7f-f5675218dfe4"
+ "ffa6561e-abf5-4745-a471-2d894f84c2d1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211150Z:bcff0452-1e4b-4e49-bd7f-f5675218dfe4"
+ "CENTRALUS:20150610T073417Z:ffa6561e-abf5-4745-a471-2d894f84c2d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -958,17 +958,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:11:50 GMT"
+ "Wed, 10 Jun 2015 07:34:17 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -994,16 +994,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14969"
],
"x-ms-request-id": [
- "01adffa4-a790-46c9-a07d-5a90798fe99c"
+ "22bbc2f5-db65-4269-82cc-94607fbe3afb"
],
"x-ms-correlation-request-id": [
- "01adffa4-a790-46c9-a07d-5a90798fe99c"
+ "22bbc2f5-db65-4269-82cc-94607fbe3afb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211206Z:01adffa4-a790-46c9-a07d-5a90798fe99c"
+ "CENTRALUS:20150610T073432Z:22bbc2f5-db65-4269-82cc-94607fbe3afb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1012,17 +1012,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:12:06 GMT"
+ "Wed, 10 Jun 2015 07:34:32 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1048,16 +1048,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14968"
],
"x-ms-request-id": [
- "e18e0356-e12b-47a4-9a65-747127cf731c"
+ "35c9a705-638c-4511-96e2-6a8e74491426"
],
"x-ms-correlation-request-id": [
- "e18e0356-e12b-47a4-9a65-747127cf731c"
+ "35c9a705-638c-4511-96e2-6a8e74491426"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211221Z:e18e0356-e12b-47a4-9a65-747127cf731c"
+ "CENTRALUS:20150610T073447Z:35c9a705-638c-4511-96e2-6a8e74491426"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1066,17 +1066,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:12:21 GMT"
+ "Wed, 10 Jun 2015 07:34:47 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1102,16 +1102,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14967"
],
"x-ms-request-id": [
- "e66cc873-c036-4f0b-8329-2fbe53f57423"
+ "36091e50-b366-49bf-873f-bc523389a076"
],
"x-ms-correlation-request-id": [
- "e66cc873-c036-4f0b-8329-2fbe53f57423"
+ "36091e50-b366-49bf-873f-bc523389a076"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211236Z:e66cc873-c036-4f0b-8329-2fbe53f57423"
+ "CENTRALUS:20150610T073502Z:36091e50-b366-49bf-873f-bc523389a076"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1120,17 +1120,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:12:35 GMT"
+ "Wed, 10 Jun 2015 07:35:02 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1156,16 +1156,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14966"
],
"x-ms-request-id": [
- "2f0cbf6c-7aa9-4d0e-8651-5d98989b83b0"
+ "5f145b7f-7004-4702-8feb-85113688470d"
],
"x-ms-correlation-request-id": [
- "2f0cbf6c-7aa9-4d0e-8651-5d98989b83b0"
+ "5f145b7f-7004-4702-8feb-85113688470d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211251Z:2f0cbf6c-7aa9-4d0e-8651-5d98989b83b0"
+ "CENTRALUS:20150610T073518Z:5f145b7f-7004-4702-8feb-85113688470d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1174,17 +1174,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:12:51 GMT"
+ "Wed, 10 Jun 2015 07:35:18 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1210,16 +1210,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14965"
],
"x-ms-request-id": [
- "57392a91-10d1-4985-ad31-4abf1c3bd5d8"
+ "7e12e7e4-dccc-4659-a975-f0ec3f6e8e22"
],
"x-ms-correlation-request-id": [
- "57392a91-10d1-4985-ad31-4abf1c3bd5d8"
+ "7e12e7e4-dccc-4659-a975-f0ec3f6e8e22"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211306Z:57392a91-10d1-4985-ad31-4abf1c3bd5d8"
+ "CENTRALUS:20150610T073533Z:7e12e7e4-dccc-4659-a975-f0ec3f6e8e22"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1228,17 +1228,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:13:05 GMT"
+ "Wed, 10 Jun 2015 07:35:32 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1264,16 +1264,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14964"
],
"x-ms-request-id": [
- "3778d7f5-038a-431e-8871-2e38e62d0031"
+ "2dc5678e-08ea-4c04-b54a-c995fa750116"
],
"x-ms-correlation-request-id": [
- "3778d7f5-038a-431e-8871-2e38e62d0031"
+ "2dc5678e-08ea-4c04-b54a-c995fa750116"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211321Z:3778d7f5-038a-431e-8871-2e38e62d0031"
+ "CENTRALUS:20150610T073548Z:2dc5678e-08ea-4c04-b54a-c995fa750116"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1282,17 +1282,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:13:21 GMT"
+ "Wed, 10 Jun 2015 07:35:48 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxMDk0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hNRGswTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyMTE1LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lNVEUxTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1315,16 +1315,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14963"
],
"x-ms-request-id": [
- "66683eb5-591e-4978-9dd5-b6df0f9504fa"
+ "51e1cc80-8abc-4bce-9ecc-9849e9c3f720"
],
"x-ms-correlation-request-id": [
- "66683eb5-591e-4978-9dd5-b6df0f9504fa"
+ "51e1cc80-8abc-4bce-9ecc-9849e9c3f720"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T211336Z:66683eb5-591e-4978-9dd5-b6df0f9504fa"
+ "CENTRALUS:20150610T073603Z:51e1cc80-8abc-4bce-9ecc-9849e9c3f720"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1333,7 +1333,7 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:13:36 GMT"
+ "Wed, 10 Jun 2015 07:36:03 GMT"
]
},
"StatusCode": 200
@@ -1341,13 +1341,13 @@
],
"Names": {
"Test-GetDatabaseV2": [
- "onesdk1094",
- "onesdk3307",
- "onesdk2169",
- "onesdk6258"
+ "onesdk2115",
+ "onesdk8977",
+ "onesdk7359",
+ "onesdk4788"
]
},
"Variables": {
- "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemove.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemove.json
index 557159cdcccc..d6b96f48bc6e 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemove.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemove.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9452?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0NTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk9933?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31853"
+ "14967"
],
"x-ms-request-id": [
- "76e5e927-429a-4322-bf13-afa8949fc6a0"
+ "003c41b3-2bd9-4d42-83d3-dcae8cce354d"
],
"x-ms-correlation-request-id": [
- "76e5e927-429a-4322-bf13-afa8949fc6a0"
+ "003c41b3-2bd9-4d42-83d3-dcae8cce354d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220927Z:76e5e927-429a-4322-bf13-afa8949fc6a0"
+ "CENTRALUS:20150610T080521Z:003c41b3-2bd9-4d42-83d3-dcae8cce354d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:09:27 GMT"
+ "Wed, 10 Jun 2015 08:05:21 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9452?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0NTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk9933?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31838"
+ "14923"
],
"x-ms-request-id": [
- "1d7f1600-f6a8-477e-bff6-45208c0df235"
+ "3b5b44d1-1f74-4ec9-b497-5ae7b53c6adb"
],
"x-ms-correlation-request-id": [
- "1d7f1600-f6a8-477e-bff6-45208c0df235"
+ "3b5b44d1-1f74-4ec9-b497-5ae7b53c6adb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221202Z:1d7f1600-f6a8-477e-bff6-45208c0df235"
+ "CENTRALUS:20150610T081255Z:3b5b44d1-1f74-4ec9-b497-5ae7b53c6adb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:02 GMT"
+ "Wed, 10 Jun 2015 08:12:55 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9452?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0NTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk9933?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452\",\r\n \"name\": \"onesdk9452\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933\",\r\n \"name\": \"onesdk9933\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1151"
+ "1190"
],
"x-ms-request-id": [
- "324f5660-97fc-41c7-b18d-fc682e0bdadb"
+ "470c6093-6384-42f2-9482-6ef206fe25fa"
],
"x-ms-correlation-request-id": [
- "324f5660-97fc-41c7-b18d-fc682e0bdadb"
+ "470c6093-6384-42f2-9482-6ef206fe25fa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220927Z:324f5660-97fc-41c7-b18d-fc682e0bdadb"
+ "CENTRALUS:20150610T080521Z:470c6093-6384-42f2-9482-6ef206fe25fa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:09:27 GMT"
+ "Wed, 10 Jun 2015 08:05:21 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31852"
+ "14966"
],
"x-ms-request-id": [
- "cba80446-1476-43a8-8042-8366237d26ef"
+ "389ac279-23eb-455c-a28c-e2a5d4904501"
],
"x-ms-correlation-request-id": [
- "cba80446-1476-43a8-8042-8366237d26ef"
+ "389ac279-23eb-455c-a28c-e2a5d4904501"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220928Z:cba80446-1476-43a8-8042-8366237d26ef"
+ "CENTRALUS:20150610T080521Z:389ac279-23eb-455c-a28c-e2a5d4904501"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,19 +193,19 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:09:27 GMT"
+ "Wed, 10 Jun 2015 08:05:21 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9452/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk9933/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0"
+ "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}",
@@ -226,16 +226,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "centralus:427d52da-ab9e-4bff-bc4d-0d4bd4e4688c"
+ "centralus:2111e234-c363-47d9-9136-6295b4aaa0b9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31936"
+ "14985"
],
"x-ms-correlation-request-id": [
- "46b2c560-7224-4187-90f3-8585f9c15d39"
+ "d9d03ff1-461f-4db0-a180-bfd027e70c3b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220928Z:46b2c560-7224-4187-90f3-8585f9c15d39"
+ "CENTRALUS:20150610T080524Z:d9d03ff1-461f-4db0-a180-bfd027e70c3b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,14 +244,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:09:28 GMT"
+ "Wed, 10 Jun 2015 08:05:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,7 +259,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0d187a5d-e4e4-4a08-9a98-df90e954b13d"
+ "00305d89-a096-418a-a169-b43f3e731665"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "ce17501e-b32a-4c7c-8a41-c9a05a0fb1b5"
+ "54910519-263a-4d50-a972-b9037c5ad560"
],
"x-ms-correlation-request-id": [
- "ce17501e-b32a-4c7c-8a41-c9a05a0fb1b5"
+ "54910519-263a-4d50-a972-b9037c5ad560"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T220928Z:ce17501e-b32a-4c7c-8a41-c9a05a0fb1b5"
+ "CENTRALUS:20150610T080524Z:54910519-263a-4d50-a972-b9037c5ad560"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:09:28 GMT"
+ "Wed, 10 Jun 2015 08:05:24 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,19 +310,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "3a90329b-7b85-4973-9fd2-bb88d99de810"
+ "e593607c-993a-4df4-8104-685677ff7496"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046\",\r\n \"name\": \"onesdk9046\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9046.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021\",\r\n \"name\": \"onesdk9021\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9021.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": [
- "465"
+ "469"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "31b157f4-fdee-419a-8a2d-c0106e2817da"
+ "278749ec-e08f-44aa-a076-eb45662757f3"
],
"X-Content-Type-Options": [
"nosniff"
@@ -331,13 +331,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31851"
+ "14943"
],
"x-ms-correlation-request-id": [
- "15fc323a-2909-47d1-9db5-4fedce8dbb94"
+ "13185bd5-763d-4e8e-bdc1-b835c5ff132b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221003Z:15fc323a-2909-47d1-9db5-4fedce8dbb94"
+ "CENTRALUS:20150610T080607Z:13185bd5-763d-4e8e-bdc1-b835c5ff132b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -346,7 +346,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:03 GMT"
+ "Wed, 10 Jun 2015 08:06:07 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,8 +355,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -364,19 +364,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "e084a2ef-898a-45f9-8bdb-1251d6f64d9f"
+ "6b77d9a5-131a-4913-9f13-3846c323e16e"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046\",\r\n \"name\": \"onesdk9046\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9046.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021\",\r\n \"name\": \"onesdk9021\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9021.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": [
- "465"
+ "469"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "fc7c96ce-ad46-4c86-b6cb-b4203419f88f"
+ "d9a13cbc-d99c-4477-924c-6ab76971dd4f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -385,13 +385,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31846"
+ "14936"
],
"x-ms-correlation-request-id": [
- "0cb7717f-47d6-432f-9bec-2192b6af5cef"
+ "b8765fef-2c42-4ccd-896b-169a39715ad3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221053Z:0cb7717f-47d6-432f-9bec-2192b6af5cef"
+ "CENTRALUS:20150610T080731Z:b8765fef-2c42-4ccd-896b-169a39715ad3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:52 GMT"
+ "Wed, 10 Jun 2015 08:07:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -409,34 +409,88 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "9b393920-db84-49f4-9bc6-3e410c44ecae"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021\",\r\n \"name\": \"onesdk9021\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9021.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "c6d4c947-b208-468f-9680-a4af43ba705e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14930"
+ ],
+ "x-ms-correlation-request-id": [
+ "25817b60-6c1d-4b87-af62-fc1892da53bb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080838Z:25817b60-6c1d-4b87-af62-fc1892da53bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:08:37 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"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\": \"Japan East\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "178"
+ "182"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "aee7c146-46e1-4919-9d7c-cc5b2e611b49"
+ "65ab5289-abbf-46fc-996a-f3518682bf87"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046\",\r\n \"name\": \"onesdk9046\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9046.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021\",\r\n \"name\": \"onesdk9021\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9021.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": [
- "479"
+ "483"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "21d79f0b-159a-44f8-9b5f-2b85fd06aa78"
+ "48153c90-1a2b-407c-b8c0-3750576a1ebc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -448,13 +502,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1150"
+ "1188"
],
"x-ms-correlation-request-id": [
- "5604f635-5bbf-406f-8bb0-06eb47c0df43"
+ "c03ace80-17a4-4df2-a6e0-b8c6bbfebd1b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221003Z:5604f635-5bbf-406f-8bb0-06eb47c0df43"
+ "CENTRALUS:20150610T080607Z:c03ace80-17a4-4df2-a6e0-b8c6bbfebd1b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -463,7 +517,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:03 GMT"
+ "Wed, 10 Jun 2015 08:06:07 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -472,8 +526,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGsxNjk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -481,7 +535,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "3d2086fd-8090-49a6-b1f2-2f17f5967ef5"
+ "55841fde-e092-4d9c-a938-8982797f46df"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -502,13 +556,13 @@
"gateway"
],
"x-ms-request-id": [
- "a583be40-f147-491c-ae89-7a716c7d4c09"
+ "e5490c16-146d-48fe-bd42-6005a09cdefc"
],
"x-ms-correlation-request-id": [
- "a583be40-f147-491c-ae89-7a716c7d4c09"
+ "e5490c16-146d-48fe-bd42-6005a09cdefc"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221003Z:a583be40-f147-491c-ae89-7a716c7d4c09"
+ "CENTRALUS:20150610T080607Z:e5490c16-146d-48fe-bd42-6005a09cdefc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -517,14 +571,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:03 GMT"
+ "Wed, 10 Jun 2015 08:06:07 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGsxNjk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -532,19 +586,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f3df2446-e530-44c3-aed2-40b27c8b7854"
+ "6288e06f-ad38-4d77-8c77-fed0dfc4ecdd"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699\",\r\n \"name\": \"onesdk1699\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"f8ada568-6176-495f-874e-768507871df8\",\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-04-09T22:10:06.303Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:20:43.297Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944\",\r\n \"name\": \"onesdk9944\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b319ce21-1334-4543-8b9c-d659ad233a12\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T08:06:09.28Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:17:18.073Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "785"
+ "822"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "53b109d4-65c9-4e95-a14e-74b18dd04ff3"
+ "d8253d98-1fe7-4393-a9ce-5af2130ec1c9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -556,19 +610,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31841"
+ "14915"
],
"x-ms-correlation-request-id": [
- "a61bbcfa-65a7-42c1-9ec5-f8b28e55554d"
+ "99def40b-596d-410a-a22b-610405844599"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221144Z:a61bbcfa-65a7-42c1-9ec5-f8b28e55554d"
+ "CENTRALUS:20150610T081230Z:99def40b-596d-410a-a22b-610405844599"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:11:44 GMT"
+ "Wed, 10 Jun 2015 08:12:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -577,25 +631,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGsxNjk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"0\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "97"
+ "110"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d091e4d0-f06a-4b94-b17f-61d46e100dcc"
+ "e0c86a24-2a06-425c-9dba-119671b6aa11"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T15:10:06.101-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T01:06:09.171-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -607,7 +661,7 @@
"30"
],
"x-ms-request-id": [
- "59a503d6-577d-4351-9850-06d303063fa9"
+ "4af5e7f0-313b-4a46-bfb7-34bcac952c26"
],
"X-Content-Type-Options": [
"nosniff"
@@ -622,22 +676,142 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1149"
+ "1187"
+ ],
+ "x-ms-correlation-request-id": [
+ "53484594-c607-4f9b-a200-cbfe723cfda7"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080609Z:53484594-c607-4f9b-a200-cbfe723cfda7"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:06:09 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0L29wZXJhdGlvblJlc3VsdHMvNGFmNWU3ZjAtMzEzYi00YTQ2LWJmYjctMzRiY2FjOTUyYzI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e0c86a24-2a06-425c-9dba-119671b6aa11"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:06:09.157Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f8551214-c324-4202-8bce-142b64813f17"
+ ],
+ "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": [
+ "e1624799-7951-4081-bf82-a5e3404969af"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080610Z:e1624799-7951-4081-bf82-a5e3404969af"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:06:10 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0L29wZXJhdGlvblJlc3VsdHMvNGFmNWU3ZjAtMzEzYi00YTQ2LWJmYjctMzRiY2FjOTUyYzI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "e0c86a24-2a06-425c-9dba-119671b6aa11"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:06:09.157Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "71322011-8fd7-42e8-a773-e283cd228157"
+ ],
+ "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": [
- "4e5f4bae-72da-4bbd-89fb-bd7b84eb2b79"
+ "d6edb102-d95e-4fdf-93d9-1cf2cbddc71f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221005Z:4e5f4bae-72da-4bbd-89fb-bd7b84eb2b79"
+ "CENTRALUS:20150610T080641Z:d6edb102-d95e-4fdf-93d9-1cf2cbddc71f"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:05 GMT"
+ "Wed, 10 Jun 2015 08:06:41 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699/operationResults/59a503d6-577d-4351-9850-06d303063fa9?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -646,8 +820,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699/operationResults/59a503d6-577d-4351-9850-06d303063fa9?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGsxNjk5L29wZXJhdGlvblJlc3VsdHMvNTlhNTAzZDYtNTc3ZC00MzUxLTk4NTAtMDZkMzAzMDYzZmE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0L29wZXJhdGlvblJlc3VsdHMvNGFmNWU3ZjAtMzEzYi00YTQ2LWJmYjctMzRiY2FjOTUyYzI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -655,10 +829,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d091e4d0-f06a-4b94-b17f-61d46e100dcc"
+ "e0c86a24-2a06-425c-9dba-119671b6aa11"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:10:06.07Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:06:09.157Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -670,7 +844,7 @@
"30"
],
"x-ms-request-id": [
- "c825b9a6-b24e-46c6-9e4c-bbb0fed5ed2f"
+ "23e59ec8-cd5c-44b5-ae06-a0ce58d2fcc9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -682,22 +856,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31850"
+ "14940"
],
"x-ms-correlation-request-id": [
- "fdbcffe5-1aba-4fb4-b322-2390c02a5787"
+ "8e324e47-27c3-4b0f-8832-e2c3b43dfd0f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221006Z:fdbcffe5-1aba-4fb4-b322-2390c02a5787"
+ "CENTRALUS:20150610T080658Z:8e324e47-27c3-4b0f-8832-e2c3b43dfd0f"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:05 GMT"
+ "Wed, 10 Jun 2015 08:06:57 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699/operationResults/59a503d6-577d-4351-9850-06d303063fa9?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -706,8 +880,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699/operationResults/59a503d6-577d-4351-9850-06d303063fa9?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGsxNjk5L29wZXJhdGlvblJlc3VsdHMvNTlhNTAzZDYtNTc3ZC00MzUxLTk4NTAtMDZkMzAzMDYzZmE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0L29wZXJhdGlvblJlc3VsdHMvNGFmNWU3ZjAtMzEzYi00YTQ2LWJmYjctMzRiY2FjOTUyYzI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -715,10 +889,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d091e4d0-f06a-4b94-b17f-61d46e100dcc"
+ "e0c86a24-2a06-425c-9dba-119671b6aa11"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:10:06.07Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:06:09.157Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -730,7 +904,7 @@
"30"
],
"x-ms-request-id": [
- "869b346d-694f-44ef-9a58-d4e196197b23"
+ "97786d34-9be7-4f4d-8d0f-84d92f7d8432"
],
"X-Content-Type-Options": [
"nosniff"
@@ -742,22 +916,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31849"
+ "14939"
],
"x-ms-correlation-request-id": [
- "4fe95e58-15f8-48d6-8cc4-f4792a1e4e2a"
+ "00a047bd-0afe-4326-a9fa-ae460859618d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221037Z:4fe95e58-15f8-48d6-8cc4-f4792a1e4e2a"
+ "CENTRALUS:20150610T080714Z:00a047bd-0afe-4326-a9fa-ae460859618d"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:36 GMT"
+ "Wed, 10 Jun 2015 08:07:13 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699/operationResults/59a503d6-577d-4351-9850-06d303063fa9?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -766,8 +940,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699/operationResults/59a503d6-577d-4351-9850-06d303063fa9?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGsxNjk5L29wZXJhdGlvblJlc3VsdHMvNTlhNTAzZDYtNTc3ZC00MzUxLTk4NTAtMDZkMzAzMDYzZmE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944/operationResults/4af5e7f0-313b-4a46-bfb7-34bcac952c26?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0L29wZXJhdGlvblJlc3VsdHMvNGFmNWU3ZjAtMzEzYi00YTQ2LWJmYjctMzRiY2FjOTUyYzI2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -775,19 +949,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d091e4d0-f06a-4b94-b17f-61d46e100dcc"
+ "e0c86a24-2a06-425c-9dba-119671b6aa11"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699\",\r\n \"name\": \"onesdk1699\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"f8ada568-6176-495f-874e-768507871df8\",\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-04-09T22:10:06.303Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:20:43.297Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944\",\r\n \"name\": \"onesdk9944\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b319ce21-1334-4543-8b9c-d659ad233a12\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T08:06:09.28Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:17:18.073Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "785"
+ "822"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "1cf557b5-8976-4bd9-8d65-29aebbda1cdd"
+ "f1d2b470-f192-4568-853f-db165ca964e5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -799,19 +973,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31848"
+ "14938"
],
"x-ms-correlation-request-id": [
- "323d6fc1-51fb-4e2b-8fca-66bcd69ed730"
+ "b8841d28-87f8-447f-b63e-b914bc546f29"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221053Z:323d6fc1-51fb-4e2b-8fca-66bcd69ed730"
+ "CENTRALUS:20150610T080730Z:b8841d28-87f8-447f-b63e-b914bc546f29"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:52 GMT"
+ "Wed, 10 Jun 2015 08:07:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -820,8 +994,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGs5ODc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -829,7 +1003,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "68fd2636-d7ab-4781-83cd-590c8c91022c"
+ "413b0359-5e16-4d95-a6af-be8e773756fc"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -850,13 +1024,13 @@
"gateway"
],
"x-ms-request-id": [
- "dafed848-5520-4544-927f-c08565183636"
+ "f8782e36-89a0-4fb3-8e4f-d077c876f585"
],
"x-ms-correlation-request-id": [
- "dafed848-5520-4544-927f-c08565183636"
+ "f8782e36-89a0-4fb3-8e4f-d077c876f585"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221053Z:dafed848-5520-4544-927f-c08565183636"
+ "CENTRALUS:20150610T080730Z:f8782e36-89a0-4fb3-8e4f-d077c876f585"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -865,14 +1039,14 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:52 GMT"
+ "Wed, 10 Jun 2015 08:07:30 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGs5ODc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -880,19 +1054,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d8360592-b4f0-4ce7-a466-88475a6cbedc"
+ "9673ac52-f2e1-4fce-a5a1-bbc6993475c2"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875\",\r\n \"name\": \"onesdk9875\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"e5228e82-b258-4a8e-adc1-5cd3a9576a30\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-04-09T22:10:55.707Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:21:39.093Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447\",\r\n \"name\": \"onesdk9447\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2a4959a2-f040-4ec2-915c-e289e95aa1c7\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T08:07:33.04Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:18:24.547Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "786"
+ "825"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "4c313381-d9e8-4913-82c2-21532707249a"
+ "434d6188-d3e1-42e5-83cb-9a101660725c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -904,19 +1078,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31840"
+ "14914"
],
"x-ms-correlation-request-id": [
- "601a8eba-0462-43df-9a41-a6074c4a5a47"
+ "e89522e4-0009-4cb3-8c2c-8f7900691c1b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221153Z:601a8eba-0462-43df-9a41-a6074c4a5a47"
+ "CENTRALUS:20150610T081251Z:e89522e4-0009-4cb3-8c2c-8f7900691c1b"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:11:52 GMT"
+ "Wed, 10 Jun 2015 08:12:51 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -925,25 +1099,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGs5ODc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "231"
+ "235"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "702ea984-6bd8-47b8-ac0c-0b4724dced7b"
+ "673c0822-0527-4d44-96a5-e39dd3a52ed5"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T15:10:55.551-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T01:07:32.932-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -955,7 +1129,7 @@
"30"
],
"x-ms-request-id": [
- "f5d7aff2-f4f3-4155-acac-8de2a6e62019"
+ "dda4d876-ea7c-463f-8c5f-4cbd9b308649"
],
"X-Content-Type-Options": [
"nosniff"
@@ -970,22 +1144,82 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1148"
+ "1186"
+ ],
+ "x-ms-correlation-request-id": [
+ "17387612-6b98-4488-8fc5-c0af144682f2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080733Z:17387612-6b98-4488-8fc5-c0af144682f2"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:07:33 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3L29wZXJhdGlvblJlc3VsdHMvZGRhNGQ4NzYtZWE3Yy00NjNmLThjNWYtNGNiZDliMzA4NjQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "673c0822-0527-4d44-96a5-e39dd3a52ed5"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:07:32.9Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "95b4c780-6684-4878-a48a-b075ba5cb8f3"
+ ],
+ "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": [
- "df540c74-86ca-4add-87ac-8b190f398579"
+ "573c5b95-903a-4c97-8d72-ec33d5d7dcd1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221055Z:df540c74-86ca-4add-87ac-8b190f398579"
+ "CENTRALUS:20150610T080734Z:573c5b95-903a-4c97-8d72-ec33d5d7dcd1"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:54 GMT"
+ "Wed, 10 Jun 2015 08:07:34 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875/operationResults/f5d7aff2-f4f3-4155-acac-8de2a6e62019?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -994,8 +1228,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875/operationResults/f5d7aff2-f4f3-4155-acac-8de2a6e62019?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGs5ODc1L29wZXJhdGlvblJlc3VsdHMvZjVkN2FmZjItZjRmMy00MTU1LWFjYWMtOGRlMmE2ZTYyMDE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3L29wZXJhdGlvblJlc3VsdHMvZGRhNGQ4NzYtZWE3Yy00NjNmLThjNWYtNGNiZDliMzA4NjQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1003,10 +1237,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "702ea984-6bd8-47b8-ac0c-0b4724dced7b"
+ "673c0822-0527-4d44-96a5-e39dd3a52ed5"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:10:55.537Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:07:32.9Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1018,7 +1252,7 @@
"30"
],
"x-ms-request-id": [
- "d0435288-449d-4133-a65c-0896231c5691"
+ "c36323f4-10a4-4656-b146-17d17ad34221"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1030,22 +1264,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31845"
+ "14934"
],
"x-ms-correlation-request-id": [
- "057515c3-8ad6-436e-ab86-09942532b53e"
+ "f73809fc-c6c7-4f10-81bb-30bd0c5a1699"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221055Z:057515c3-8ad6-436e-ab86-09942532b53e"
+ "CENTRALUS:20150610T080805Z:f73809fc-c6c7-4f10-81bb-30bd0c5a1699"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:10:55 GMT"
+ "Wed, 10 Jun 2015 08:08:04 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875/operationResults/f5d7aff2-f4f3-4155-acac-8de2a6e62019?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1054,8 +1288,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875/operationResults/f5d7aff2-f4f3-4155-acac-8de2a6e62019?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGs5ODc1L29wZXJhdGlvblJlc3VsdHMvZjVkN2FmZjItZjRmMy00MTU1LWFjYWMtOGRlMmE2ZTYyMDE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3L29wZXJhdGlvblJlc3VsdHMvZGRhNGQ4NzYtZWE3Yy00NjNmLThjNWYtNGNiZDliMzA4NjQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1063,10 +1297,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "702ea984-6bd8-47b8-ac0c-0b4724dced7b"
+ "673c0822-0527-4d44-96a5-e39dd3a52ed5"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-04-09T22:10:55.537Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:07:32.9Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1078,7 +1312,7 @@
"30"
],
"x-ms-request-id": [
- "d7599e1f-d685-4f70-8ef6-a4bcb2cca152"
+ "6c950460-b604-4f5b-96e7-ce41cd56add8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1090,22 +1324,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31844"
+ "14933"
],
"x-ms-correlation-request-id": [
- "37b23c75-ec63-4042-b9ca-8d14de9d392b"
+ "b77fae2c-acca-43ad-97a4-b4a5204fd57e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221126Z:37b23c75-ec63-4042-b9ca-8d14de9d392b"
+ "CENTRALUS:20150610T080821Z:b77fae2c-acca-43ad-97a4-b4a5204fd57e"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:11:25 GMT"
+ "Wed, 10 Jun 2015 08:08:21 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875/operationResults/f5d7aff2-f4f3-4155-acac-8de2a6e62019?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1114,8 +1348,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875/operationResults/f5d7aff2-f4f3-4155-acac-8de2a6e62019?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGs5ODc1L29wZXJhdGlvblJlc3VsdHMvZjVkN2FmZjItZjRmMy00MTU1LWFjYWMtOGRlMmE2ZTYyMDE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447/operationResults/dda4d876-ea7c-463f-8c5f-4cbd9b308649?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3L29wZXJhdGlvblJlc3VsdHMvZGRhNGQ4NzYtZWE3Yy00NjNmLThjNWYtNGNiZDliMzA4NjQ5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1123,19 +1357,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "702ea984-6bd8-47b8-ac0c-0b4724dced7b"
+ "673c0822-0527-4d44-96a5-e39dd3a52ed5"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875\",\r\n \"name\": \"onesdk9875\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"e5228e82-b258-4a8e-adc1-5cd3a9576a30\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-04-09T22:10:55.707Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:21:39.093Z\",\r\n \"resourcePoolName\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447\",\r\n \"name\": \"onesdk9447\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2a4959a2-f040-4ec2-915c-e289e95aa1c7\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T08:07:33.04Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:18:24.547Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "786"
+ "825"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "f12c7c0a-e6ce-40fa-86b9-2526578d3b4f"
+ "dd4f9d30-71a0-40e7-821c-adf83ef411ea"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1147,19 +1381,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31843"
+ "14932"
],
"x-ms-correlation-request-id": [
- "c391ab8e-517c-4719-a906-cc6861ca9801"
+ "f44c4986-a422-41e7-8639-3a64734e3eea"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221142Z:c391ab8e-517c-4719-a906-cc6861ca9801"
+ "CENTRALUS:20150610T080838Z:f44c4986-a422-41e7-8639-3a64734e3eea"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:11:42 GMT"
+ "Wed, 10 Jun 2015 08:08:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1168,8 +1402,947 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "091877dd-2af5-46b7-b197-7ceb6d229344"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "69"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "7e43f08e-993c-4ee9-b39d-0cda5769e984"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e43f08e-993c-4ee9-b39d-0cda5769e984"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080838Z:7e43f08e-993c-4ee9-b39d-0cda5769e984"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:08:37 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "23580dc9-0723-42f0-9815-6dc86b4cbf1a"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371\",\r\n \"name\": \"onesdk371\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"c00e61fc-ecc7-4193-8ae0-2c649568b8a0\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-10T08:08:42.047Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:21:43.403Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "831"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "ae0ecb18-8f63-4cbc-8673-6cfbddc2e1e2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14917"
+ ],
+ "x-ms-correlation-request-id": [
+ "84b89797-996d-4f2c-b325-6fc3df5e5143"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081158Z:84b89797-996d-4f2c-b325-6fc3df5e5143"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:11:58 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"DataWarehouse\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"DW100\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "242"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T01:08:41.451-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": [
+ "7318ac4e-4650-42ac-8683-8ea4c660a64e"
+ ],
+ "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": [
+ "6009965b-b185-4bbe-a821-6299eafb65d9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080841Z:6009965b-b185-4bbe-a821-6299eafb65d9"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:08:41 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "06754135-af23-40dc-8835-ee0eb3cbde76"
+ ],
+ "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": [
+ "65762628-784b-40fd-9648-4dcced956074"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080843Z:65762628-784b-40fd-9648-4dcced956074"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:08:43 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "83c9187d-28e3-400e-bca0-2a3988864311"
+ ],
+ "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": [
+ "3eca2b40-e574-4b7c-9add-045bbf442796"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080914Z:3eca2b40-e574-4b7c-9add-045bbf442796"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:09:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "5d0b16f4-9154-4af7-8dbc-db69be1bd68f"
+ ],
+ "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": [
+ "a0d6f16f-fdfb-4c7e-9efa-87bfbbde4ca4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080930Z:a0d6f16f-fdfb-4c7e-9efa-87bfbbde4ca4"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:09:30 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "1a9cc324-c4e3-4158-947a-195e4a0a96bd"
+ ],
+ "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": [
+ "7addb27b-ef16-4c10-adbf-ce9c24659deb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T080947Z:7addb27b-ef16-4c10-adbf-ce9c24659deb"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:09:47 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "ac8d4c1e-6474-4ac2-93a1-5b85290eadfc"
+ ],
+ "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": [
+ "6e0be144-b2d3-426a-9052-16530cdbf0bf"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081003Z:6e0be144-b2d3-426a-9052-16530cdbf0bf"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:10:03 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "dfbd47c3-e0c2-417c-9c56-71de0c94f708"
+ ],
+ "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": [
+ "f3df906c-adf4-4937-b3e8-3a3a8f9d2e61"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081019Z:f3df906c-adf4-4937-b3e8-3a3a8f9d2e61"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:10:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "f9b402c1-e37c-4a90-a4a7-1b02b12fb3ac"
+ ],
+ "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": [
+ "61641c2f-8776-4fd9-930e-1ab5d7dbb13e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081036Z:61641c2f-8776-4fd9-930e-1ab5d7dbb13e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:10:35 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "dac24a70-7bb7-49c1-91ed-2e32a18a041d"
+ ],
+ "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": [
+ "d7c18a68-9a7b-45c7-a783-86932d05d6b5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081052Z:d7c18a68-9a7b-45c7-a783-86932d05d6b5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:10:51 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "7fb5c34d-0693-4812-a323-4c4f3f89aed3"
+ ],
+ "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": [
+ "61ab0ce9-e689-4671-b0c2-bf3dbcd337c3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081108Z:61ab0ce9-e689-4671-b0c2-bf3dbcd337c3"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:11:08 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "7ea51fdc-64ba-4e38-aff8-ffe23c19b502"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14920"
+ ],
+ "x-ms-correlation-request-id": [
+ "54cdae14-9cd7-451c-a4c2-ce1384582d31"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081124Z:54cdae14-9cd7-451c-a4c2-ce1384582d31"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:11:24 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T08:08:41.373Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "9f57775d-a3fb-43ac-aef8-e1a885391f2e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14919"
+ ],
+ "x-ms-correlation-request-id": [
+ "86c35892-27fa-410c-8774-a2266f666ef3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081140Z:86c35892-27fa-410c-8774-a2266f666ef3"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:11:40 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371/operationResults/7318ac4e-4650-42ac-8683-8ea4c660a64e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzEvb3BlcmF0aW9uUmVzdWx0cy83MzE4YWM0ZS00NjUwLTQyYWMtODY4My04ZWE0YzY2MGE2NGU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "617d5e7d-34b3-4383-b727-fccd97ca5566"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371\",\r\n \"name\": \"onesdk371\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"c00e61fc-ecc7-4193-8ae0-2c649568b8a0\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-10T08:08:42.047Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:21:43.403Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "831"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "8445f3bb-83d2-4fa1-ad76-9e98e5ab9791"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14918"
+ ],
+ "x-ms-correlation-request-id": [
+ "9939000a-9ffa-4356-bd11-36759f9cd32d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081157Z:9939000a-9ffa-4356-bd11-36759f9cd32d"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:11:56 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk371?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGszNzE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "a7761b06-9424-4a71-9034-009f759cab91"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-request-id": [
+ "ba6b4426-725c-4096-9ca5-ad5abef551e0"
+ ],
+ "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": [
+ "25e3dbca-8240-4fc9-a29c-875f3a3ef888"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150610T081228Z:25e3dbca-8240-4fc9-a29c-875f3a3ef888"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Wed, 10 Jun 2015 08:12:28 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1177,19 +2350,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0caddb27-d2a4-495a-934a-86d9f0e637e4"
+ "e5c693a6-208e-499c-9469-520551f9b1ad"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"2072b2ed-3336-46a9-8331-f599b8354b14\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-04-09T22:09:51.397Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": null,\r\n \"resourcePoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699\",\r\n \"name\": \"onesdk1699\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"f8ada568-6176-495f-874e-768507871df8\",\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-04-09T22:10:06.303Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:20:43.297Z\",\r\n \"resourcePoolName\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875\",\r\n \"name\": \"onesdk9875\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"e5228e82-b258-4a8e-adc1-5cd3a9576a30\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-04-09T22:10:55.707Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-04-09T22:21:39.093Z\",\r\n \"resourcePoolName\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"3389a377-3682-4d39-ade1-880fb3503a74\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-06-10T08:05:49.737Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": null,\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944\",\r\n \"name\": \"onesdk9944\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"b319ce21-1334-4543-8b9c-d659ad233a12\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T08:06:09.28Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:17:18.073Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447\",\r\n \"name\": \"onesdk9447\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"2a4959a2-f040-4ec2-915c-e289e95aa1c7\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T08:07:33.04Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-10T08:18:24.547Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "2311"
+ "2429"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "278f1e1f-8c21-4c2e-abbe-a2e763e44c76"
+ "40570eeb-59de-4cf8-ba07-3c2089f6cb59"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1201,19 +2374,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31842"
+ "14916"
],
"x-ms-correlation-request-id": [
- "d17c67fa-e5a8-47d9-a7a0-208ec9edc74b"
+ "b759e0ce-0062-4b68-a790-8bd2ff3f5c02"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221143Z:d17c67fa-e5a8-47d9-a7a0-208ec9edc74b"
+ "CENTRALUS:20150610T081229Z:b759e0ce-0062-4b68-a790-8bd2ff3f5c02"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:11:43 GMT"
+ "Wed, 10 Jun 2015 08:12:29 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1222,8 +2395,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1231,19 +2404,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "78942281-01b2-461b-aa03-6f423d3f0ef6"
+ "20659bae-0061-4cd5-af3a-5e7f0318116e"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"properties\": {\r\n \"databaseId\": \"2072b2ed-3336-46a9-8331-f599b8354b14\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-04-09T22:09:51.397Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": null,\r\n \"resourcePoolName\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"3389a377-3682-4d39-ade1-880fb3503a74\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System2\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-06-10T08:05:49.737Z\",\r\n \"currentServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveId\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": null,\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "758"
+ "800"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "46dacb4a-b221-47aa-b013-8f3f6f6b6cbb"
+ "7ce0e44a-812c-4717-8c46-e2c4c953f863"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1255,19 +2428,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31839"
+ "14913"
],
"x-ms-correlation-request-id": [
- "e1d4736a-d9a7-4c24-b6cf-66ea0cd6fa8b"
+ "d1cf532f-e339-40e9-b50d-c8b08993dbc9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221202Z:e1d4736a-d9a7-4c24-b6cf-66ea0cd6fa8b"
+ "CENTRALUS:20150610T081255Z:d1cf532f-e339-40e9-b50d-c8b08993dbc9"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:02 GMT"
+ "Wed, 10 Jun 2015 08:12:54 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1276,8 +2449,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk1699?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGsxNjk5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9944?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5OTQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1285,7 +2458,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "840e0e54-a239-4896-84a1-22dcac99a849"
+ "4f3d1b85-e0a6-4129-86d0-2789f88430a2"
]
},
"ResponseBody": "",
@@ -1294,7 +2467,7 @@
"0"
],
"x-ms-request-id": [
- "b83c9bc0-3b38-4d39-9844-890696240b13"
+ "41597e12-c3c1-4278-a9b3-4a5b29f0d3e9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1306,19 +2479,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1147"
+ "1183"
],
"x-ms-correlation-request-id": [
- "a6d6eb5e-548c-4248-a487-a278ed3c2ee3"
+ "8aea98d5-56b0-4ab8-9a57-04491d0961d6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221152Z:a6d6eb5e-548c-4248-a487-a278ed3c2ee3"
+ "CENTRALUS:20150610T081250Z:8aea98d5-56b0-4ab8-9a57-04491d0961d6"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:11:52 GMT"
+ "Wed, 10 Jun 2015 08:12:49 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1327,8 +2500,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk9452/providers/Microsoft.Sql/servers/onesdk9046/databases/onesdk9875?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazk0NTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDQ2L2RhdGFiYXNlcy9vbmVzZGs5ODc1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk9933/providers/Microsoft.Sql/servers/onesdk9021/databases/onesdk9447?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazk5MzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MDIxL2RhdGFiYXNlcy9vbmVzZGs5NDQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1336,7 +2509,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "c02f08f7-db4d-491a-9eec-f1bb023b7dc3"
+ "3172a13e-3205-4e58-938b-ceff60756e17"
]
},
"ResponseBody": "",
@@ -1345,7 +2518,7 @@
"0"
],
"x-ms-request-id": [
- "848d8389-c4f2-43d8-9896-533b6361c800"
+ "5a8dc1df-dd69-452e-a541-1b80617e3a80"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1357,19 +2530,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1146"
+ "1182"
],
"x-ms-correlation-request-id": [
- "26dadb44-d2d3-4d07-a5d2-1477afe60431"
+ "2ad1a379-4450-4f31-802a-e4be4814788f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221201Z:26dadb44-d2d3-4d07-a5d2-1477afe60431"
+ "CENTRALUS:20150610T081254Z:2ad1a379-4450-4f31-802a-e4be4814788f"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:01 GMT"
+ "Wed, 10 Jun 2015 08:12:53 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1378,8 +2551,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk9452?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazk0NTI/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk9933?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazk5MzM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1402,16 +2575,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1145"
+ "1183"
],
"x-ms-request-id": [
- "77cb8bc1-dd6c-467f-ad85-359b3a200f3a"
+ "cf2ad1aa-97b5-4f07-90f1-6a0d785fc079"
],
"x-ms-correlation-request-id": [
- "77cb8bc1-dd6c-467f-ad85-359b3a200f3a"
+ "cf2ad1aa-97b5-4f07-90f1-6a0d785fc079"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221202Z:77cb8bc1-dd6c-467f-ad85-359b3a200f3a"
+ "CENTRALUS:20150610T081256Z:cf2ad1aa-97b5-4f07-90f1-6a0d785fc079"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1420,17 +2593,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:02 GMT"
+ "Wed, 10 Jun 2015 08:12:55 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1456,16 +2629,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31837"
+ "14922"
],
"x-ms-request-id": [
- "cc1cc218-25bd-4646-9477-3427a6ba464a"
+ "7b966acc-127b-4c6b-8f95-37cf95257294"
],
"x-ms-correlation-request-id": [
- "cc1cc218-25bd-4646-9477-3427a6ba464a"
+ "7b966acc-127b-4c6b-8f95-37cf95257294"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221202Z:cc1cc218-25bd-4646-9477-3427a6ba464a"
+ "CENTRALUS:20150610T081256Z:7b966acc-127b-4c6b-8f95-37cf95257294"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1474,17 +2647,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:02 GMT"
+ "Wed, 10 Jun 2015 08:12:55 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1510,16 +2683,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31836"
+ "14921"
],
"x-ms-request-id": [
- "38daa842-8cc3-4528-92e5-a0759ed79a54"
+ "0950663f-c968-4503-8e5d-40f587ee4aca"
],
"x-ms-correlation-request-id": [
- "38daa842-8cc3-4528-92e5-a0759ed79a54"
+ "0950663f-c968-4503-8e5d-40f587ee4aca"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221217Z:38daa842-8cc3-4528-92e5-a0759ed79a54"
+ "CENTRALUS:20150610T081311Z:0950663f-c968-4503-8e5d-40f587ee4aca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1528,17 +2701,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:17 GMT"
+ "Wed, 10 Jun 2015 08:13:10 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1564,16 +2737,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31835"
+ "14920"
],
"x-ms-request-id": [
- "2f3eb0ca-43d7-4dc5-be91-6f008cc7cbd4"
+ "65f0d01f-d0f6-4a28-9cc9-b7136d875679"
],
"x-ms-correlation-request-id": [
- "2f3eb0ca-43d7-4dc5-be91-6f008cc7cbd4"
+ "65f0d01f-d0f6-4a28-9cc9-b7136d875679"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221232Z:2f3eb0ca-43d7-4dc5-be91-6f008cc7cbd4"
+ "CENTRALUS:20150610T081326Z:65f0d01f-d0f6-4a28-9cc9-b7136d875679"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1582,17 +2755,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:32 GMT"
+ "Wed, 10 Jun 2015 08:13:26 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1618,16 +2791,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31834"
+ "14919"
],
"x-ms-request-id": [
- "45da9782-6122-45f2-bb41-02e0b763f7fa"
+ "e489a60a-483d-45e9-a490-48a69b2f0af2"
],
"x-ms-correlation-request-id": [
- "45da9782-6122-45f2-bb41-02e0b763f7fa"
+ "e489a60a-483d-45e9-a490-48a69b2f0af2"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221247Z:45da9782-6122-45f2-bb41-02e0b763f7fa"
+ "CENTRALUS:20150610T081341Z:e489a60a-483d-45e9-a490-48a69b2f0af2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1636,17 +2809,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:12:46 GMT"
+ "Wed, 10 Jun 2015 08:13:41 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1672,16 +2845,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31833"
+ "14918"
],
"x-ms-request-id": [
- "9191b677-b7fa-4ccc-899b-a1247f47a41c"
+ "907f1544-3b51-4f16-9e7a-5082e39898bb"
],
"x-ms-correlation-request-id": [
- "9191b677-b7fa-4ccc-899b-a1247f47a41c"
+ "907f1544-3b51-4f16-9e7a-5082e39898bb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221303Z:9191b677-b7fa-4ccc-899b-a1247f47a41c"
+ "CENTRALUS:20150610T081356Z:907f1544-3b51-4f16-9e7a-5082e39898bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1690,17 +2863,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:13:02 GMT"
+ "Wed, 10 Jun 2015 08:13:56 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1726,16 +2899,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31832"
+ "14917"
],
"x-ms-request-id": [
- "085cbd73-e710-4d1e-aa69-4a5e5efd1eb7"
+ "a7cff9e1-4ff0-4c41-9395-46a898dddafa"
],
"x-ms-correlation-request-id": [
- "085cbd73-e710-4d1e-aa69-4a5e5efd1eb7"
+ "a7cff9e1-4ff0-4c41-9395-46a898dddafa"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221318Z:085cbd73-e710-4d1e-aa69-4a5e5efd1eb7"
+ "CENTRALUS:20150610T081411Z:a7cff9e1-4ff0-4c41-9395-46a898dddafa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1744,17 +2917,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:13:17 GMT"
+ "Wed, 10 Jun 2015 08:14:11 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1780,16 +2953,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31831"
+ "14916"
],
"x-ms-request-id": [
- "a9ea385c-23ba-4ec6-8ff6-2954df652be8"
+ "53c666a9-b322-4422-a3d6-1293cc6c1aa6"
],
"x-ms-correlation-request-id": [
- "a9ea385c-23ba-4ec6-8ff6-2954df652be8"
+ "53c666a9-b322-4422-a3d6-1293cc6c1aa6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221333Z:a9ea385c-23ba-4ec6-8ff6-2954df652be8"
+ "CENTRALUS:20150610T081426Z:53c666a9-b322-4422-a3d6-1293cc6c1aa6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1798,17 +2971,17 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:13:32 GMT"
+ "Wed, 10 Jun 2015 08:14:25 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5NDUyLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVORFV5TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs5OTMzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczVPVE16TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1831,16 +3004,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31830"
+ "14915"
],
"x-ms-request-id": [
- "5ee972fa-475b-47aa-b3bb-1824aef574f0"
+ "810c1d39-f2b4-47b3-9780-8a8682395cde"
],
"x-ms-correlation-request-id": [
- "5ee972fa-475b-47aa-b3bb-1824aef574f0"
+ "810c1d39-f2b4-47b3-9780-8a8682395cde"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150409T221348Z:5ee972fa-475b-47aa-b3bb-1824aef574f0"
+ "CENTRALUS:20150610T081441Z:810c1d39-f2b4-47b3-9780-8a8682395cde"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1849,7 +3022,7 @@
"no-cache"
],
"Date": [
- "Thu, 09 Apr 2015 22:13:48 GMT"
+ "Wed, 10 Jun 2015 08:14:41 GMT"
]
},
"StatusCode": 200
@@ -1857,13 +3030,14 @@
],
"Names": {
"Test-RemoveDatabase": [
- "onesdk9452",
- "onesdk9046",
- "onesdk1699",
- "onesdk9875"
+ "onesdk9933",
+ "onesdk9021",
+ "onesdk9944",
+ "onesdk9447",
+ "onesdk371"
]
},
"Variables": {
- "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json
index cdce52d55fea..59b612c4fdf2 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseRemoveV2.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2989?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14982"
],
"x-ms-request-id": [
- "02380e6c-02e8-4175-bd77-847b66f7e9df"
+ "9bba8afc-1009-4f8b-b15d-a4ffcbc1b8f9"
],
"x-ms-correlation-request-id": [
- "02380e6c-02e8-4175-bd77-847b66f7e9df"
+ "9bba8afc-1009-4f8b-b15d-a4ffcbc1b8f9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210453Z:02380e6c-02e8-4175-bd77-847b66f7e9df"
+ "CENTRALUS:20150610T073629Z:9bba8afc-1009-4f8b-b15d-a4ffcbc1b8f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:04:53 GMT"
+ "Wed, 10 Jun 2015 07:36:28 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2989?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14980"
],
"x-ms-request-id": [
- "8ceb2813-3663-4de2-bf9b-37f1c04c6a08"
+ "8a1646f2-7915-403b-8f4b-cd2cc2e8e627"
],
"x-ms-correlation-request-id": [
- "8ceb2813-3663-4de2-bf9b-37f1c04c6a08"
+ "8a1646f2-7915-403b-8f4b-cd2cc2e8e627"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210521Z:8ceb2813-3663-4de2-bf9b-37f1c04c6a08"
+ "CENTRALUS:20150610T073654Z:8a1646f2-7915-403b-8f4b-cd2cc2e8e627"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:21 GMT"
+ "Wed, 10 Jun 2015 07:36:54 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2989?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561\",\r\n \"name\": \"onesdk8561\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989\",\r\n \"name\": \"onesdk2989\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1193"
],
"x-ms-request-id": [
- "b9e1f91a-0d69-4e5a-ba24-035eae9d38c7"
+ "63ed9369-7a63-4da2-98e6-6d913395481e"
],
"x-ms-correlation-request-id": [
- "b9e1f91a-0d69-4e5a-ba24-035eae9d38c7"
+ "63ed9369-7a63-4da2-98e6-6d913395481e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210454Z:b9e1f91a-0d69-4e5a-ba24-035eae9d38c7"
+ "CENTRALUS:20150610T073630Z:63ed9369-7a63-4da2-98e6-6d913395481e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:04:53 GMT"
+ "Wed, 10 Jun 2015 07:36:30 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14981"
],
"x-ms-request-id": [
- "dba716d7-ec57-4cda-aa00-80724120e41f"
+ "c2bae4c6-e910-457f-9011-1c6e7f615bf9"
],
"x-ms-correlation-request-id": [
- "dba716d7-ec57-4cda-aa00-80724120e41f"
+ "c2bae4c6-e910-457f-9011-1c6e7f615bf9"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210454Z:dba716d7-ec57-4cda-aa00-80724120e41f"
+ "CENTRALUS:20150610T073630Z:c2bae4c6-e910-457f-9011-1c6e7f615bf9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,19 +193,19 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:04:53 GMT"
+ "Wed, 10 Jun 2015 07:36:30 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2989/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/0.0.0.0"
+ "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}",
@@ -226,16 +226,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "centralus:4d898118-2a54-4e46-a7ca-3c8178883868"
+ "centralus:964fbf5a-a973-40b3-959f-57e9d70e19b3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14979"
],
"x-ms-correlation-request-id": [
- "968db716-78ec-436a-9735-f59cb2625d3c"
+ "4bfe64a9-f6b1-4411-9154-476c41c26bff"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210454Z:968db716-78ec-436a-9735-f59cb2625d3c"
+ "CENTRALUS:20150610T073630Z:4bfe64a9-f6b1-4411-9154-476c41c26bff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,14 +244,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:04:54 GMT"
+ "Wed, 10 Jun 2015 07:36:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,7 +259,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "a85d7dea-a691-4a66-86fc-a30c67924878"
+ "1744d634-e037-492c-a98e-e9363f3f3ff5"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "a5f1804d-7295-47e1-a5fb-de94fecb26a2"
+ "18a24ada-f2c5-49c2-9ca7-d9048e394230"
],
"x-ms-correlation-request-id": [
- "a5f1804d-7295-47e1-a5fb-de94fecb26a2"
+ "18a24ada-f2c5-49c2-9ca7-d9048e394230"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210454Z:a5f1804d-7295-47e1-a5fb-de94fecb26a2"
+ "CENTRALUS:20150610T073630Z:18a24ada-f2c5-49c2-9ca7-d9048e394230"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:04:54 GMT"
+ "Wed, 10 Jun 2015 07:36:30 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,10 +310,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "156341e1-0524-43d6-b5f7-356774b00414"
+ "4c3c9534-11f8-4a4b-90bd-1a2578b8acb7"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100\",\r\n \"name\": \"onesdk4100\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4100.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146\",\r\n \"name\": \"onesdk4146\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4146.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"
@@ -322,7 +322,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "4744f1a6-5a03-479a-87ef-e08010d5db32"
+ "0fca4cdd-b584-403f-8f2d-45a7143312ea"
],
"X-Content-Type-Options": [
"nosniff"
@@ -331,13 +331,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14964"
],
"x-ms-correlation-request-id": [
- "bb61cbd6-f233-4a30-8db4-122f15922950"
+ "0eb45abe-6d92-46aa-9085-fdc9a2d48949"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210501Z:bb61cbd6-f233-4a30-8db4-122f15922950"
+ "CENTRALUS:20150610T073636Z:0eb45abe-6d92-46aa-9085-fdc9a2d48949"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -346,7 +346,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:00 GMT"
+ "Wed, 10 Jun 2015 07:36:36 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,8 +355,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -364,10 +364,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "524b8201-551b-4a8b-bc03-93050caf8384"
+ "8fb5ca96-a557-4adf-b823-5ee8132544a6"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100\",\r\n \"name\": \"onesdk4100\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4100.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146\",\r\n \"name\": \"onesdk4146\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4146.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"
@@ -376,7 +376,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3e5d59a6-0a4e-47d9-9eb8-146560bcc2eb"
+ "3d2cc921-3f10-4473-9e12-a6e4f96f6e2b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -385,13 +385,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14962"
],
"x-ms-correlation-request-id": [
- "765d3cb5-0171-4eb3-a254-3bba0a274ced"
+ "95fda8b5-6fe7-4e34-8481-0b628ae22d85"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210507Z:765d3cb5-0171-4eb3-a254-3bba0a274ced"
+ "CENTRALUS:20150610T073640Z:95fda8b5-6fe7-4e34-8481-0b628ae22d85"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:07 GMT"
+ "Wed, 10 Jun 2015 07:36:40 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -409,8 +409,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"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": {
@@ -424,10 +424,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "71943a15-1723-4f73-b7ca-ed7921ffe33e"
+ "7bc23cac-b269-43fa-946f-30710ce699ea"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100\",\r\n \"name\": \"onesdk4100\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4100.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146\",\r\n \"name\": \"onesdk4146\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4146.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"
@@ -436,7 +436,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "0df73248-064d-4cd3-9d3d-05f7f81c844a"
+ "a5fd0276-29a3-4847-9dda-be755b70c381"
],
"X-Content-Type-Options": [
"nosniff"
@@ -448,13 +448,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-correlation-request-id": [
- "2df04450-7659-4b7f-87a8-2b1caf60fe12"
+ "dc9820bd-1804-43b0-95cd-ec97b88da99a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210500Z:2df04450-7659-4b7f-87a8-2b1caf60fe12"
+ "CENTRALUS:20150610T073636Z:dc9820bd-1804-43b0-95cd-ec97b88da99a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -463,7 +463,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:00 GMT"
+ "Wed, 10 Jun 2015 07:36:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -472,8 +472,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk9810?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs5ODEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -481,7 +481,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "52ee407f-a96c-4cd0-bee9-855045b14851"
+ "5f41bea3-8da6-4c9d-90ff-e04fd996901d"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -502,13 +502,13 @@
"gateway"
],
"x-ms-request-id": [
- "b6300523-def7-494c-82cb-aa982ce9671b"
+ "182bb8a2-94f1-4f9d-8a5b-e4c4eab4efa3"
],
"x-ms-correlation-request-id": [
- "b6300523-def7-494c-82cb-aa982ce9671b"
+ "182bb8a2-94f1-4f9d-8a5b-e4c4eab4efa3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210500Z:b6300523-def7-494c-82cb-aa982ce9671b"
+ "CENTRALUS:20150610T073636Z:182bb8a2-94f1-4f9d-8a5b-e4c4eab4efa3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -517,14 +517,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:00 GMT"
+ "Wed, 10 Jun 2015 07:36:36 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk9810?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs5ODEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -532,19 +532,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "6a976d15-3518-4fce-8679-1ead7ec8ca46"
+ "9ac58e1e-8254-42f8-818b-f281a354a142"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659\",\r\n \"name\": \"onesdk5659\",\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\": \"fe2fe39e-e19c-4cfb-aedf-e9dc58dfc9e4\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:03.373Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk9810\",\r\n \"name\": \"onesdk9810\",\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\": \"2c7eef85-b159-4d2a-a668-87d3f60f1f8e\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:36:38.5Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "754"
+ "752"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "40feaa82-6ec1-46fd-a27d-d7a1a8f889c6"
+ "02819a95-8dc0-47fb-9afd-de7e4dee8e49"
],
"X-Content-Type-Options": [
"nosniff"
@@ -553,13 +553,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14960"
],
"x-ms-correlation-request-id": [
- "ad3b03d4-004e-4686-8536-dddd899b87dc"
+ "7e96607a-2980-490f-a763-2edb2c20b31f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210514Z:ad3b03d4-004e-4686-8536-dddd899b87dc"
+ "CENTRALUS:20150610T073647Z:7e96607a-2980-490f-a763-2edb2c20b31f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -568,7 +568,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:13 GMT"
+ "Wed, 10 Jun 2015 07:36:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -577,8 +577,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk9810?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs5ODEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": \"1073741824\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -592,19 +592,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b346b259-f38d-4f10-b1a0-d7ed106dd264"
+ "37750081-37c3-4a8e-a483-767eec3b6cf9"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659\",\r\n \"name\": \"onesdk5659\",\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\": \"fe2fe39e-e19c-4cfb-aedf-e9dc58dfc9e4\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:03.373Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk9810\",\r\n \"name\": \"onesdk9810\",\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\": \"2c7eef85-b159-4d2a-a668-87d3f60f1f8e\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:36:38.5Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "754"
+ "752"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "70009793-b6b2-47ab-90cc-12ac18042cfc"
+ "162285a3-447d-4ee2-bfaa-ac0dd472e379"
],
"X-Content-Type-Options": [
"nosniff"
@@ -616,13 +616,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1194"
],
"x-ms-correlation-request-id": [
- "d6addd33-b448-48ba-ac2f-035cb95a924b"
+ "29c84d39-ba81-41fb-a5da-58856a31c337"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210507Z:d6addd33-b448-48ba-ac2f-035cb95a924b"
+ "CENTRALUS:20150610T073640Z:29c84d39-ba81-41fb-a5da-58856a31c337"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -631,7 +631,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:07 GMT"
+ "Wed, 10 Jun 2015 07:36:40 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -640,8 +640,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk5734?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs1NzM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -649,7 +649,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "c2cb6fd3-6d2c-45f5-b98e-cd2717738dbd"
+ "ec45ddce-a049-47ae-a4ee-35cee9fc791e"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -670,13 +670,13 @@
"gateway"
],
"x-ms-request-id": [
- "118ed5c8-de9d-4793-b670-736c891bae6b"
+ "7f56c590-bc05-485e-b6c1-a74d8adc3be8"
],
"x-ms-correlation-request-id": [
- "118ed5c8-de9d-4793-b670-736c891bae6b"
+ "7f56c590-bc05-485e-b6c1-a74d8adc3be8"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210507Z:118ed5c8-de9d-4793-b670-736c891bae6b"
+ "CENTRALUS:20150610T073640Z:7f56c590-bc05-485e-b6c1-a74d8adc3be8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -685,14 +685,14 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:07 GMT"
+ "Wed, 10 Jun 2015 07:36:40 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk5734?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs1NzM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -700,19 +700,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "279d1916-44c6-46d6-8084-def77b612fc0"
+ "c4ee253c-41be-4f61-8663-a6ff7f69ac7a"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110\",\r\n \"name\": \"onesdk9110\",\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\": \"55562461-ef3f-4df3-9099-6455e09366b6\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:11.58Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:06:11.58Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk5734\",\r\n \"name\": \"onesdk5734\",\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\": \"5944adb3-cbe5-471b-9642-e9edb7cd979a\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:36:44.117Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:37:44.117Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "778"
+ "780"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "17ad2162-ee6e-4c80-aafb-2cffe0c1e3fc"
+ "a50901ac-3217-4370-b375-0a5fbadc4926"
],
"X-Content-Type-Options": [
"nosniff"
@@ -721,13 +721,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14959"
],
"x-ms-correlation-request-id": [
- "ac37a497-1229-4407-8944-bbf1878718ba"
+ "12b9191a-194c-4dfd-bf98-5e6130561eef"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210518Z:ac37a497-1229-4407-8944-bbf1878718ba"
+ "CENTRALUS:20150610T073651Z:12b9191a-194c-4dfd-bf98-5e6130561eef"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +736,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:18 GMT"
+ "Wed, 10 Jun 2015 07:36:51 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -745,8 +745,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk5734?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs1NzM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -760,19 +760,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "268a2c26-5e3a-4b4b-8264-6c0f4814dcf5"
+ "c4f440b7-13c5-408c-a377-cebe340b7f71"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110\",\r\n \"name\": \"onesdk9110\",\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\": \"55562461-ef3f-4df3-9099-6455e09366b6\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:11.58Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:06:11.58Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk5734\",\r\n \"name\": \"onesdk5734\",\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\": \"5944adb3-cbe5-471b-9642-e9edb7cd979a\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:36:44.117Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:37:44.117Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "778"
+ "780"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "c9392aaa-aa82-4a4a-95e4-3bf61aace028"
+ "7f7b14d8-9129-422e-992d-99475014ac9b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -784,13 +784,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1193"
],
"x-ms-correlation-request-id": [
- "5ed35e62-2291-4d0f-abec-0c1abd54feff"
+ "7fa0808f-74f5-4ebc-9224-ff847ca389e6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210513Z:5ed35e62-2291-4d0f-abec-0c1abd54feff"
+ "CENTRALUS:20150610T073646Z:7fa0808f-74f5-4ebc-9224-ff847ca389e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -799,7 +799,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:13 GMT"
+ "Wed, 10 Jun 2015 07:36:45 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -808,8 +808,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -817,19 +817,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0ca608a7-c208-4792-aca2-75cd52cd87e9"
+ "92e20643-ed92-475f-a815-c75d0334931f"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"b197664e-66cc-4622-9c31-f947043fc409\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-05-13T21:04:57.377Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659\",\r\n \"name\": \"onesdk5659\",\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\": \"fe2fe39e-e19c-4cfb-aedf-e9dc58dfc9e4\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:03.373Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110\",\r\n \"name\": \"onesdk9110\",\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\": \"55562461-ef3f-4df3-9099-6455e09366b6\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-13T21:05:11.58Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-13T21:06:11.58Z\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"95ee5ee8-8479-44e2-9040-b529a5756a37\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-06-10T07:36:33.8Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk9810\",\r\n \"name\": \"onesdk9810\",\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\": \"2c7eef85-b159-4d2a-a668-87d3f60f1f8e\",\r\n \"edition\": \"Web\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Shared\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:36:38.5Z\",\r\n \"currentServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveId\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk5734\",\r\n \"name\": \"onesdk5734\",\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\": \"5944adb3-cbe5-471b-9642-e9edb7cd979a\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"Japanese_Bushu_Kakusu_100_CS_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-10T07:36:44.117Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-10T07:37:44.117Z\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "2267"
+ "2265"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3ef678e9-4850-4133-ac85-c066fde94f4f"
+ "be490267-7133-4aa9-bad6-7629d53c65c0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -838,13 +838,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14961"
],
"x-ms-correlation-request-id": [
- "bd473506-08af-4223-9cb8-05fb679958ec"
+ "5c870d43-7ea1-4fa6-80df-e01dc72ae35e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210514Z:bd473506-08af-4223-9cb8-05fb679958ec"
+ "CENTRALUS:20150610T073647Z:5c870d43-7ea1-4fa6-80df-e01dc72ae35e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -853,7 +853,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:13 GMT"
+ "Wed, 10 Jun 2015 07:36:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -862,8 +862,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -871,19 +871,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "fd21da25-60bf-4905-8934-43da7e4a2a15"
+ "e3647321-2982-42cc-b893-746ec3879eb6"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"b197664e-66cc-4622-9c31-f947043fc409\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-05-13T21:04:57.377Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/master\",\r\n \"name\": \"master\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0,system\",\r\n \"properties\": {\r\n \"databaseId\": \"95ee5ee8-8479-44e2-9040-b529a5756a37\",\r\n \"edition\": \"System\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"System\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"5368709120\",\r\n \"creationDate\": \"2015-06-10T07:36:33.8Z\",\r\n \"currentServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveId\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": null\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "753"
+ "751"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "85399c82-2263-4c9e-ab78-0cbbaeb5c2ac"
+ "3ecd5cae-1fe0-4d3c-9e07-4b78d6f67ab5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -892,13 +892,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14958"
],
"x-ms-correlation-request-id": [
- "8e48afed-88d0-4a14-8042-110e5d2a3462"
+ "fcada1f3-ea96-4b46-9526-fa099c80a073"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210521Z:8e48afed-88d0-4a14-8042-110e5d2a3462"
+ "CENTRALUS:20150610T073654Z:fcada1f3-ea96-4b46-9526-fa099c80a073"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -907,7 +907,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:21 GMT"
+ "Wed, 10 Jun 2015 07:36:53 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -916,8 +916,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk5659?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs1NjU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk9810?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs5ODEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -925,7 +925,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "53dc8683-a8c1-4602-83a4-7fe3e3b7f0d9"
+ "0d42de44-e107-40d5-a2c9-58c6042a1540"
]
},
"ResponseBody": "",
@@ -934,7 +934,7 @@
"0"
],
"x-ms-request-id": [
- "b6d14b5b-2a0c-4c8f-8f94-2834221f7977"
+ "df2a9951-a772-4312-b5c6-44f03e9ca5ad"
],
"X-Content-Type-Options": [
"nosniff"
@@ -943,13 +943,13 @@
"1.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1192"
],
"x-ms-correlation-request-id": [
- "d2db1de7-5cc1-486d-94c8-f7e94ec897bd"
+ "517be907-a6a4-4225-b145-7ef2bca038ac"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210517Z:d2db1de7-5cc1-486d-94c8-f7e94ec897bd"
+ "CENTRALUS:20150610T073650Z:517be907-a6a4-4225-b145-7ef2bca038ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -958,7 +958,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:16 GMT"
+ "Wed, 10 Jun 2015 07:36:49 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -967,8 +967,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourceGroups/onesdk8561/providers/Microsoft.Sql/servers/onesdk4100/databases/onesdk9110?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlR3JvdXBzL29uZXNkazg1NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTAwL2RhdGFiYXNlcy9vbmVzZGs5MTEwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk2989/providers/Microsoft.Sql/servers/onesdk4146/databases/onesdk5734?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazI5ODkvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0MTQ2L2RhdGFiYXNlcy9vbmVzZGs1NzM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -976,7 +976,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "246aa16d-9acb-4787-99c6-0b79d4867ab6"
+ "4679b9bd-0583-4fde-80c2-1b1f3f7336fa"
]
},
"ResponseBody": "",
@@ -985,7 +985,7 @@
"0"
],
"x-ms-request-id": [
- "e3354c6d-a809-49d1-849b-23f30147f842"
+ "bf6abaae-899c-43bd-a1c3-f2d62fa7b120"
],
"X-Content-Type-Options": [
"nosniff"
@@ -994,13 +994,13 @@
"1.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1191"
],
"x-ms-correlation-request-id": [
- "272677da-4d34-4aff-96f7-87d541940993"
+ "cc5b9aed-fd4e-497c-afe5-ebcb3b70d1e5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210521Z:272677da-4d34-4aff-96f7-87d541940993"
+ "CENTRALUS:20150610T073653Z:cc5b9aed-fd4e-497c-afe5-ebcb3b70d1e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1009,7 +1009,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:21 GMT"
+ "Wed, 10 Jun 2015 07:36:53 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1018,8 +1018,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/resourcegroups/onesdk8561?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL3Jlc291cmNlZ3JvdXBzL29uZXNkazg1NjE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk2989?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazI5ODk/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1042,16 +1042,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1192"
],
"x-ms-request-id": [
- "a687b641-50a6-4072-a3be-a4615c3fddd3"
+ "e8306bb9-beb8-4880-acf8-1b21d521d304"
],
"x-ms-correlation-request-id": [
- "a687b641-50a6-4072-a3be-a4615c3fddd3"
+ "e8306bb9-beb8-4880-acf8-1b21d521d304"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210521Z:a687b641-50a6-4072-a3be-a4615c3fddd3"
+ "CENTRALUS:20150610T073654Z:e8306bb9-beb8-4880-acf8-1b21d521d304"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1060,17 +1060,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:21 GMT"
+ "Wed, 10 Jun 2015 07:36:54 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1096,16 +1096,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14978"
+ "14979"
],
"x-ms-request-id": [
- "7a098f27-b46c-4ec9-9e4e-b70be307c202"
+ "e46a4595-e790-4754-a8f3-8fa36d75c685"
],
"x-ms-correlation-request-id": [
- "7a098f27-b46c-4ec9-9e4e-b70be307c202"
+ "e46a4595-e790-4754-a8f3-8fa36d75c685"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210521Z:7a098f27-b46c-4ec9-9e4e-b70be307c202"
+ "CENTRALUS:20150610T073654Z:e46a4595-e790-4754-a8f3-8fa36d75c685"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1114,17 +1114,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:21 GMT"
+ "Wed, 10 Jun 2015 07:36:54 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1150,16 +1150,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
+ "14978"
],
"x-ms-request-id": [
- "affbce04-e1eb-4778-98aa-7810c5bca705"
+ "a462eeed-cedb-4f38-aa8d-3eca85349a0d"
],
"x-ms-correlation-request-id": [
- "affbce04-e1eb-4778-98aa-7810c5bca705"
+ "a462eeed-cedb-4f38-aa8d-3eca85349a0d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210537Z:affbce04-e1eb-4778-98aa-7810c5bca705"
+ "CENTRALUS:20150610T073709Z:a462eeed-cedb-4f38-aa8d-3eca85349a0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1168,17 +1168,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:36 GMT"
+ "Wed, 10 Jun 2015 07:37:09 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1204,16 +1204,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14976"
+ "14977"
],
"x-ms-request-id": [
- "fc6770e4-c4d6-4544-9ff8-3f57633bc6da"
+ "aff5ab1d-aa32-4854-9994-51e31a1740b1"
],
"x-ms-correlation-request-id": [
- "fc6770e4-c4d6-4544-9ff8-3f57633bc6da"
+ "aff5ab1d-aa32-4854-9994-51e31a1740b1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210552Z:fc6770e4-c4d6-4544-9ff8-3f57633bc6da"
+ "CENTRALUS:20150610T073724Z:aff5ab1d-aa32-4854-9994-51e31a1740b1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1222,17 +1222,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:05:52 GMT"
+ "Wed, 10 Jun 2015 07:37:24 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1258,16 +1258,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14975"
+ "14976"
],
"x-ms-request-id": [
- "42011e92-246d-48a9-be3c-f9f9de30e36d"
+ "f76a1340-7a03-4a5d-af0a-460a34174bcd"
],
"x-ms-correlation-request-id": [
- "42011e92-246d-48a9-be3c-f9f9de30e36d"
+ "f76a1340-7a03-4a5d-af0a-460a34174bcd"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210607Z:42011e92-246d-48a9-be3c-f9f9de30e36d"
+ "CENTRALUS:20150610T073739Z:f76a1340-7a03-4a5d-af0a-460a34174bcd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1276,17 +1276,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:06:06 GMT"
+ "Wed, 10 Jun 2015 07:37:39 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1312,16 +1312,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14975"
],
"x-ms-request-id": [
- "464a95af-bab6-466b-afc7-5bf283785aad"
+ "24b83442-8fc5-46f2-8ce8-f6c33519cfbc"
],
"x-ms-correlation-request-id": [
- "464a95af-bab6-466b-afc7-5bf283785aad"
+ "24b83442-8fc5-46f2-8ce8-f6c33519cfbc"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210622Z:464a95af-bab6-466b-afc7-5bf283785aad"
+ "CENTRALUS:20150610T073754Z:24b83442-8fc5-46f2-8ce8-f6c33519cfbc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1330,17 +1330,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:06:22 GMT"
+ "Wed, 10 Jun 2015 07:37:54 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1366,16 +1366,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "14974"
],
"x-ms-request-id": [
- "699f4525-5f3b-496e-bd86-51735991aff5"
+ "7e005c73-d93e-4bc7-89ad-4068b184f32f"
],
"x-ms-correlation-request-id": [
- "699f4525-5f3b-496e-bd86-51735991aff5"
+ "7e005c73-d93e-4bc7-89ad-4068b184f32f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210637Z:699f4525-5f3b-496e-bd86-51735991aff5"
+ "CENTRALUS:20150610T073809Z:7e005c73-d93e-4bc7-89ad-4068b184f32f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1384,17 +1384,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:06:37 GMT"
+ "Wed, 10 Jun 2015 07:38:09 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1420,16 +1420,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14973"
],
"x-ms-request-id": [
- "40fff775-3ad4-4fc7-9176-5876e320e035"
+ "2e3232b7-6862-4658-8903-741f1a104f66"
],
"x-ms-correlation-request-id": [
- "40fff775-3ad4-4fc7-9176-5876e320e035"
+ "2e3232b7-6862-4658-8903-741f1a104f66"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210652Z:40fff775-3ad4-4fc7-9176-5876e320e035"
+ "CENTRALUS:20150610T073825Z:2e3232b7-6862-4658-8903-741f1a104f66"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1438,17 +1438,17 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:06:52 GMT"
+ "Wed, 10 Jun 2015 07:38:24 GMT"
],
"Location": [
- "https://api-current.resources.windows-int.net/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/7bc8d82a-e704-45b1-8049-5a971ce10ce2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs4NTYxLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2JjOGQ4MmEtZTcwNC00NWIxLTgwNDktNWE5NzFjZTEwY2UyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczROVFl4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsyOTg5LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3lPVGc1TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1471,16 +1471,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14972"
],
"x-ms-request-id": [
- "eb175e61-4f22-488a-b164-d5ed688e9a6b"
+ "53976263-b65d-4598-b129-3d976868df78"
],
"x-ms-correlation-request-id": [
- "eb175e61-4f22-488a-b164-d5ed688e9a6b"
+ "53976263-b65d-4598-b129-3d976868df78"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150513T210707Z:eb175e61-4f22-488a-b164-d5ed688e9a6b"
+ "CENTRALUS:20150610T073840Z:53976263-b65d-4598-b129-3d976868df78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1489,7 +1489,7 @@
"no-cache"
],
"Date": [
- "Wed, 13 May 2015 21:07:07 GMT"
+ "Wed, 10 Jun 2015 07:38:40 GMT"
]
},
"StatusCode": 200
@@ -1497,13 +1497,13 @@
],
"Names": {
"Test-RemoveDatabaseV2": [
- "onesdk8561",
- "onesdk4100",
- "onesdk5659",
- "onesdk9110"
+ "onesdk2989",
+ "onesdk4146",
+ "onesdk9810",
+ "onesdk5734"
]
},
"Variables": {
- "SubscriptionId": "7bc8d82a-e704-45b1-8049-5a971ce10ce2"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json
index c0bed06fa3f3..9322dc465789 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdate.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1711?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk6493?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14999"
],
"x-ms-request-id": [
- "3e1e27c4-5f91-497e-93ee-315e53664c09"
+ "e2ef980e-030d-4b7d-aa39-0b2cb1d8ac3e"
],
"x-ms-correlation-request-id": [
- "3e1e27c4-5f91-497e-93ee-315e53664c09"
+ "e2ef980e-030d-4b7d-aa39-0b2cb1d8ac3e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174410Z:3e1e27c4-5f91-497e-93ee-315e53664c09"
+ "CENTRALUS:20150611T000239Z:e2ef980e-030d-4b7d-aa39-0b2cb1d8ac3e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:09 GMT"
+ "Thu, 11 Jun 2015 00:02:38 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1711?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk6493?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14998"
],
"x-ms-request-id": [
- "7ee3c0cc-5bf6-4641-8e41-f8206fb9e1ea"
+ "ecfe1d27-89bd-463f-a6f3-5132511c0f4a"
],
"x-ms-correlation-request-id": [
- "7ee3c0cc-5bf6-4641-8e41-f8206fb9e1ea"
+ "ecfe1d27-89bd-463f-a6f3-5132511c0f4a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174929Z:7ee3c0cc-5bf6-4641-8e41-f8206fb9e1ea"
+ "CENTRALUS:20150611T001112Z:ecfe1d27-89bd-463f-a6f3-5132511c0f4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:49:28 GMT"
+ "Thu, 11 Jun 2015 00:11:11 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1711?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk6493?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0OTM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711\",\r\n \"name\": \"onesdk1711\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493\",\r\n \"name\": \"onesdk6493\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-request-id": [
- "c562cb44-30ed-4830-9e49-cbaee3eea8e3"
+ "0c21877a-d6a6-4625-8fd4-e7c7873f3e52"
],
"x-ms-correlation-request-id": [
- "c562cb44-30ed-4830-9e49-cbaee3eea8e3"
+ "0c21877a-d6a6-4625-8fd4-e7c7873f3e52"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174411Z:c562cb44-30ed-4830-9e49-cbaee3eea8e3"
+ "CENTRALUS:20150611T000239Z:0c21877a-d6a6-4625-8fd4-e7c7873f3e52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:11 GMT"
+ "Thu, 11 Jun 2015 00:02:38 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14998"
],
"x-ms-request-id": [
- "bd42e63a-5a6e-47f4-a330-f0554bc4c8b6"
+ "63027c23-4eca-41c3-b775-dbd6ea82e594"
],
"x-ms-correlation-request-id": [
- "bd42e63a-5a6e-47f4-a330-f0554bc4c8b6"
+ "63027c23-4eca-41c3-b775-dbd6ea82e594"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174411Z:bd42e63a-5a6e-47f4-a330-f0554bc4c8b6"
+ "CENTRALUS:20150611T000239Z:63027c23-4eca-41c3-b775-dbd6ea82e594"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,14 +193,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:11 GMT"
+ "Thu, 11 Jun 2015 00:02:38 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1711/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk6493/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -226,16 +226,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "centralus:9d3f07ef-2ff5-4de6-9af3-13966fa3bfcd"
+ "centralus:bc82822c-c5ca-4e71-ac68-814efa98f918"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "49e5513d-ed23-4787-817c-706ae6868b6d"
+ "ecdd2c78-de45-4921-b786-f5e8dbe75dfb"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174411Z:49e5513d-ed23-4787-817c-706ae6868b6d"
+ "CENTRALUS:20150611T000239Z:ecdd2c78-de45-4921-b786-f5e8dbe75dfb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,14 +244,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:11 GMT"
+ "Thu, 11 Jun 2015 00:02:39 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,7 +259,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "3a2b2523-01a9-4e61-8d3c-f6d31f872782"
+ "3f6a98de-67d2-4528-8b46-e98c4a7c80bd"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "60fb9d82-803d-4e72-ba45-9dc1a8c49b3c"
+ "9221666c-685c-4d04-9dfb-d03f496150fc"
],
"x-ms-correlation-request-id": [
- "60fb9d82-803d-4e72-ba45-9dc1a8c49b3c"
+ "9221666c-685c-4d04-9dfb-d03f496150fc"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174412Z:60fb9d82-803d-4e72-ba45-9dc1a8c49b3c"
+ "CENTRALUS:20150611T000240Z:9221666c-685c-4d04-9dfb-d03f496150fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:11 GMT"
+ "Thu, 11 Jun 2015 00:02:39 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,19 +310,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "93dbda0f-72ba-4b54-9f98-4a9a5548cb9f"
+ "2b070e9b-6bf2-4a87-970b-5ea0c0a8f6f0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366\",\r\n \"name\": \"onesdk9366\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9366.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225\",\r\n \"name\": \"onesdk1225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1225.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": [
- "465"
+ "469"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "71dd132e-d236-4817-aa31-c002cde84c66"
+ "be06ae11-085c-4178-be42-a66a3fb7aa81"
],
"X-Content-Type-Options": [
"nosniff"
@@ -331,13 +331,67 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14997"
+ ],
+ "x-ms-correlation-request-id": [
+ "32962d59-b651-4a95-af21-ed74f3a40d31"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000318Z:32962d59-b651-4a95-af21-ed74f3a40d31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:03:18 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "de56699d-268c-421c-9c20-71e55e6b7949"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225\",\r\n \"name\": \"onesdk1225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1225.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": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "36e24b96-43cd-4076-bb79-fa47f0cc8769"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
],
"x-ms-correlation-request-id": [
- "313c4e37-c4c5-4547-9fb2-5b0bb7ea8b69"
+ "2f257cb7-8b73-4c7e-a0c8-75c7b09bc6e2"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174449Z:313c4e37-c4c5-4547-9fb2-5b0bb7ea8b69"
+ "CENTRALUS:20150611T000717Z:2f257cb7-8b73-4c7e-a0c8-75c7b09bc6e2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -346,7 +400,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:48 GMT"
+ "Thu, 11 Jun 2015 00:07:17 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,34 +409,34 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"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\": \"Japan East\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"testusername\",\r\n \"administratorLoginPassword\": \"t357ingP@s5w0rd!\"\r\n },\r\n \"location\": \"Southeast Asia\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "178"
+ "182"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "5910f69c-e3af-4040-933d-f5db46f14c8e"
+ "81e47dd1-c837-4f4c-99bd-38cce23c5916"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366\",\r\n \"name\": \"onesdk9366\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk9366.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225\",\r\n \"name\": \"onesdk1225\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk1225.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": [
- "479"
+ "483"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "6a3d930f-774f-4658-bc78-9fcd662d0592"
+ "d58c30ef-a4e7-4e8b-a248-995c39822762"
],
"X-Content-Type-Options": [
"nosniff"
@@ -397,10 +451,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "07da4986-2f6e-4b48-8c65-eb5a6ece68b0"
+ "75ee7f97-9f4c-4133-8b23-d41f3394a837"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174448Z:07da4986-2f6e-4b48-8c65-eb5a6ece68b0"
+ "CENTRALUS:20150611T000317Z:75ee7f97-9f4c-4133-8b23-d41f3394a837"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -409,7 +463,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:48 GMT"
+ "Thu, 11 Jun 2015 00:03:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -418,8 +472,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -427,7 +481,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4d19c5ef-be48-4ed4-bd25-9828655f4bfa"
+ "9e8bc92a-a25d-43ee-a808-297172b2dcbd"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -448,13 +502,13 @@
"gateway"
],
"x-ms-request-id": [
- "d5cfcd4e-6b2c-4b44-a45d-27da7d4ddcc0"
+ "a506a73b-5be1-4ee3-8475-c0e2db3f2fff"
],
"x-ms-correlation-request-id": [
- "d5cfcd4e-6b2c-4b44-a45d-27da7d4ddcc0"
+ "a506a73b-5be1-4ee3-8475-c0e2db3f2fff"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174449Z:d5cfcd4e-6b2c-4b44-a45d-27da7d4ddcc0"
+ "CENTRALUS:20150611T000317Z:a506a73b-5be1-4ee3-8475-c0e2db3f2fff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -463,14 +517,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:48 GMT"
+ "Thu, 11 Jun 2015 00:03:18 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -478,10 +532,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0e85310e-b369-42eb-a9bb-0e21c8613f7d"
+ "e5bc98fb-857b-4e65-8bf0-c67cf2cd646a"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424\",\r\n \"name\": \"onesdk9424\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f069f1fc-a409-4620-82d0-3dfaacb883dd\",\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-05-27T17:44:50.723Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T17:55:40.47Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331\",\r\n \"name\": \"onesdk8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"82762e25-f773-4953-95e3-beef5e2d5aef\",\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-06-11T00:03:20.193Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:14:05.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"824"
@@ -490,7 +544,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "2445705e-7a72-4990-a989-947638951e03"
+ "b3c48ab1-86ff-49c7-af66-ae060b719e4d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -502,19 +556,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14993"
],
"x-ms-correlation-request-id": [
- "7cab86e3-9918-4a25-a5ce-f6605b61053f"
+ "1021c4cf-a59d-4820-9c75-603c28a36f2c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174555Z:7cab86e3-9918-4a25-a5ce-f6605b61053f"
+ "CENTRALUS:20150611T000410Z:1021c4cf-a59d-4820-9c75-603c28a36f2c"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:45:54 GMT"
+ "Thu, 11 Jun 2015 00:04:09 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -523,8 +577,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -532,10 +586,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "e01ac4c2-c728-4174-ba06-0adeb5f41212"
+ "445f4807-8474-4e59-94bf-64ca42f5d4d3"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424\",\r\n \"name\": \"onesdk9424\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f069f1fc-a409-4620-82d0-3dfaacb883dd\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T17:44:50.723Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T17:55:40.47Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331\",\r\n \"name\": \"onesdk8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"82762e25-f773-4953-95e3-beef5e2d5aef\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-11T00:03:20.193Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:14:05.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"822"
@@ -544,7 +598,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "1ac631bc-b2c9-4c1e-9dad-9bb8140f826b"
+ "3ead7a40-3cd4-4c27-8081-effdb71d452b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -556,19 +610,19 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14983"
+ "14986"
],
"x-ms-correlation-request-id": [
- "08d0b65a-f26e-4215-826a-7cbcba36dc37"
+ "d3abde05-d802-49ea-9914-74dd4f153d3a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174750Z:08d0b65a-f26e-4215-826a-7cbcba36dc37"
+ "CENTRALUS:20150611T000553Z:d3abde05-d802-49ea-9914-74dd4f153d3a"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:47:50 GMT"
+ "Thu, 11 Jun 2015 00:05:53 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -577,25 +631,25 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"S0\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"S0\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "180"
+ "184"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "50219c52-ea3c-4955-bc52-139df76cf610"
+ "320bd440-fdba-4eb8-805e-850f45754937"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T10:44:50.536-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T17:03:20.052-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -607,7 +661,7 @@
"30"
],
"x-ms-request-id": [
- "1515b994-fb08-4c81-8aa9-97e2949f9ae6"
+ "e71bfde4-a274-4612-bf14-4e9c006c101d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -625,19 +679,19 @@
"1198"
],
"x-ms-correlation-request-id": [
- "3a58facd-7985-4686-abd5-7934ca769e73"
+ "f0dc1d7f-ba1d-4f9d-9a19-ed5a37940a5b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174451Z:3a58facd-7985-4686-abd5-7934ca769e73"
+ "CENTRALUS:20150611T000320Z:f0dc1d7f-ba1d-4f9d-9a19-ed5a37940a5b"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:50 GMT"
+ "Thu, 11 Jun 2015 00:03:20 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/e71bfde4-a274-4612-bf14-4e9c006c101d?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -646,25 +700,25 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "178"
+ "182"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "cf5eb6e4-c1ed-402c-a71e-edb7de711d5c"
]
},
- "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2015-05-27T10:45:57.819-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2015-06-10T17:04:12.95-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"81"
@@ -676,7 +730,7 @@
"30"
],
"x-ms-request-id": [
- "9b23aeab-6874-44bc-b9b7-60e320fdf3b4"
+ "381f1706-237b-4f1f-a739-7895f072fa20"
],
"X-Content-Type-Options": [
"nosniff"
@@ -694,19 +748,19 @@
"1197"
],
"x-ms-correlation-request-id": [
- "c4085b33-94e3-4d18-9b24-cde2bf93ed60"
+ "caba6415-9790-42c5-8cf9-764de445ccf3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174558Z:c4085b33-94e3-4d18-9b24-cde2bf93ed60"
+ "CENTRALUS:20150611T000413Z:caba6415-9790-42c5-8cf9-764de445ccf3"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:45:57 GMT"
+ "Thu, 11 Jun 2015 00:04:13 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -715,25 +769,25 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"requestedServiceObjectiveName\": \"S1\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {}\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"requestedServiceObjectiveName\": \"S1\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "180"
+ "184"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d349fc26-d871-4d74-a2df-7f9fbb246aa7"
+ "d2a3bf62-001b-4288-9258-45a3be608296"
]
},
- "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2015-05-27T10:47:52.886-07:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2015-06-10T17:05:55.534-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"81"
@@ -745,7 +799,7 @@
"30"
],
"x-ms-request-id": [
- "1d0fd488-b297-4646-b9c0-304f50080bc4"
+ "963af164-deff-4e60-bd65-29730d4c571e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -763,19 +817,19 @@
"1196"
],
"x-ms-correlation-request-id": [
- "d1e7a799-8cc3-4e99-89b8-24e662ecb8f7"
+ "c74ae4c3-0c14-49ca-9ba8-27bb5812a686"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174753Z:d1e7a799-8cc3-4e99-89b8-24e662ecb8f7"
+ "CENTRALUS:20150611T000556Z:c74ae4c3-0c14-49ca-9ba8-27bb5812a686"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:47:53 GMT"
+ "Thu, 11 Jun 2015 00:05:55 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -784,8 +838,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMTUxNWI5OTQtZmIwOC00YzgxLThhYTktOTdlMjk0OWY5YWU2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/e71bfde4-a274-4612-bf14-4e9c006c101d?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvZTcxYmZkZTQtYTI3NC00NjEyLWJmMTQtNGU5YzAwNmMxMDFkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -793,10 +847,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "50219c52-ea3c-4955-bc52-139df76cf610"
+ "320bd440-fdba-4eb8-805e-850f45754937"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:44:50.517Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:03:20.02Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -808,7 +862,7 @@
"30"
],
"x-ms-request-id": [
- "396e816c-2d80-4730-ab27-aed11e1e23c6"
+ "0591c7a9-8ce1-4909-9361-3ffb6867cebb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -820,22 +874,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14996"
],
"x-ms-correlation-request-id": [
- "644c7b4e-de85-4f0b-97fa-d162ac19ab0c"
+ "c39b7606-0999-4258-88e0-34cad418d3c5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174451Z:644c7b4e-de85-4f0b-97fa-d162ac19ab0c"
+ "CENTRALUS:20150611T000321Z:c39b7606-0999-4258-88e0-34cad418d3c5"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:44:51 GMT"
+ "Thu, 11 Jun 2015 00:03:21 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/e71bfde4-a274-4612-bf14-4e9c006c101d?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -844,8 +898,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMTUxNWI5OTQtZmIwOC00YzgxLThhYTktOTdlMjk0OWY5YWU2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/e71bfde4-a274-4612-bf14-4e9c006c101d?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvZTcxYmZkZTQtYTI3NC00NjEyLWJmMTQtNGU5YzAwNmMxMDFkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -853,10 +907,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "50219c52-ea3c-4955-bc52-139df76cf610"
+ "320bd440-fdba-4eb8-805e-850f45754937"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:44:50.517Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:03:20.02Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -868,7 +922,7 @@
"30"
],
"x-ms-request-id": [
- "883db678-00d9-484d-ad2c-fed2df1230e0"
+ "88659903-c9c1-4fa4-96f1-6b66f148caf7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -880,22 +934,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14995"
],
"x-ms-correlation-request-id": [
- "641f8376-994c-4829-aecc-bf9ac3c4b80f"
+ "fa4b9c31-db24-4d3b-a008-dfdb0822e427"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174522Z:641f8376-994c-4829-aecc-bf9ac3c4b80f"
+ "CENTRALUS:20150611T000353Z:fa4b9c31-db24-4d3b-a008-dfdb0822e427"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:45:22 GMT"
+ "Thu, 11 Jun 2015 00:03:52 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/e71bfde4-a274-4612-bf14-4e9c006c101d?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -904,8 +958,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMTUxNWI5OTQtZmIwOC00YzgxLThhYTktOTdlMjk0OWY5YWU2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/e71bfde4-a274-4612-bf14-4e9c006c101d?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvZTcxYmZkZTQtYTI3NC00NjEyLWJmMTQtNGU5YzAwNmMxMDFkP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -913,22 +967,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "50219c52-ea3c-4955-bc52-139df76cf610"
+ "320bd440-fdba-4eb8-805e-850f45754937"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:44:50.517Z\"\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331\",\r\n \"name\": \"onesdk8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"82762e25-f773-4953-95e3-beef5e2d5aef\",\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-06-11T00:03:20.193Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:14:05.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "75"
+ "824"
],
"Content-Type": [
- "application/json"
- ],
- "Retry-After": [
- "30"
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "80ea3811-9a2b-4f12-8982-966b6b2f3fa8"
+ "d8f42207-f906-4cc3-866b-20974010ea09"
],
"X-Content-Type-Options": [
"nosniff"
@@ -940,32 +991,29 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14994"
],
"x-ms-correlation-request-id": [
- "e93eeb77-4407-4310-99df-5dfa28cba5cc"
+ "c5456231-1fa7-4b76-ab22-6dc2365ae12a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174538Z:e93eeb77-4407-4310-99df-5dfa28cba5cc"
+ "CENTRALUS:20150611T000409Z:c5456231-1fa7-4b76-ab22-6dc2365ae12a"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:45:38 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview"
+ "Thu, 11 Jun 2015 00:04:08 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 202
+ "StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1515b994-fb08-4c81-8aa9-97e2949f9ae6?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMTUxNWI5OTQtZmIwOC00YzgxLThhYTktOTdlMjk0OWY5YWU2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvMzgxZjE3MDYtMjM3Yi00ZjFmLWE3MzktNzg5NWYwNzJmYTIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -973,19 +1021,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "50219c52-ea3c-4955-bc52-139df76cf610"
+ "cf5eb6e4-c1ed-402c-a71e-edb7de711d5c"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424\",\r\n \"name\": \"onesdk9424\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f069f1fc-a409-4620-82d0-3dfaacb883dd\",\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-05-27T17:44:50.723Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T17:55:40.47Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:04:11.867Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "824"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "f24a361b-9e89-4510-96f4-649663f337c6"
+ "d19812c1-e701-4f0c-b3c2-ac466b5242af"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1000,26 +1051,29 @@
"14992"
],
"x-ms-correlation-request-id": [
- "6535003d-061a-4d8e-b8df-d4c5210e4094"
+ "96e8427d-0842-468f-ae29-7d6e31d2b76b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174554Z:6535003d-061a-4d8e-b8df-d4c5210e4094"
+ "CENTRALUS:20150611T000414Z:96e8427d-0842-468f-ae29-7d6e31d2b76b"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:45:54 GMT"
+ "Thu, 11 Jun 2015 00:04:14 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 201
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvOWIyM2FlYWItNjg3NC00NGJjLWI5YjctNjBlMzIwZmRmM2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvMzgxZjE3MDYtMjM3Yi00ZjFmLWE3MzktNzg5NWYwNzJmYTIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1027,10 +1081,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "cf5eb6e4-c1ed-402c-a71e-edb7de711d5c"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:45:56.68Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:04:11.867Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1042,7 +1096,7 @@
"30"
],
"x-ms-request-id": [
- "bdef350f-9577-415b-a24f-52ca79efaad0"
+ "4cce04e4-24c5-4a4a-a170-90390276cb0b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1054,22 +1108,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14991"
],
"x-ms-correlation-request-id": [
- "05f28f95-dcdf-4dd8-8b36-e70ce4778741"
+ "85db5e36-c953-4b71-90f6-4d7c42c2d38f"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174559Z:05f28f95-dcdf-4dd8-8b36-e70ce4778741"
+ "CENTRALUS:20150611T000446Z:85db5e36-c953-4b71-90f6-4d7c42c2d38f"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:45:58 GMT"
+ "Thu, 11 Jun 2015 00:04:45 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1078,8 +1132,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvOWIyM2FlYWItNjg3NC00NGJjLWI5YjctNjBlMzIwZmRmM2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvMzgxZjE3MDYtMjM3Yi00ZjFmLWE3MzktNzg5NWYwNzJmYTIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1087,10 +1141,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "cf5eb6e4-c1ed-402c-a71e-edb7de711d5c"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:45:56.68Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:04:11.867Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1102,7 +1156,7 @@
"30"
],
"x-ms-request-id": [
- "c3437392-9896-4314-a9c6-adf681a8d7a8"
+ "32f6be64-b037-4b7b-b203-926b183ae7f9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1114,22 +1168,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14990"
],
"x-ms-correlation-request-id": [
- "57963c6c-9122-4df7-a006-b55c67aa6a76"
+ "3f686ed0-90c8-4fd5-b400-7289587095f6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174630Z:57963c6c-9122-4df7-a006-b55c67aa6a76"
+ "CENTRALUS:20150611T000502Z:3f686ed0-90c8-4fd5-b400-7289587095f6"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:46:29 GMT"
+ "Thu, 11 Jun 2015 00:05:02 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1138,8 +1192,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvOWIyM2FlYWItNjg3NC00NGJjLWI5YjctNjBlMzIwZmRmM2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvMzgxZjE3MDYtMjM3Yi00ZjFmLWE3MzktNzg5NWYwNzJmYTIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1147,10 +1201,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "cf5eb6e4-c1ed-402c-a71e-edb7de711d5c"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:45:56.68Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:04:11.867Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1162,7 +1216,7 @@
"30"
],
"x-ms-request-id": [
- "c6c776bd-40af-451d-8d35-615aaecdd6bd"
+ "5a7675fd-c63d-4ede-b996-28a836746143"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1174,22 +1228,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14989"
],
"x-ms-correlation-request-id": [
- "ff71d5bf-1371-4ba9-a6b7-eb683a965238"
+ "69761779-9071-4a77-a1ec-1345e586cba5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174646Z:ff71d5bf-1371-4ba9-a6b7-eb683a965238"
+ "CENTRALUS:20150611T000518Z:69761779-9071-4a77-a1ec-1345e586cba5"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:46:46 GMT"
+ "Thu, 11 Jun 2015 00:05:18 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1198,8 +1252,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvOWIyM2FlYWItNjg3NC00NGJjLWI5YjctNjBlMzIwZmRmM2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvMzgxZjE3MDYtMjM3Yi00ZjFmLWE3MzktNzg5NWYwNzJmYTIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1207,10 +1261,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "cf5eb6e4-c1ed-402c-a71e-edb7de711d5c"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:45:56.68Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:04:11.867Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1222,7 +1276,7 @@
"30"
],
"x-ms-request-id": [
- "5ae4163d-c01b-4357-b998-fbfe47eda4e7"
+ "46bac970-415b-433c-b133-5dcd95c5382d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1234,22 +1288,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14988"
],
"x-ms-correlation-request-id": [
- "222ca328-da28-45ab-8908-f90928f35748"
+ "1cdc36b2-8ba4-4249-8ad5-9bd373c92f42"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174701Z:222ca328-da28-45ab-8908-f90928f35748"
+ "CENTRALUS:20150611T000535Z:1cdc36b2-8ba4-4249-8ad5-9bd373c92f42"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:47:01 GMT"
+ "Thu, 11 Jun 2015 00:05:34 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1258,8 +1312,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvOWIyM2FlYWItNjg3NC00NGJjLWI5YjctNjBlMzIwZmRmM2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/381f1706-237b-4f1f-a739-7895f072fa20?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvMzgxZjE3MDYtMjM3Yi00ZjFmLWE3MzktNzg5NWYwNzJmYTIwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1267,22 +1321,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "cf5eb6e4-c1ed-402c-a71e-edb7de711d5c"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:45:56.68Z\"\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331\",\r\n \"name\": \"onesdk8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"82762e25-f773-4953-95e3-beef5e2d5aef\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-11T00:03:20.193Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:14:05.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n },\r\n \"operationId\": \"381f1706-237b-4f1f-a739-7895f072fa20\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "75"
+ "875"
],
"Content-Type": [
- "application/json"
- ],
- "Retry-After": [
- "30"
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "c3b954ee-74b0-40cf-a937-cf43568d52b0"
+ "c896d348-63a9-4423-8981-6e77b9384b32"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1294,32 +1345,29 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14987"
],
"x-ms-correlation-request-id": [
- "53e69176-3d12-4e26-a850-be1789a4b614"
+ "a0ec5fc4-31df-4156-a1f7-613d308cf031"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174717Z:53e69176-3d12-4e26-a850-be1789a4b614"
+ "CENTRALUS:20150611T000551Z:a0ec5fc4-31df-4156-a1f7-613d308cf031"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:47:17 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview"
+ "Thu, 11 Jun 2015 00:05:50 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvOWIyM2FlYWItNjg3NC00NGJjLWI5YjctNjBlMzIwZmRmM2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvOTYzYWYxNjQtZGVmZi00ZTYwLWJkNjUtMjk3MzBkNGM1NzFlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1327,10 +1375,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "d2a3bf62-001b-4288-9258-45a3be608296"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:45:56.68Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:05:54.423Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1342,7 +1390,7 @@
"30"
],
"x-ms-request-id": [
- "73e7d58e-7f01-4ad7-ac86-2d2acf814ea6"
+ "1d397ba0-c168-4747-b25b-c248ab828056"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1357,19 +1405,19 @@
"14985"
],
"x-ms-correlation-request-id": [
- "9df62589-190a-4bc6-b4a9-fec52de9c084"
+ "9ab8d132-1bc4-4baa-a6a5-3080767e48c1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174733Z:9df62589-190a-4bc6-b4a9-fec52de9c084"
+ "CENTRALUS:20150611T000557Z:9ab8d132-1bc4-4baa-a6a5-3080767e48c1"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:47:33 GMT"
+ "Thu, 11 Jun 2015 00:05:56 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1378,8 +1426,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/9b23aeab-6874-44bc-b9b7-60e320fdf3b4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvOWIyM2FlYWItNjg3NC00NGJjLWI5YjctNjBlMzIwZmRmM2I0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvOTYzYWYxNjQtZGVmZi00ZTYwLWJkNjUtMjk3MzBkNGM1NzFlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1387,19 +1435,22 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0f70986c-2c25-4db0-871d-df27b44d25a6"
+ "d2a3bf62-001b-4288-9258-45a3be608296"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424\",\r\n \"name\": \"onesdk9424\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f069f1fc-a409-4620-82d0-3dfaacb883dd\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T17:44:50.723Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T17:55:40.47Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n },\r\n \"operationId\": \"9b23aeab-6874-44bc-b9b7-60e320fdf3b4\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:05:54.423Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "875"
+ "75"
],
"Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
],
"x-ms-request-id": [
- "df3a4ac9-393a-4282-a5ee-aeb697ec987c"
+ "a54e81cb-0a94-4f37-a416-abbfec61bdb4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1414,26 +1465,29 @@
"14984"
],
"x-ms-correlation-request-id": [
- "2a02e71b-20f8-4a8a-bc7e-4082900586f7"
+ "5ab216e2-bbed-4724-a838-910580afb3a0"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174749Z:2a02e71b-20f8-4a8a-bc7e-4082900586f7"
+ "CENTRALUS:20150611T000628Z:5ab216e2-bbed-4724-a838-910580afb3a0"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:47:49 GMT"
+ "Thu, 11 Jun 2015 00:06:27 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMWQwZmQ0ODgtYjI5Ny00NjQ2LWI5YzAtMzA0ZjUwMDgwYmM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvOTYzYWYxNjQtZGVmZi00ZTYwLWJkNjUtMjk3MzBkNGM1NzFlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1441,10 +1495,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d349fc26-d871-4d74-a2df-7f9fbb246aa7"
+ "d2a3bf62-001b-4288-9258-45a3be608296"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:47:51.76Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:05:54.423Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1456,7 +1510,7 @@
"30"
],
"x-ms-request-id": [
- "c8ed781d-e3cf-49e2-a254-0ce03d9034b9"
+ "ee9a4fc2-3016-4009-9a28-f1f9ab353662"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1468,22 +1522,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14982"
+ "14983"
],
"x-ms-correlation-request-id": [
- "60f5a343-c030-4ec9-be9b-5dd95daa30a7"
+ "22cff289-6f7d-4898-bc46-9c3cc86a1a4d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174754Z:60f5a343-c030-4ec9-be9b-5dd95daa30a7"
+ "CENTRALUS:20150611T000644Z:22cff289-6f7d-4898-bc46-9c3cc86a1a4d"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:47:53 GMT"
+ "Thu, 11 Jun 2015 00:06:44 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1492,8 +1546,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMWQwZmQ0ODgtYjI5Ny00NjQ2LWI5YzAtMzA0ZjUwMDgwYmM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvOTYzYWYxNjQtZGVmZi00ZTYwLWJkNjUtMjk3MzBkNGM1NzFlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1501,10 +1555,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d349fc26-d871-4d74-a2df-7f9fbb246aa7"
+ "d2a3bf62-001b-4288-9258-45a3be608296"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:47:51.76Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:05:54.423Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"75"
@@ -1516,7 +1570,7 @@
"30"
],
"x-ms-request-id": [
- "e4e09a08-115f-45a5-a438-85b6c55b8fe4"
+ "4fa865b6-e5ab-4d9a-b972-ba3ed3f2b45b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1528,22 +1582,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14981"
+ "14982"
],
"x-ms-correlation-request-id": [
- "0fdaf081-de37-4598-b914-3b29a6695015"
+ "75180ace-11a8-4f04-bf86-b0b143ad99b2"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174825Z:0fdaf081-de37-4598-b914-3b29a6695015"
+ "CENTRALUS:20150611T000700Z:75180ace-11a8-4f04-bf86-b0b143ad99b2"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:48:25 GMT"
+ "Thu, 11 Jun 2015 00:07:00 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1552,8 +1606,8 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMWQwZmQ0ODgtYjI5Ny00NjQ2LWI5YzAtMzA0ZjUwMDgwYmM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331/operationResults/963af164-deff-4e60-bd65-29730d4c571e?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MzMxL29wZXJhdGlvblJlc3VsdHMvOTYzYWYxNjQtZGVmZi00ZTYwLWJkNjUtMjk3MzBkNGM1NzFlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1561,22 +1615,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d349fc26-d871-4d74-a2df-7f9fbb246aa7"
+ "d2a3bf62-001b-4288-9258-45a3be608296"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:47:51.76Z\"\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8331\",\r\n \"name\": \"onesdk8331\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"82762e25-f773-4953-95e3-beef5e2d5aef\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"creationDate\": \"2015-06-11T00:03:20.193Z\",\r\n \"currentServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:14:05.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n },\r\n \"operationId\": \"963af164-deff-4e60-bd65-29730d4c571e\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "75"
+ "877"
],
"Content-Type": [
- "application/json"
- ],
- "Retry-After": [
- "30"
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "b93e20a5-b2ec-4345-8925-e6146a349162"
+ "87ea8c70-3898-4548-b52a-5f5efcf720d5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1588,32 +1639,29 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14981"
],
"x-ms-correlation-request-id": [
- "181960b2-028a-4192-bcca-ceec4bc89732"
+ "866ea9b2-e1c8-4636-aaec-231138c4d28c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174841Z:181960b2-028a-4192-bcca-ceec4bc89732"
+ "CENTRALUS:20150611T000717Z:866ea9b2-e1c8-4636-aaec-231138c4d28c"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:48:41 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview"
+ "Thu, 11 Jun 2015 00:07:17 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMWQwZmQ0ODgtYjI5Ny00NjQ2LWI5YzAtMzA0ZjUwMDgwYmM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1621,22 +1669,70 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d349fc26-d871-4d74-a2df-7f9fbb246aa7"
+ "560b426a-aafe-4239-b5e4-393b39506521"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:47:51.76Z\"\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "75"
+ "69"
],
"Content-Type": [
- "application/json"
+ "application/json; charset=utf-8"
],
- "Retry-After": [
- "30"
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "32a64f4d-d482-4739-8132-562855ca68c4"
+ ],
+ "x-ms-correlation-request-id": [
+ "32a64f4d-d482-4739-8132-562855ca68c4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000717Z:32a64f4d-d482-4739-8132-562855ca68c4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:07:17 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "1ba7640d-e368-41ae-8646-6d6c4dda0741"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205\",\r\n \"name\": \"onesdk8205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9d7600ec-c58f-439e-ab5b-6010bc211d79\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-11T00:07:19.183Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:20:28.437Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "833"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "b4374d85-6483-448b-833f-32fdb7dfef35"
+ "b137997f-fcb3-4ec2-a217-555a6d9fb11b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1648,82 +1744,88 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14966"
],
"x-ms-correlation-request-id": [
- "7d6e3dfd-81c2-4a3c-9417-d82b9a9d4412"
+ "afe1d5bb-0d25-4840-bc3b-e82cd572924b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174857Z:7d6e3dfd-81c2-4a3c-9417-d82b9a9d4412"
+ "CENTRALUS:20150611T001036Z:afe1d5bb-0d25-4840-bc3b-e82cd572924b"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:48:56 GMT"
- ],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview"
+ "Thu, 11 Jun 2015 00:10:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMWQwZmQ0ODgtYjI5Ny00NjQ2LWI5YzAtMzA0ZjUwMDgwYmM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"DataWarehouse\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"DW100\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "242"
+ ],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d349fc26-d871-4d74-a2df-7f9fbb246aa7"
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-05-27T17:47:51.76Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-10T17:07:19.058-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "75"
+ "80"
],
"Content-Type": [
- "application/json"
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"Retry-After": [
"30"
],
"x-ms-request-id": [
- "4d85ef04-4ec4-41fe-b351-df8092d7161b"
+ "e5071694-ada4-4688-a64b-5bb4e51a55a6"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Preference-Applied": [
+ "return-content"
+ ],
"DataServiceVersion": [
"3.0;"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14978"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
],
"x-ms-correlation-request-id": [
- "8d28bad2-8b7a-4ab3-9545-029e4605c6fb"
+ "3b9e51a4-3359-4ccb-bff6-be050e208a25"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174913Z:8d28bad2-8b7a-4ab3-9545-029e4605c6fb"
+ "CENTRALUS:20150611T000719Z:3b9e51a4-3359-4ccb-bff6-be050e208a25"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:49:13 GMT"
+ "Thu, 11 Jun 2015 00:07:18 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1732,94 +1834,937 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424/operationResults/1d0fd488-b297-4646-b9c0-304f50080bc4?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE3MTEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs5MzY2L2RhdGFiYXNlcy9vbmVzZGs5NDI0L29wZXJhdGlvblJlc3VsdHMvMWQwZmQ0ODgtYjI5Ny00NjQ2LWI5YzAtMzA0ZjUwMDgwYmM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"DataWarehouse\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"DW200\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "192"
+ ],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d349fc26-d871-4d74-a2df-7f9fbb246aa7"
+ "444f64a4-3058-4b4e-99f9-a6bad13f7524"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1711/providers/Microsoft.Sql/servers/onesdk9366/databases/onesdk9424\",\r\n \"name\": \"onesdk9424\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"f069f1fc-a409-4620-82d0-3dfaacb883dd\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S1\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"creationDate\": \"2015-05-27T17:44:50.723Z\",\r\n \"currentServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Southeast Asia\",\r\n \"earliestRestoreDate\": \"2015-05-27T17:55:40.47Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n },\r\n \"operationId\": \"1d0fd488-b297-4646-b9c0-304f50080bc4\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"AlterDatabaseOperation\",\r\n \"startTime\": \"2015-06-10T17:10:38.749-07:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "877"
+ "81"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
+ "Retry-After": [
+ "30"
+ ],
"x-ms-request-id": [
- "cb313b0e-bbd7-4306-953e-3cbcf90efa49"
+ "07bcbee7-20cf-4edf-8583-9eb9571d5947"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Preference-Applied": [
+ "return-content"
+ ],
"DataServiceVersion": [
"3.0;"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
],
"x-ms-correlation-request-id": [
- "304955a3-001e-4284-9145-b15acfa3713e"
+ "f03fb6c6-6d31-4f48-871d-07bc24608780"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174928Z:304955a3-001e-4284-9145-b15acfa3713e"
+ "CENTRALUS:20150611T001039Z:f03fb6c6-6d31-4f48-871d-07bc24608780"
],
"Cache-Control": [
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:49:28 GMT"
+ "Thu, 11 Jun 2015 00:10:38 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/07bcbee7-20cf-4edf-8583-9eb9571d5947?api-version=2014-04-01-Preview"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
]
},
- "StatusCode": 200
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1711?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE3MTE/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
]
},
- "ResponseBody": "",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
+ "75"
],
- "Pragma": [
- "no-cache"
+ "Content-Type": [
+ "application/json"
],
"Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "30"
],
"x-ms-request-id": [
- "96e27e53-8d57-4c38-9e6b-f00804141579"
+ "3d9eeee3-0010-49d4-b2df-df265b8bf014"
],
- "x-ms-correlation-request-id": [
- "96e27e53-8d57-4c38-9e6b-f00804141579"
+ "X-Content-Type-Options": [
+ "nosniff"
],
- "x-ms-routing-request-id": [
- "CENTRALUS:20150527T174929Z:96e27e53-8d57-4c38-9e6b-f00804141579"
+ "DataServiceVersion": [
+ "3.0;"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-correlation-request-id": [
+ "509c7a44-0eb4-42ea-a08e-1502b6100291"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000720Z:509c7a44-0eb4-42ea-a08e-1502b6100291"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:07:20 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "8c9b98ee-34cc-4a26-9dc9-662b36ef6a3b"
+ ],
+ "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": [
+ "5dcb5ed5-ae94-407f-9e6f-d0223c8a344c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000752Z:5dcb5ed5-ae94-407f-9e6f-d0223c8a344c"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:07:52 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "47e24dd2-d8e5-4096-af51-51979c9a4709"
+ ],
+ "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": [
+ "1ee61256-4928-410a-aff3-66c629cac30f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000808Z:1ee61256-4928-410a-aff3-66c629cac30f"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:08:07 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "040adb0d-6b28-41cd-aa88-ea441ce827d0"
+ ],
+ "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": [
+ "cf83e06e-ea55-48cd-949d-59b85c94e0eb"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000824Z:cf83e06e-ea55-48cd-949d-59b85c94e0eb"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:08:23 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "81b09fb2-fee4-4d63-b2ba-a1136e61a13d"
+ ],
+ "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": [
+ "f7d7aae4-a0f0-4b41-acb9-2c27396ef3b8"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000841Z:f7d7aae4-a0f0-4b41-acb9-2c27396ef3b8"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:08:40 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "20cd2f8e-0e5b-4fce-adf2-b6627d8f105f"
+ ],
+ "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": [
+ "6f479322-77ee-45b4-8756-33d070739ada"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000857Z:6f479322-77ee-45b4-8756-33d070739ada"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:08:57 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "53b23689-c329-4bf7-805c-d4c95af7a182"
+ ],
+ "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": [
+ "0d0fdfee-6b92-4551-9e85-8ebdac8813cd"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000913Z:0d0fdfee-6b92-4551-9e85-8ebdac8813cd"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:09:13 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "23c659be-9d87-4769-9dc1-dcf15978af02"
+ ],
+ "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": [
+ "9013f273-78d9-4618-9e09-908811773065"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000930Z:9013f273-78d9-4618-9e09-908811773065"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:09:29 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "79384895-361c-470e-a4b8-a09d0dd1cfbc"
+ ],
+ "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": [
+ "fb25b219-3ffd-4d6e-b1fb-419d92a955c9"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T000946Z:fb25b219-3ffd-4d6e-b1fb-419d92a955c9"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:09:45 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "c2097355-55d6-4ef7-aa41-b65b3bed13f5"
+ ],
+ "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": [
+ "d1189fcc-8be7-45de-be5a-ed4547985e17"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T001002Z:d1189fcc-8be7-45de-be5a-ed4547985e17"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:10:02 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:07:19.043Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "a7db62d7-1ba6-4c21-8fc4-b25cc6aff51f"
+ ],
+ "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": [
+ "52f22abe-2e44-40e7-8fb8-c20fba5db750"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T001018Z:52f22abe-2e44-40e7-8fb8-c20fba5db750"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:10:18 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/e5071694-ada4-4688-a64b-5bb4e51a55a6?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvZTUwNzE2OTQtYWRhNC00Njg4LWE2NGItNWJiNGU1MWE1NWE2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "f2224497-fd81-4673-a45e-3e0363f1cfb8"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205\",\r\n \"name\": \"onesdk8205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9d7600ec-c58f-439e-ab5b-6010bc211d79\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW100\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-11T00:07:19.183Z\",\r\n \"currentServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveId\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:20:28.437Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "833"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "b79626d0-ef54-40e1-91f1-58dbe80cc1e6"
+ ],
+ "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": [
+ "4fbd1e89-b0a5-4274-a708-7574b3efbd0e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T001035Z:4fbd1e89-b0a5-4274-a708-7574b3efbd0e"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:10:34 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/07bcbee7-20cf-4edf-8583-9eb9571d5947?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvMDdiY2JlZTctMjBjZi00ZWRmLTg1ODMtOWViOTU3MWQ1OTQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "444f64a4-3058-4b4e-99f9-a6bad13f7524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"operation\": \"UpdateLogicalDatabase\",\r\n \"startTime\": \"2015-06-11T00:10:37.637Z\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "75"
+ ],
+ "Content-Type": [
+ "application/json"
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "x-ms-request-id": [
+ "46e1cd78-36a5-4a59-8b7d-45ca951f6c95"
+ ],
+ "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": [
+ "00e8dc34-b899-4070-b253-d3706c3b8f77"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T001040Z:00e8dc34-b899-4070-b253-d3706c3b8f77"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:10:39 GMT"
+ ],
+ "Location": [
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/07bcbee7-20cf-4edf-8583-9eb9571d5947?api-version=2014-04-01-Preview"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205/operationResults/07bcbee7-20cf-4edf-8583-9eb9571d5947?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazY0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGsxMjI1L2RhdGFiYXNlcy9vbmVzZGs4MjA1L29wZXJhdGlvblJlc3VsdHMvMDdiY2JlZTctMjBjZi00ZWRmLTg1ODMtOWViOTU3MWQ1OTQ3P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
+ ],
+ "x-ms-client-request-id": [
+ "444f64a4-3058-4b4e-99f9-a6bad13f7524"
+ ]
+ },
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk6493/providers/Microsoft.Sql/servers/onesdk1225/databases/onesdk8205\",\r\n \"name\": \"onesdk8205\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9d7600ec-c58f-439e-ab5b-6010bc211d79\",\r\n \"edition\": \"DataWarehouse\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"DW200\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2015-06-11T00:07:19.183Z\",\r\n \"currentServiceObjectiveId\": \"99e78a92-d724-4e1b-857b-2be661f3d153\",\r\n \"requestedServiceObjectiveId\": \"99e78a92-d724-4e1b-857b-2be661f3d153\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Japan East\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:20:28.437Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n },\r\n \"operationId\": \"07bcbee7-20cf-4edf-8583-9eb9571d5947\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "886"
+ ],
+ "Content-Type": [
+ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
+ ],
+ "x-ms-request-id": [
+ "040dd20b-116d-45d1-87e2-5f17af760514"
+ ],
+ "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": [
+ "e3bc095c-53ed-400f-99f7-63e0235b8ed5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T001111Z:e3bc095c-53ed-400f-99f7-63e0235b8ed5"
+ ],
+ "Cache-Control": [
+ "no-store, no-cache"
+ ],
+ "Date": [
+ "Thu, 11 Jun 2015 00:11:11 GMT"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk6493?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazY0OTM/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": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "73a98318-5a73-42c0-a710-ea76ccb222e0"
+ ],
+ "x-ms-correlation-request-id": [
+ "73a98318-5a73-42c0-a710-ea76ccb222e0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUS:20150611T001112Z:73a98318-5a73-42c0-a710-ea76ccb222e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1828,17 +2773,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:49:28 GMT"
+ "Thu, 11 Jun 2015 00:11:12 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1864,16 +2809,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-request-id": [
- "1037798c-45df-4aae-98a8-2ea5f20cb009"
+ "ab25ec10-6773-415b-8994-8bf099c24cbc"
],
"x-ms-correlation-request-id": [
- "1037798c-45df-4aae-98a8-2ea5f20cb009"
+ "ab25ec10-6773-415b-8994-8bf099c24cbc"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174929Z:1037798c-45df-4aae-98a8-2ea5f20cb009"
+ "CENTRALUS:20150611T001112Z:ab25ec10-6773-415b-8994-8bf099c24cbc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1882,17 +2827,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:49:29 GMT"
+ "Thu, 11 Jun 2015 00:11:12 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1918,16 +2863,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14996"
],
"x-ms-request-id": [
- "d225c9a0-7c28-4fc6-8eec-cbb4f7d1c62a"
+ "33897c94-54d8-4c38-b0dd-3910f59e21cf"
],
"x-ms-correlation-request-id": [
- "d225c9a0-7c28-4fc6-8eec-cbb4f7d1c62a"
+ "33897c94-54d8-4c38-b0dd-3910f59e21cf"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T174944Z:d225c9a0-7c28-4fc6-8eec-cbb4f7d1c62a"
+ "CENTRALUS:20150611T001127Z:33897c94-54d8-4c38-b0dd-3910f59e21cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1936,17 +2881,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:49:44 GMT"
+ "Thu, 11 Jun 2015 00:11:26 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1972,16 +2917,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14995"
],
"x-ms-request-id": [
- "50e1e11e-7194-4745-8f90-d423e686540b"
+ "57a11664-0ec4-4e66-afe0-6453d488ece0"
],
"x-ms-correlation-request-id": [
- "50e1e11e-7194-4745-8f90-d423e686540b"
+ "57a11664-0ec4-4e66-afe0-6453d488ece0"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T175000Z:50e1e11e-7194-4745-8f90-d423e686540b"
+ "CENTRALUS:20150611T001142Z:57a11664-0ec4-4e66-afe0-6453d488ece0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1990,17 +2935,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:50:00 GMT"
+ "Thu, 11 Jun 2015 00:11:41 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2026,16 +2971,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14994"
],
"x-ms-request-id": [
- "acd5a0b6-956d-427d-960c-20c67dec0b08"
+ "05087424-bec4-4579-b23f-c4ce82f40bd2"
],
"x-ms-correlation-request-id": [
- "acd5a0b6-956d-427d-960c-20c67dec0b08"
+ "05087424-bec4-4579-b23f-c4ce82f40bd2"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T175015Z:acd5a0b6-956d-427d-960c-20c67dec0b08"
+ "CENTRALUS:20150611T001157Z:05087424-bec4-4579-b23f-c4ce82f40bd2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2044,17 +2989,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:50:15 GMT"
+ "Thu, 11 Jun 2015 00:11:57 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2080,16 +3025,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14993"
],
"x-ms-request-id": [
- "10fb1f06-6067-4603-9473-a0666b91543f"
+ "5e7642af-2257-4cd1-a6a7-65ebcad48100"
],
"x-ms-correlation-request-id": [
- "10fb1f06-6067-4603-9473-a0666b91543f"
+ "5e7642af-2257-4cd1-a6a7-65ebcad48100"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T175030Z:10fb1f06-6067-4603-9473-a0666b91543f"
+ "CENTRALUS:20150611T001212Z:5e7642af-2257-4cd1-a6a7-65ebcad48100"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2098,17 +3043,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:50:30 GMT"
+ "Thu, 11 Jun 2015 00:12:12 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2134,16 +3079,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14992"
],
"x-ms-request-id": [
- "b0cb2033-d3d6-41d3-8887-085aa3c14c28"
+ "b3f262ad-fb01-4e5e-94e7-9577e81a02f5"
],
"x-ms-correlation-request-id": [
- "b0cb2033-d3d6-41d3-8887-085aa3c14c28"
+ "b3f262ad-fb01-4e5e-94e7-9577e81a02f5"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T175045Z:b0cb2033-d3d6-41d3-8887-085aa3c14c28"
+ "CENTRALUS:20150611T001227Z:b3f262ad-fb01-4e5e-94e7-9577e81a02f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2152,17 +3097,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:50:44 GMT"
+ "Thu, 11 Jun 2015 00:12:26 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2188,16 +3133,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14991"
],
"x-ms-request-id": [
- "7091b015-2b98-44c1-8b12-d87b1f196069"
+ "7763c456-2015-479d-95b2-09fd68afb207"
],
"x-ms-correlation-request-id": [
- "7091b015-2b98-44c1-8b12-d87b1f196069"
+ "7763c456-2015-479d-95b2-09fd68afb207"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T175100Z:7091b015-2b98-44c1-8b12-d87b1f196069"
+ "CENTRALUS:20150611T001242Z:7763c456-2015-479d-95b2-09fd68afb207"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2206,17 +3151,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:51:00 GMT"
+ "Thu, 11 Jun 2015 00:12:42 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNzExLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOekV4TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs2NDkzLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczJORGt6TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -2239,16 +3184,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14990"
],
"x-ms-request-id": [
- "e784c9c1-3f66-457c-a32b-4a9c874e636d"
+ "cab9c843-b7bd-4600-97be-a3bae0314363"
],
"x-ms-correlation-request-id": [
- "e784c9c1-3f66-457c-a32b-4a9c874e636d"
+ "cab9c843-b7bd-4600-97be-a3bae0314363"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T175115Z:e784c9c1-3f66-457c-a32b-4a9c874e636d"
+ "CENTRALUS:20150611T001258Z:cab9c843-b7bd-4600-97be-a3bae0314363"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2257,7 +3202,7 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 17:51:15 GMT"
+ "Thu, 11 Jun 2015 00:12:57 GMT"
]
},
"StatusCode": 200
@@ -2265,12 +3210,13 @@
],
"Names": {
"Test-UpdateDatabase": [
- "onesdk1711",
- "onesdk9366",
- "onesdk9424"
+ "onesdk6493",
+ "onesdk1225",
+ "onesdk8331",
+ "onesdk8205"
]
},
"Variables": {
- "SubscriptionId": "a4d55cc0-84ec-49a6-84fd-ac40300fe684"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json
index 90dbace2b30c..ad8bbda8a894 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.DatabaseCrudTests/TestDatabaseUpdateV2.json
@@ -1,8 +1,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1550?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk4944?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14980"
+ "14988"
],
"x-ms-request-id": [
- "3700b2e3-50c2-4c16-a39f-155a6010ccd9"
+ "163494a2-bdeb-4ebe-865b-0acbec85d788"
],
"x-ms-correlation-request-id": [
- "3700b2e3-50c2-4c16-a39f-155a6010ccd9"
+ "163494a2-bdeb-4ebe-865b-0acbec85d788"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182122Z:3700b2e3-50c2-4c16-a39f-155a6010ccd9"
+ "CENTRALUS:20150611T002027Z:163494a2-bdeb-4ebe-865b-0acbec85d788"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:22 GMT"
+ "Thu, 11 Jun 2015 00:20:26 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1550?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk4944?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14973"
+ "14986"
],
"x-ms-request-id": [
- "a4f5df38-e613-4834-9fb9-f018487ace85"
+ "226d880b-9ff6-4381-8518-2b49bdaaaf32"
],
"x-ms-correlation-request-id": [
- "a4f5df38-e613-4834-9fb9-f018487ace85"
+ "226d880b-9ff6-4381-8518-2b49bdaaaf32"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182145Z:a4f5df38-e613-4834-9fb9-f018487ace85"
+ "CENTRALUS:20150611T002113Z:226d880b-9ff6-4381-8518-2b49bdaaaf32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:45 GMT"
+ "Thu, 11 Jun 2015 00:21:13 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1550?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk4944?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}",
"RequestHeaders": {
@@ -112,7 +112,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550\",\r\n \"name\": \"onesdk1550\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944\",\r\n \"name\": \"onesdk4944\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"176"
@@ -127,16 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1197"
],
"x-ms-request-id": [
- "2977d929-5c41-42b2-9f4a-306b1d5922da"
+ "1d2ec912-8f78-4708-ba4c-810e3fea598d"
],
"x-ms-correlation-request-id": [
- "2977d929-5c41-42b2-9f4a-306b1d5922da"
+ "1d2ec912-8f78-4708-ba4c-810e3fea598d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182123Z:2977d929-5c41-42b2-9f4a-306b1d5922da"
+ "CENTRALUS:20150611T002028Z:1d2ec912-8f78-4708-ba4c-810e3fea598d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:22 GMT"
+ "Thu, 11 Jun 2015 00:20:27 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14979"
+ "14987"
],
"x-ms-request-id": [
- "c6a5ee65-160e-4dad-bdde-3d5eb5efaa3c"
+ "f4d084cd-c717-49ff-976d-182fb7752fa6"
],
"x-ms-correlation-request-id": [
- "c6a5ee65-160e-4dad-bdde-3d5eb5efaa3c"
+ "f4d084cd-c717-49ff-976d-182fb7752fa6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182123Z:c6a5ee65-160e-4dad-bdde-3d5eb5efaa3c"
+ "CENTRALUS:20150611T002028Z:f4d084cd-c717-49ff-976d-182fb7752fa6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,14 +193,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:22 GMT"
+ "Thu, 11 Jun 2015 00:20:27 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1550/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk4944/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -226,16 +226,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "centralus:2804e449-7305-4d75-98dc-0a759bc2b26d"
+ "centralus:5a5717a3-02f5-4e49-b328-325cad38da35"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14977"
+ "14996"
],
"x-ms-correlation-request-id": [
- "766fa062-2720-486f-b39f-a46514064f36"
+ "11f416ba-ee97-49d4-a192-d05f7d1a5739"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182123Z:766fa062-2720-486f-b39f-a46514064f36"
+ "CENTRALUS:20150611T002028Z:11f416ba-ee97-49d4-a192-d05f7d1a5739"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -244,14 +244,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:23 GMT"
+ "Thu, 11 Jun 2015 00:20:28 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,7 +259,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "254c3efd-27ff-4843-ba58-d02dcc34f1b4"
+ "166a86c2-9791-478c-8468-8ca006ae4871"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -280,13 +280,13 @@
"gateway"
],
"x-ms-request-id": [
- "37ca6548-9859-4945-9b49-949757ee7a72"
+ "0bd116a4-0728-463f-9568-5a9b0277857b"
],
"x-ms-correlation-request-id": [
- "37ca6548-9859-4945-9b49-949757ee7a72"
+ "0bd116a4-0728-463f-9568-5a9b0277857b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182124Z:37ca6548-9859-4945-9b49-949757ee7a72"
+ "CENTRALUS:20150611T002028Z:0bd116a4-0728-463f-9568-5a9b0277857b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -295,14 +295,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:23 GMT"
+ "Thu, 11 Jun 2015 00:20:28 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -310,10 +310,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "329fae0f-868a-44c7-8cae-cde29de9127e"
+ "59eadf38-a2f8-4721-96c8-887bff110b6e"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539\",\r\n \"name\": \"onesdk4539\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4539.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380\",\r\n \"name\": \"onesdk7380\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7380.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"
@@ -322,7 +322,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "0b59602c-9945-4c75-8a29-e6372119ff4a"
+ "dd6f7ca4-de29-4139-ae52-ca4617d61b60"
],
"X-Content-Type-Options": [
"nosniff"
@@ -331,13 +331,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14976"
+ "14987"
],
"x-ms-correlation-request-id": [
- "033059e5-4db9-4761-925f-8a01ffc4ad8f"
+ "e85b1be2-b411-4339-99e3-892cd9271771"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182129Z:033059e5-4db9-4761-925f-8a01ffc4ad8f"
+ "CENTRALUS:20150611T002034Z:e85b1be2-b411-4339-99e3-892cd9271771"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -346,7 +346,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:28 GMT"
+ "Thu, 11 Jun 2015 00:20:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -355,8 +355,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
"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": {
@@ -370,10 +370,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4ec54fe9-971d-4d6f-9b9d-d05aed7ba993"
+ "e54a6d98-29b9-4af9-b754-cfecde53ddad"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539\",\r\n \"name\": \"onesdk4539\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk4539.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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380\",\r\n \"name\": \"onesdk7380\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"North Central US\",\r\n \"kind\": \"v2.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"onesdk7380.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"
@@ -382,7 +382,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "278800a0-92aa-46a7-8eb0-666b34f926f8"
+ "fada84a3-2e1e-4ae3-a402-cff90d3f3e31"
],
"X-Content-Type-Options": [
"nosniff"
@@ -394,13 +394,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1197"
],
"x-ms-correlation-request-id": [
- "44a7b778-cea4-4e4e-9196-ee5ca5e820d8"
+ "4a684e8a-484f-436b-8689-aef06a3af9c7"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182129Z:44a7b778-cea4-4e4e-9196-ee5ca5e820d8"
+ "CENTRALUS:20150611T002034Z:4a684e8a-484f-436b-8689-aef06a3af9c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -409,7 +409,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:28 GMT"
+ "Thu, 11 Jun 2015 00:20:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -418,8 +418,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5L2RhdGFiYXNlcy9vbmVzZGs4NTQwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwL2RhdGFiYXNlcy9vbmVzZGs4ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -427,7 +427,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "5cfce087-ee6a-41eb-8518-a3cc1c40046d"
+ "915bf638-a689-49a3-a46e-8808a53a0087"
]
},
"ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\r\n}",
@@ -448,13 +448,13 @@
"gateway"
],
"x-ms-request-id": [
- "2fbc797b-c561-4c06-94b1-ea6f694eed12"
+ "68060b1a-17b0-4f46-af02-ae77697ec5e3"
],
"x-ms-correlation-request-id": [
- "2fbc797b-c561-4c06-94b1-ea6f694eed12"
+ "68060b1a-17b0-4f46-af02-ae77697ec5e3"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182129Z:2fbc797b-c561-4c06-94b1-ea6f694eed12"
+ "CENTRALUS:20150611T002034Z:68060b1a-17b0-4f46-af02-ae77697ec5e3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -463,14 +463,14 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:28 GMT"
+ "Thu, 11 Jun 2015 00:20:34 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5L2RhdGFiYXNlcy9vbmVzZGs4NTQwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwL2RhdGFiYXNlcy9vbmVzZGs4ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -478,19 +478,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "55a2b14f-a131-4154-8e3b-f6595a532bde"
+ "5332583e-24a4-4237-9ed9-3b06e3847b09"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540\",\r\n \"name\": \"onesdk8540\",\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\": \"7b63f366-e14f-4d4c-a5cf-5f681de491b7\",\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-05-27T18:21:33.307Z\",\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-05-27T18:22:33.307Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882\",\r\n \"name\": \"onesdk882\",\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\": \"2c72e858-00d1-4b82-b060-14e503c17ca2\",\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-06-11T00:20:43.463Z\",\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-06-11T00:21:43.463Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "779"
+ "777"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ce6e52db-9c1e-45ef-b013-092fea6a1fbb"
+ "4823933c-3538-490c-9f98-96f75cc20eb0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -499,13 +499,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14975"
+ "14986"
],
"x-ms-correlation-request-id": [
- "2ad019d1-d505-4764-adb2-c8404ca774d9"
+ "b5d49dca-b7d2-49b3-a346-d4a5b0f29821"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182135Z:2ad019d1-d505-4764-adb2-c8404ca774d9"
+ "CENTRALUS:20150611T002046Z:b5d49dca-b7d2-49b3-a346-d4a5b0f29821"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -514,7 +514,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:35 GMT"
+ "Thu, 11 Jun 2015 00:20:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -523,8 +523,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5L2RhdGFiYXNlcy9vbmVzZGs4NTQwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwL2RhdGFiYXNlcy9vbmVzZGs4ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -532,10 +532,10 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "6d117310-03e8-47bf-87bc-892db8d37a91"
+ "a0d49375-49ec-4dbd-8d0d-686736c00e49"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540\",\r\n \"name\": \"onesdk8540\",\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\": \"7b63f366-e14f-4d4c-a5cf-5f681de491b7\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T18:21:33.307Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-27T18:22:33.307Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882\",\r\n \"name\": \"onesdk882\",\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\": \"2c72e858-00d1-4b82-b060-14e503c17ca2\",\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-06-11T00:20:43.463Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:21:43.463Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"777"
@@ -544,7 +544,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ac140d65-83e3-437b-a10e-924868b382a7"
+ "1d57209d-a8e7-4592-b76f-429eaa893610"
],
"X-Content-Type-Options": [
"nosniff"
@@ -553,13 +553,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14974"
+ "14985"
],
"x-ms-correlation-request-id": [
- "cedc343a-839a-4301-a2b1-3c0afc3e7f1b"
+ "475a13cf-0bc6-426e-988e-5f3ade823384"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182140Z:cedc343a-839a-4301-a2b1-3c0afc3e7f1b"
+ "CENTRALUS:20150611T002105Z:475a13cf-0bc6-426e-988e-5f3ade823384"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -568,7 +568,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:40 GMT"
+ "Thu, 11 Jun 2015 00:21:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -577,8 +577,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5L2RhdGFiYXNlcy9vbmVzZGs4NTQwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwL2RhdGFiYXNlcy9vbmVzZGs4ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"requestedServiceObjectiveName\": \"S0\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -592,19 +592,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "2eab588b-2f9f-40ad-9947-c28f9145d201"
+ "651a5345-b9c5-4f3d-91b2-62fca9883c71"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540\",\r\n \"name\": \"onesdk8540\",\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\": \"7b63f366-e14f-4d4c-a5cf-5f681de491b7\",\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-05-27T18:21:33.307Z\",\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-05-27T18:22:33.307Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882\",\r\n \"name\": \"onesdk882\",\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\": \"2c72e858-00d1-4b82-b060-14e503c17ca2\",\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-06-11T00:20:43.463Z\",\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-06-11T00:21:43.463Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "779"
+ "777"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "e0d0b389-fc04-4c14-b3de-ca35096ad41a"
+ "fe66dbf3-3e26-410a-8aa0-b011e1e43740"
],
"X-Content-Type-Options": [
"nosniff"
@@ -616,13 +616,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1196"
],
"x-ms-correlation-request-id": [
- "144d1762-50af-40c0-b669-2ed2f3a4b3a8"
+ "e16c0bf9-cd20-4eae-99bc-b52e9b56907b"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182135Z:144d1762-50af-40c0-b669-2ed2f3a4b3a8"
+ "CENTRALUS:20150611T002046Z:e16c0bf9-cd20-4eae-99bc-b52e9b56907b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -631,7 +631,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:34 GMT"
+ "Thu, 11 Jun 2015 00:20:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -640,8 +640,8 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5L2RhdGFiYXNlcy9vbmVzZGs4NTQwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwL2RhdGFiYXNlcy9vbmVzZGs4ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Basic\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"requestedServiceObjectiveName\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -655,19 +655,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "ff368da9-68a5-4235-b045-20e4d01d462d"
+ "e80deb21-bf07-480f-ac2b-8bbe75ed2289"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540\",\r\n \"name\": \"onesdk8540\",\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\": \"7b63f366-e14f-4d4c-a5cf-5f681de491b7\",\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-05-27T18:21:33.307Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-27T18:22:33.307Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882\",\r\n \"name\": \"onesdk882\",\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\": \"2c72e858-00d1-4b82-b060-14e503c17ca2\",\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-06-11T00:20:43.463Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:21:43.463Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "779"
+ "777"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "846ce8d3-cb2c-4635-9ad6-4336d3d6ae21"
+ "348b35d4-2195-488b-a3df-0db43c780748"
],
"X-Content-Type-Options": [
"nosniff"
@@ -679,13 +679,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1189"
+ "1195"
],
"x-ms-correlation-request-id": [
- "d6f90bb9-d9ab-4ef2-bdb0-f3cebc36f9d1"
+ "0920dd74-3024-428d-8b11-9da0ef682c7c"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182139Z:d6f90bb9-d9ab-4ef2-bdb0-f3cebc36f9d1"
+ "CENTRALUS:20150611T002105Z:0920dd74-3024-428d-8b11-9da0ef682c7c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -694,7 +694,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:39 GMT"
+ "Thu, 11 Jun 2015 00:21:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -703,8 +703,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlR3JvdXBzL29uZXNkazE1NTAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs0NTM5L2RhdGFiYXNlcy9vbmVzZGs4NTQwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlR3JvdXBzL29uZXNkazQ5NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9vbmVzZGs3MzgwL2RhdGFiYXNlcy9vbmVzZGs4ODI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"edition\": \"Standard\",\r\n \"maxSizeBytes\": \"107374182400\",\r\n \"requestedServiceObjectiveName\": \"S1\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {}\r\n}",
"RequestHeaders": {
@@ -718,19 +718,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "ec86209d-4c7b-4963-bbfa-0190127c0a5e"
+ "c0f12e0c-8270-4e98-8071-327ff555bf66"
]
},
- "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourceGroups/onesdk1550/providers/Microsoft.Sql/servers/onesdk4539/databases/onesdk8540\",\r\n \"name\": \"onesdk8540\",\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\": \"7b63f366-e14f-4d4c-a5cf-5f681de491b7\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-05-27T18:21:33.307Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-05-27T18:22:33.307Z\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourceGroups/onesdk4944/providers/Microsoft.Sql/servers/onesdk7380/databases/onesdk882\",\r\n \"name\": \"onesdk882\",\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\": \"2c72e858-00d1-4b82-b060-14e503c17ca2\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-06-11T00:20:43.463Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"West US\",\r\n \"earliestRestoreDate\": \"2015-06-11T00:21:43.463Z\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "777"
+ "775"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "cbe74940-0e34-4ed2-ad9c-ee9dc0a319c1"
+ "54cb8e35-151d-48af-9346-fde472f8b522"
],
"X-Content-Type-Options": [
"nosniff"
@@ -742,13 +742,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1188"
+ "1194"
],
"x-ms-correlation-request-id": [
- "264e7188-b581-4ab3-ad0e-08f7e26442ca"
+ "02b728cf-a8e0-4632-9117-a0143b2b1a4e"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182145Z:264e7188-b581-4ab3-ad0e-08f7e26442ca"
+ "CENTRALUS:20150611T002113Z:02b728cf-a8e0-4632-9117-a0143b2b1a4e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -757,7 +757,7 @@
"no-store, no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:45 GMT"
+ "Thu, 11 Jun 2015 00:21:13 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -766,8 +766,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/resourcegroups/onesdk1550?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L3Jlc291cmNlZ3JvdXBzL29uZXNkazE1NTA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/resourcegroups/onesdk4944?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL3Jlc291cmNlZ3JvdXBzL29uZXNkazQ5NDQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -790,16 +790,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1187"
+ "1196"
],
"x-ms-request-id": [
- "b218b807-1945-41b8-8f53-213a2aa6dd9a"
+ "f596d42c-1e3f-441b-acdd-30ef031bd665"
],
"x-ms-correlation-request-id": [
- "b218b807-1945-41b8-8f53-213a2aa6dd9a"
+ "f596d42c-1e3f-441b-acdd-30ef031bd665"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182145Z:b218b807-1945-41b8-8f53-213a2aa6dd9a"
+ "CENTRALUS:20150611T002113Z:f596d42c-1e3f-441b-acdd-30ef031bd665"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -808,17 +808,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:45 GMT"
+ "Thu, 11 Jun 2015 00:21:13 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -844,16 +844,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14972"
+ "14985"
],
"x-ms-request-id": [
- "8a13144b-b2ed-40c5-af29-e4560f009ba6"
+ "29e7329b-9b30-4311-876b-78ab74df2ae4"
],
"x-ms-correlation-request-id": [
- "8a13144b-b2ed-40c5-af29-e4560f009ba6"
+ "29e7329b-9b30-4311-876b-78ab74df2ae4"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182145Z:8a13144b-b2ed-40c5-af29-e4560f009ba6"
+ "CENTRALUS:20150611T002113Z:29e7329b-9b30-4311-876b-78ab74df2ae4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -862,17 +862,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:21:45 GMT"
+ "Thu, 11 Jun 2015 00:21:13 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -898,16 +898,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14971"
+ "14984"
],
"x-ms-request-id": [
- "6a33f3cc-77bd-45b1-a8de-f226867bba11"
+ "8df2fb05-fadb-4747-bce7-c4d6ed21e85a"
],
"x-ms-correlation-request-id": [
- "6a33f3cc-77bd-45b1-a8de-f226867bba11"
+ "8df2fb05-fadb-4747-bce7-c4d6ed21e85a"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182200Z:6a33f3cc-77bd-45b1-a8de-f226867bba11"
+ "CENTRALUS:20150611T002128Z:8df2fb05-fadb-4747-bce7-c4d6ed21e85a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -916,17 +916,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:22:00 GMT"
+ "Thu, 11 Jun 2015 00:21:28 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -952,16 +952,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14970"
+ "14983"
],
"x-ms-request-id": [
- "2f4853a1-5da6-4483-a904-85c1286ad20e"
+ "8583ecb7-4ec0-4d4a-94be-0e37d24539b8"
],
"x-ms-correlation-request-id": [
- "2f4853a1-5da6-4483-a904-85c1286ad20e"
+ "8583ecb7-4ec0-4d4a-94be-0e37d24539b8"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182215Z:2f4853a1-5da6-4483-a904-85c1286ad20e"
+ "CENTRALUS:20150611T002144Z:8583ecb7-4ec0-4d4a-94be-0e37d24539b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -970,17 +970,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:22:15 GMT"
+ "Thu, 11 Jun 2015 00:21:43 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1006,16 +1006,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14969"
+ "14982"
],
"x-ms-request-id": [
- "d88b7700-a57e-41b7-aa70-15e378989f41"
+ "c6c3c9d8-4e80-4af5-a1c6-ab596bf70c3d"
],
"x-ms-correlation-request-id": [
- "d88b7700-a57e-41b7-aa70-15e378989f41"
+ "c6c3c9d8-4e80-4af5-a1c6-ab596bf70c3d"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182230Z:d88b7700-a57e-41b7-aa70-15e378989f41"
+ "CENTRALUS:20150611T002159Z:c6c3c9d8-4e80-4af5-a1c6-ab596bf70c3d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1024,17 +1024,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:22:30 GMT"
+ "Thu, 11 Jun 2015 00:21:59 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1060,16 +1060,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14968"
+ "14981"
],
"x-ms-request-id": [
- "0ebf74d5-f2d2-458d-b341-2b230b29f585"
+ "60a74868-4615-441f-82b7-83b4c3bf7eb0"
],
"x-ms-correlation-request-id": [
- "0ebf74d5-f2d2-458d-b341-2b230b29f585"
+ "60a74868-4615-441f-82b7-83b4c3bf7eb0"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182246Z:0ebf74d5-f2d2-458d-b341-2b230b29f585"
+ "CENTRALUS:20150611T002214Z:60a74868-4615-441f-82b7-83b4c3bf7eb0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1078,17 +1078,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:22:45 GMT"
+ "Thu, 11 Jun 2015 00:22:14 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1114,16 +1114,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14967"
+ "14980"
],
"x-ms-request-id": [
- "da3fca3d-82b0-4458-9a77-8738b766e7b9"
+ "7ef813e1-e0c5-4e66-9c7b-af70c22812ac"
],
"x-ms-correlation-request-id": [
- "da3fca3d-82b0-4458-9a77-8738b766e7b9"
+ "7ef813e1-e0c5-4e66-9c7b-af70c22812ac"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182301Z:da3fca3d-82b0-4458-9a77-8738b766e7b9"
+ "CENTRALUS:20150611T002229Z:7ef813e1-e0c5-4e66-9c7b-af70c22812ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1132,17 +1132,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:23:01 GMT"
+ "Thu, 11 Jun 2015 00:22:28 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1168,16 +1168,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14966"
+ "14979"
],
"x-ms-request-id": [
- "62d95412-7be6-40af-a1d9-3d38b16160f4"
+ "6f510b6a-ace5-4252-866c-76fadbe34ed1"
],
"x-ms-correlation-request-id": [
- "62d95412-7be6-40af-a1d9-3d38b16160f4"
+ "6f510b6a-ace5-4252-866c-76fadbe34ed1"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182316Z:62d95412-7be6-40af-a1d9-3d38b16160f4"
+ "CENTRALUS:20150611T002244Z:6f510b6a-ace5-4252-866c-76fadbe34ed1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1186,17 +1186,17 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:23:15 GMT"
+ "Thu, 11 Jun 2015 00:22:44 GMT"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
+ "https://api-dogfood.resources.windows-int.net/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/a4d55cc0-84ec-49a6-84fd-ac40300fe684/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREsxNTUwLUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTRkNTVjYzAtODRlYy00OWE2LTg0ZmQtYWM0MDMwMGZlNjg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFc3hOVFV3TFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/1dc9187a-986d-4888-8dcf-af0bd43df99e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1PTkVTREs0OTQ0LUpBUEFORUFTVCIsImpvYkxvY2F0aW9uIjoiamFwYW5lYXN0In0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWRjOTE4N2EtOTg2ZC00ODg4LThkY2YtYWYwYmQ0M2RmOTllL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFQVGtWVFJFczBPVFEwTFVwQlVFRk9SVUZUVkNJc0ltcHZZa3h2WTJGMGFXOXVJam9pYW1Gd1lXNWxZWE4wSW4wP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1219,16 +1219,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14965"
+ "14978"
],
"x-ms-request-id": [
- "bb0c7af7-076e-4f2d-869a-ec60082a13e9"
+ "e84d7787-4f7b-4dbe-8e5f-832de2e776f6"
],
"x-ms-correlation-request-id": [
- "bb0c7af7-076e-4f2d-869a-ec60082a13e9"
+ "e84d7787-4f7b-4dbe-8e5f-832de2e776f6"
],
"x-ms-routing-request-id": [
- "CENTRALUS:20150527T182331Z:bb0c7af7-076e-4f2d-869a-ec60082a13e9"
+ "CENTRALUS:20150611T002259Z:e84d7787-4f7b-4dbe-8e5f-832de2e776f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1237,7 +1237,7 @@
"no-cache"
],
"Date": [
- "Wed, 27 May 2015 18:23:30 GMT"
+ "Thu, 11 Jun 2015 00:22:58 GMT"
]
},
"StatusCode": 200
@@ -1245,12 +1245,12 @@
],
"Names": {
"Test-UpdateDatabaseV2": [
- "onesdk1550",
- "onesdk4539",
- "onesdk8540"
+ "onesdk4944",
+ "onesdk7380",
+ "onesdk882"
]
},
"Variables": {
- "SubscriptionId": "a4d55cc0-84ec-49a6-84fd-ac40300fe684"
+ "SubscriptionId": "1dc9187a-986d-4888-8dcf-af0bd43df99e"
}
}
\ No newline at end of file
diff --git a/src/ResourceManager/Sql/Commands.Sql/Database/Model/DatabaseEdition.cs b/src/ResourceManager/Sql/Commands.Sql/Database/Model/DatabaseEdition.cs
index f4424d81757a..d8df18b1ba26 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Database/Model/DatabaseEdition.cs
+++ b/src/ResourceManager/Sql/Commands.Sql/Database/Model/DatabaseEdition.cs
@@ -37,7 +37,12 @@ public enum DatabaseEdition
///
/// A database standard edition
///
- Standard = 5
+ Standard = 5,
+
+ ///
+ /// Azure SQL Data Warehouse database edition
+ ///
+ DataWarehouse = 6
}
}
diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/RemoveAzureVMDiagnosticsExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/RemoveAzureVMDiagnosticsExtension.cs
index d56a065df9f9..a0a95598d944 100644
--- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/RemoveAzureVMDiagnosticsExtension.cs
+++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/RemoveAzureVMDiagnosticsExtension.cs
@@ -30,11 +30,11 @@ public class RemoveAzureVMDiagnosticsExtensionCommand : VirtualMachineDiagnostic
internal void ExecuteCommand()
{
- // We do not support this cmdlet for now...
- throw new NotSupportedException();
+ ExtensionName = DiagnosticsExtensionType;
+ Publisher = DiagnosticsExtensionNamespace;
- // RemovePredicateExtensions();
- // WriteObject(VM);
+ RemovePredicateExtensions();
+ WriteObject(VM);
}
protected override void ProcessRecord()
diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/SetAzureVMDiagnosticsExtension.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/SetAzureVMDiagnosticsExtension.cs
index 7d2a7fc1d621..1d4ffeaa82e0 100644
--- a/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/SetAzureVMDiagnosticsExtension.cs
+++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/Extensions/Diagnostics/SetAzureVMDiagnosticsExtension.cs
@@ -14,6 +14,7 @@
using System;
using System.IO;
+using System.Linq;
using System.Management.Automation;
using System.Text;
using System.Xml;
@@ -121,6 +122,17 @@ protected override void ValidateParameters()
ValidateConfiguration();
ExtensionName = DiagnosticsExtensionType;
Publisher = DiagnosticsExtensionNamespace;
+
+ // If the user didn't specify an extension reference name and the input VM already has a diagnostics extension,
+ // reuse its reference name
+ if (string.IsNullOrEmpty(ReferenceName))
+ {
+ ResourceExtensionReference diagnosticsExtension = ResourceExtensionReferences.FirstOrDefault(ExtensionPredicate);
+ if (diagnosticsExtension != null)
+ {
+ ReferenceName = diagnosticsExtension.ReferenceName;
+ }
+ }
}
private void ValidateStorageAccount()
diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj
index c8c91b31aa09..e5e920f646fb 100644
--- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj
+++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/Commands.HDInsight.Test.csproj
@@ -73,10 +73,10 @@
..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.Hadoop.Client.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.Hadoop.Client.dll
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll
False
@@ -104,16 +104,16 @@
..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll
- ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll
+ ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll
- ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll
+ ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll
..\..\..\packages\WindowsAzure.Storage.3.0.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll
diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config
index b42ce3a67da7..bc8150cc8392 100644
--- a/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config
+++ b/src/ServiceManagement/HDInsight/Commands.HDInsight.Test/packages.config
@@ -12,12 +12,12 @@
-
+
-
+
diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj b/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj
index 7c414a6d91aa..227e698f27f7 100644
--- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj
+++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Commands.HDInsight.csproj
@@ -80,13 +80,13 @@
..\..\..\packages\Microsoft.Data.Services.Client.5.6.0\lib\net40\Microsoft.Data.Services.Client.dll
-
+
False
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.Hadoop.Client.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.Hadoop.Client.dll
-
+
False
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.HDInsight.Net.Http.Formatting.dll
False
@@ -113,21 +113,21 @@
False
..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll
-
+
False
- ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll
+ ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.dll
-
+
False
- ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll
+ ..\..\..\packages\Microsoft.WindowsAzure.Management.HDInsight.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Contracts.dll
-
+
False
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.dll
-
+
False
- ..\..\..\packages\Microsoft.Hadoop.Client.1.5.8\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll
+ ..\..\..\packages\Microsoft.Hadoop.Client.1.5.9\lib\net45\Microsoft.WindowsAzure.Management.HDInsight.Framework.Core.dll
..\..\..\packages\WindowsAzure.Storage.3.0.3.0\lib\net40\Microsoft.WindowsAzure.Storage.dll
diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config
index a5b418bbc364..ba8799f5230a 100644
--- a/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config
+++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/packages.config
@@ -12,12 +12,12 @@
-
+
-
+
diff --git a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs
index d0372c3482ff..6cb7fa0a7100 100644
--- a/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs
+++ b/src/ServiceManagement/Storage/Commands.Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs
@@ -287,6 +287,7 @@ protected override void EndProcessing()
new Dictionary>(StringComparer.OrdinalIgnoreCase)
{
{"CacheControl", (p, v) => p.CacheControl = v},
+ {"ContentDisposition", (p, v) => p.ContentDisposition = v},
{"ContentEncoding", (p, v) => p.ContentEncoding = v},
{"ContentLanguage", (p, v) => p.ContentLanguage = v},
{"ContentMD5", (p, v) => p.ContentMD5 = v},